blob: d24e2afccacfb25d5b404ce53761f8c4e2b4658f (
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.2 2005/02/27 20:21:32 danarmak Exp $
KMNAME=kdeutils
MAXKDEVER=3.4.0_rc1
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
}
|