diff options
author | 2007-03-31 18:43:43 +0000 | |
---|---|---|
committer | 2007-03-31 18:43:43 +0000 | |
commit | 1171831dea31335898e943f6807461d2bb175143 (patch) | |
tree | d5e4e29d0e51281070dbd4fc50a42496ed9c51a9 /dev-libs/openct/openct-0.6.11-r1.ebuild | |
parent | Bumping to version 1.4.3 (diff) | |
download | historical-1171831dea31335898e943f6807461d2bb175143.tar.gz historical-1171831dea31335898e943f6807461d2bb175143.tar.bz2 historical-1171831dea31335898e943f6807461d2bb175143.zip |
added fix from bug #168446
Package-Manager: portage-2.1.2.2
Diffstat (limited to 'dev-libs/openct/openct-0.6.11-r1.ebuild')
-rw-r--r-- | dev-libs/openct/openct-0.6.11-r1.ebuild | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/dev-libs/openct/openct-0.6.11-r1.ebuild b/dev-libs/openct/openct-0.6.11-r1.ebuild index 340915506ef0..12c4fcd51694 100644 --- a/dev-libs/openct/openct-0.6.11-r1.ebuild +++ b/dev-libs/openct/openct-0.6.11-r1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/openct/openct-0.6.11-r1.ebuild,v 1.4 2007/03/03 23:10:40 genone Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/openct/openct-0.6.11-r1.ebuild,v 1.5 2007/03/31 18:43:43 kaiowas Exp $ -inherit eutils multilib +inherit flag-o-matic eutils multilib DESCRIPTION="library for accessing smart card terminals" HOMEPAGE="http://www.opensc-project.org/openct/" @@ -20,7 +20,18 @@ pkg_setup() { enewgroup openct } +src_unpack() { + unpack "${A}" + cd "${S}" + epatch "${FILESDIR}/${PN}-0.6.11-ifdhandlerv2.patch" + rm "src/pcsc/ifdhandler.h" +} + src_compile() { + # eautoreconf did not went so great... + # adding additions here. + append-flags "-DIFDHANDLERv2" + econf --localstatedir=/var || die emake || die } |