blob: 08bd112fabf77930df4f9118fbfe12978736e2d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kcardtools/kcardtools-3.4.0_beta2.ebuild,v 1.1 2005/02/05 11:39:13 danarmak Exp $
KMNAME=kdeutils
MAXKDEVER=$PV
KM_DEPRANGE="$PV $MAXKDEVER"
inherit kde-meta eutils
DESCRIPTION="KDE smartcard tools"
KEYWORDS="~x86"
IUSE=""
pkg_setup() {
# ugly search if libksmartcard from kdelibs is compiled. The same is done by configure
if [ ! -f $PREFIX/include/kcarddb.h ]; then
eerror "Can't find $PREFIX/include/kcarddb.h"
eerror "You need to recompile kdelibs with the libksmartcard support!"
die
fi
}
|