blob: 1eaaa3f5a9ff9a8399de9977ff248f85b983adf8 (
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
|
# 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.3.ebuild,v 1.4 2005/08/20 17:11:38 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
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
}
|