From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2EBD8138330 for ; Fri, 23 Sep 2016 07:01:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5B60AE0983; Fri, 23 Sep 2016 07:01:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DA9F4E0983 for ; Fri, 23 Sep 2016 07:01:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 884DE3407D0 for ; Fri, 23 Sep 2016 07:01:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8020F247E for ; Fri, 23 Sep 2016 07:01:29 +0000 (UTC) From: "Alon Bar-Lev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alon Bar-Lev" Message-ID: <1474614081.49a33aa6e0c028f81258281a4ca19961189828ab.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/pcsc-perl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/pcsc-perl/pcsc-perl-1.4.14.ebuild X-VCS-Directories: dev-perl/pcsc-perl/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: 49a33aa6e0c028f81258281a4ca19961189828ab X-VCS-Branch: master Date: Fri, 23 Sep 2016 07:01:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 8f2615c3-ae51-4a06-b5d2-01d648ac0ff7 X-Archives-Hash: 5065fb5375758f64e7cb040d1f2615a7 commit: 49a33aa6e0c028f81258281a4ca19961189828ab Author: Alon Bar-Lev gentoo org> AuthorDate: Fri Sep 23 07:00:35 2016 +0000 Commit: Alon Bar-Lev gentoo 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)" +}