blob: 72774146e0333acaec88f41bf24003830ec96e4a (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/pwmanager/pwmanager-1.2.4.ebuild,v 1.2 2005/11/10 15:28:26 greg_g Exp $
inherit kde
DESCRIPTION="Password manager for KDE supporting chipcard access and encryption."
HOMEPAGE="http://passwordmanager.sourceforge.net"
SRC_URI="mirror://sourceforge/passwordmanager/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="smartcard"
DEPEND="smartcard? ( sys-libs/libchipcard )
sys-libs/zlib
app-arch/bzip2"
need-kde 3.3
LANGS_PKG=${PN}-i18n-${PV}
LANGS="ca da de el es et fr hu it lt nl pl ro sv"
for X in ${LANGS}; do
SRC_URI="${SRC_URI} linguas_${X}? ( mirror://sourceforge/passwordmanager/${LANGS_PKG}.tar.bz2 )"
done
src_compile() {
local myconf="--enable-kwallet"
if use smartcard; then
myconf="${myconf} --enable-pwmanager-smartcard"
if has_version "=sys-libs/libchipcard-0.9*"; then
myconf="${myconf} --enable-pwmanager-libchipcard1"
else
myconf="${myconf} --disable-pwmanager-libchipcard1"
fi
if has_version ">=sys-libs/libchipcard-1.9"; then
myconf="${myconf} --enable-pwmanager-libchipcard2"
else
myconf="${myconf} --disable-pwmanager-libchipcard2"
fi
else
myconf="${myconf} --disable-pwmanager-smartcard"
fi
kde_src_compile
local _S="${S}"
if [ -d "${WORKDIR}/${LANGS_PKG}" ]; then
S="${WORKDIR}/${LANGS_PKG}"
cd "${S}"
for X in ${LANGS}; do
use linguas_${X} || DO_NOT_COMPILE="${DO_NOT_COMPILE} ${X}"
done
export DO_NOT_COMPILE
kde_src_compile
fi
S="${_S}"
}
src_install() {
kde_src_install
local _S="${S}"
if [ -d "${WORKDIR}/${LANGS_PKG}" ]; then
S="${WORKDIR}/${LANGS_PKG}"
cd "${S}"
kde_src_install
fi
S="${_S}"
}
|