commit: 49a33aa6e0c028f81258281a4ca19961189828ab
Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 23 07:00:35 2016 +0000
Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
CommitDate: Fri Sep 23 07:01:21 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49a33aa6
dev-perl/pcsc-perl: remove get_libdir from global scope
Bug: 593368
Package-Manager: portage-2.2.28
dev-perl/pcsc-perl/pcsc-perl-1.4.14.ebuild | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/dev-perl/pcsc-perl/pcsc-perl-1.4.14.ebuild
b/dev-perl/pcsc-perl/pcsc-perl-1.4.14.ebuild
index de6fb4d..2bb345e 100644
--- a/dev-perl/pcsc-perl/pcsc-perl-1.4.14.ebuild
+++ b/dev-perl/pcsc-perl/pcsc-perl-1.4.14.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -17,4 +17,6 @@ IUSE=""
DEPEND=">=sys-apps/pcsc-lite-1.6.0"
-myconf="-I/usr/include/ -l/usr/$(get_libdir)"
+pkg_setup() {
+ myconf="-I/usr/include/ -l/usr/$(get_libdir)"
+}