blob: 0ced0a097b8155623ba76fb99c416c02b28e17ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="A Password Safe compatible command-line password manager"
HOMEPAGE="http://nsd.dyndns.org/pwsafe/"
SRC_URI="http://nsd.dyndns.org/pwsafe/releases/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~x86"
IUSE="X libressl readline"
DEPEND="sys-libs/ncurses:0=
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )
readline? ( sys-libs/readline:0= )
X? ( x11-libs/libSM
x11-libs/libICE
x11-libs/libXmu
x11-libs/libX11 )"
RDEPEND="${DEPEND}"
src_prepare() {
eapply -p0 "${FILESDIR}/${P}-cvs-1.57.patch"
eapply -p0 "${FILESDIR}/${P}-printf.patch"
eapply -p0 "${FILESDIR}/${P}-fake-readline.patch"
eapply -p0 "${FILESDIR}/${P}-man-page-option-syntax.patch"
eapply -p0 "${FILESDIR}/${P}-XChangeProperty.patch"
eapply_user
}
src_configure() {
econf $(use_with X x) $(use_with readline)
}
src_install() {
doman pwsafe.1
dobin pwsafe
dodoc README NEWS
}
|