diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2016-09-23 10:00:35 +0300 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2016-09-23 10:01:21 +0300 |
commit | 49a33aa6e0c028f81258281a4ca19961189828ab (patch) | |
tree | 78010b01643291fc666c9b2e79cc94596447bb65 /dev-perl/pcsc-perl | |
parent | app-misc/gramps: add proxied maintainer (diff) | |
download | gentoo-49a33aa6e0c028f81258281a4ca19961189828ab.tar.gz gentoo-49a33aa6e0c028f81258281a4ca19961189828ab.tar.bz2 gentoo-49a33aa6e0c028f81258281a4ca19961189828ab.zip |
dev-perl/pcsc-perl: remove get_libdir from global scope
Bug: 593368
Package-Manager: portage-2.2.28
Diffstat (limited to 'dev-perl/pcsc-perl')
-rw-r--r-- | dev-perl/pcsc-perl/pcsc-perl-1.4.14.ebuild | 6 |
1 files 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 de6fb4d309fc..2bb345eeb641 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)" +} |