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 2D16A1388BF for ; Sun, 10 Jan 2016 23:43:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B557521C002; Sun, 10 Jan 2016 23:43:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5050621C002 for ; Sun, 10 Jan 2016 23:43:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 708D7340928 for ; Sun, 10 Jan 2016 23:43:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 98E5213A for ; Sun, 10 Jan 2016 23:43:17 +0000 (UTC) From: "Sven Wegener" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sven Wegener" Message-ID: <1452469351.75f74c030d4f124314f0325fb5196212daefbba6.swegener@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-embedded/libjaylink/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-embedded/libjaylink/libjaylink-9999.ebuild X-VCS-Directories: dev-embedded/libjaylink/ X-VCS-Committer: swegener X-VCS-Committer-Name: Sven Wegener X-VCS-Revision: 75f74c030d4f124314f0325fb5196212daefbba6 X-VCS-Branch: master Date: Sun, 10 Jan 2016 23:43:17 +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: 8eae283b-74cc-4d8a-bf43-8af493e0bab8 X-Archives-Hash: e865b1649b73219a34557d224122cf37 commit: 75f74c030d4f124314f0325fb5196212daefbba6 Author: Sven Wegener gentoo org> AuthorDate: Sun Jan 10 23:39:18 2016 +0000 Commit: Sven Wegener gentoo org> CommitDate: Sun Jan 10 23:42:31 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75f74c03 dev-embedded/libjaylink: Support static-libs Signed-off-by: Sven Wegener gentoo.org> dev-embedded/libjaylink/libjaylink-9999.ebuild | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/dev-embedded/libjaylink/libjaylink-9999.ebuild b/dev-embedded/libjaylink/libjaylink-9999.ebuild index b2f376b..74d37a6 100644 --- a/dev-embedded/libjaylink/libjaylink-9999.ebuild +++ b/dev-embedded/libjaylink/libjaylink-9999.ebuild @@ -6,7 +6,7 @@ EAPI="5" EGIT_REPO_URI="git://git.zapb.de/libjaylink.git" -inherit git-r3 autotools +inherit git-r3 autotools eutils DESCRIPTION="Library to access J-Link devices" HOMEPAGE="http://git.zapb.de/libjaylink.git" @@ -14,7 +14,7 @@ HOMEPAGE="http://git.zapb.de/libjaylink.git" LICENSE="GPL-2" SLOT="0" KEYWORDS="" -IUSE="" +IUSE="static-libs" DEPEND="virtual/libusb:1" RDEPEND="${DEPEND}" @@ -22,3 +22,12 @@ RDEPEND="${DEPEND}" src_prepare() { eautoreconf || die } + +src_configure() { + econf $(use_enable static-libs static) +} + +src_install() { + default + prune_libtool_files +}