blob: c217c0baeb7b4e6c15fbde77726ef75e1fa249cb (
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
|
# Copyright 1999-2007 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-r1.ebuild,v 1.4 2007/05/05 16:10:58 carlo 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-2* )
sys-libs/zlib
app-arch/bzip2"
need-kde 3.5
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 )"
IUSE="${IUSE} linguas_${X}"
done
src_compile() {
local myconf="--enable-kwallet"
if use smartcard; then
myconf="${myconf} --enable-pwmanager-smartcard \
--disable-pwmanager-libchipcard1 \
--enable-pwmanager-libchipcard2"
else
myconf="${myconf} --disable-pwmanager-smartcard"
fi
kde_src_compile
if [ -d "${WORKDIR}/${LANGS_PKG}" ]; then
KDE_S="${WORKDIR}/${LANGS_PKG}"
for X in ${LANGS}; do
use linguas_${X} || DO_NOT_COMPILE="${DO_NOT_COMPILE} ${X}"
done
export DO_NOT_COMPILE
kde_src_compile
fi
}
src_install() {
KDE_S=""
kde_src_install
if [ -d "${WORKDIR}/${LANGS_PKG}" ]; then
KDE_S="${WORKDIR}/${LANGS_PKG}"
kde_src_install
fi
}
|