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 93D9B139694 for ; Wed, 26 Apr 2017 18:04:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 549BCE0B8B; Wed, 26 Apr 2017 18:04:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 27ED5E0B8B for ; Wed, 26 Apr 2017 18:04:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 01A05341686 for ; Wed, 26 Apr 2017 18:04:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6949E7441 for ; Wed, 26 Apr 2017 18:03:58 +0000 (UTC) From: "Brian Evans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" Message-ID: <1493229828.de9ef5fa988d14b4e3ee8b8de2ccd0fce5f1c3a1.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/judy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/judy/judy-1.0.5-r1.ebuild X-VCS-Directories: dev-libs/judy/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: de9ef5fa988d14b4e3ee8b8de2ccd0fce5f1c3a1 X-VCS-Branch: master Date: Wed, 26 Apr 2017 18:03:58 +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: 74e296ee-cc9b-4a2a-89cb-a8bdd4fb274b X-Archives-Hash: fdc135d54dde4296291ce90352a33c36 commit: de9ef5fa988d14b4e3ee8b8de2ccd0fce5f1c3a1 Author: Brian Evans gentoo org> AuthorDate: Wed Apr 26 18:01:45 2017 +0000 Commit: Brian Evans gentoo org> CommitDate: Wed Apr 26 18:03:48 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de9ef5fa dev-libs/judy: Revbump to add static-libs IUSE, new EAPI and multilib Package-Manager: Portage-2.3.5, Repoman-2.3.2 dev-libs/judy/judy-1.0.5-r1.ebuild | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/dev-libs/judy/judy-1.0.5-r1.ebuild b/dev-libs/judy/judy-1.0.5-r1.ebuild new file mode 100644 index 00000000000..c8503aa725c --- /dev/null +++ b/dev-libs/judy/judy-1.0.5-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools ltprune multilib-minimal + +DESCRIPTION="A C library that implements a dynamic array" +HOMEPAGE="http://judy.sourceforge.net/" +SRC_URI="mirror://sourceforge/judy/Judy-${PV}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +IUSE="static-libs" +DOCS=( AUTHORS ChangeLog README ) + +src_prepare() { + eapply -p0 "${FILESDIR}/${P}-parallel-make.patch" + sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' configure.ac || die + eapply_user + eautoreconf + multilib_copy_sources +} + +multilib_src_configure() { + ECONF_SOURCE=${BUILD_DIR} econf $(use_enable static-libs static) +} + +multilib_src_install_all(){ + einstalldocs + prune_libtool_files +}