From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6B07813827E for ; Sun, 8 Dec 2013 17:39:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AB59CE09BE; Sun, 8 Dec 2013 17:39:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EA51FE0783 for ; Sun, 8 Dec 2013 17:39:25 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 23CCF33F4DA for ; Sun, 8 Dec 2013 17:39:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id CFF2DE55FA for ; Sun, 8 Dec 2013 17:39:22 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1386524208.e153914b3212d9bcf02500bbbab0746cbc4834d1.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/xraylib/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/xraylib/xraylib-2.16.0.ebuild X-VCS-Directories: sci-libs/xraylib/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: e153914b3212d9bcf02500bbbab0746cbc4834d1 X-VCS-Branch: master Date: Sun, 8 Dec 2013 17:39:22 +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: 7ab61038-9389-44aa-bab8-ff4594829309 X-Archives-Hash: 7905dfb286152a0e82f60edfb2e8bb5d commit: e153914b3212d9bcf02500bbbab0746cbc4834d1 Author: Chris Kerr cam ac uk> AuthorDate: Mon Dec 2 22:27:59 2013 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Dec 8 17:36:48 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=e153914b Added myeconfargs so the USE flags actually affect the compilation --- sci-libs/xraylib/xraylib-2.16.0.ebuild | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/sci-libs/xraylib/xraylib-2.16.0.ebuild b/sci-libs/xraylib/xraylib-2.16.0.ebuild index e699dff..889f1bf 100644 --- a/sci-libs/xraylib/xraylib-2.16.0.ebuild +++ b/sci-libs/xraylib/xraylib-2.16.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/tschoonj/xraylib/archive/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64" -IUSE="cxx examples fortran java lua perl python" +IUSE="cxx examples fortran java lua perl php python ruby" DEPEND="fortran? ( virtual/fortran ) java? ( virtual/jdk ) @@ -23,3 +23,21 @@ DEPEND="fortran? ( virtual/fortran ) ${PYTHON_DEPS}" RDEPEND="${DEPEND}" + +src_configure() { + local myeconfargs=( + --disable-idl + $(use-enable fortran fortran2003) + $(use-enable java) + $(use-enable lua) + $(use-enable perl) + $(use-enable perl perl-integration) + $(use-enable php) + $(use-enable php php-integration) + $(use-enable python) + $(use-enable python python-integration) + $(use-enable ruby) + $(use-enable ruby ruby-integration) + ) + autotools-utils_src_configure +}