diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-02-22 07:17:12 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-02-22 07:17:12 +0000 |
commit | b4986c1678479a3db19c1a89905643cb42c4335e (patch) | |
tree | 4ebf010100bd71149333aa73a3e739e77d9dc723 /dev-libs/opensc | |
parent | header fix; inherit eutils for epatch; arm needs deps first (Manifest recommit) (diff) | |
download | gentoo-2-b4986c1678479a3db19c1a89905643cb42c4335e.tar.gz gentoo-2-b4986c1678479a3db19c1a89905643cb42c4335e.tar.bz2 gentoo-2-b4986c1678479a3db19c1a89905643cb42c4335e.zip |
initial ebuild #28202
Diffstat (limited to 'dev-libs/opensc')
-rw-r--r-- | dev-libs/opensc/ChangeLog | 8 | ||||
-rw-r--r-- | dev-libs/opensc/files/digest-opensc-0.8.1 | 1 | ||||
-rw-r--r-- | dev-libs/opensc/opensc-0.8.1.ebuild | 41 |
3 files changed, 50 insertions, 0 deletions
diff --git a/dev-libs/opensc/ChangeLog b/dev-libs/opensc/ChangeLog new file mode 100644 index 000000000000..865ae3920859 --- /dev/null +++ b/dev-libs/opensc/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for dev-libs/opensc +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/opensc/ChangeLog,v 1.1 2004/02/22 07:17:12 vapier Exp $ + +*opensc-0.8.1 (22 Feb 2004) + + 22 Feb 2004; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by Lars T. Mikkelsen/Peter Stuge #28202. diff --git a/dev-libs/opensc/files/digest-opensc-0.8.1 b/dev-libs/opensc/files/digest-opensc-0.8.1 new file mode 100644 index 000000000000..4a8463064b25 --- /dev/null +++ b/dev-libs/opensc/files/digest-opensc-0.8.1 @@ -0,0 +1 @@ +MD5 2b64a8e629bd28a00e707e35fd3eb9c7 opensc-0.8.1.tar.gz 894529 diff --git a/dev-libs/opensc/opensc-0.8.1.ebuild b/dev-libs/opensc/opensc-0.8.1.ebuild new file mode 100644 index 000000000000..864d16bfd1bd --- /dev/null +++ b/dev-libs/opensc/opensc-0.8.1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/opensc/opensc-0.8.1.ebuild,v 1.1 2004/02/22 07:17:12 vapier Exp $ + +DESCRIPTION="SmartCard library and applications" +HOMEPAGE="http://www.opensc.org/" +SRC_URI="http://www.opensc.org/files/${P}.tar.gz" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="x86" +IUSE="ldap pam" + +RDEPEND="ldap? ( net-nds/openldap ) + pam? ( >=sys-libs/pam-0.77 + >=sys-apps/shadow-4.0.3 ) + >=sys-apps/openct-0.5.0" + +src_compile() { + econf \ + --disable-usbtoken \ + --with-openct=/usr \ + --without-pcsclite \ + --without-plugin-dir \ + `use_enable ldap` \ + `use_with pam` \ + ${myconf} || die + emake -j1 || die +} + +src_install() { + make install DESTDIR=${D} || die + + if use pam ; then + dodir /lib/security/ + dosym ../../usr/lib/security/pam_opensc.so /lib/security/ + fi + + dodoc ANNOUNCE AUTHORS ChangeLog NEWS README + dohtml docs/opensc.html docs/opensc.css +} |