commit: 8e2affe355e06b9260acf922a2ac2da507616369 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr> AuthorDate: Sun Nov 15 23:23:19 2020 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Sun Nov 15 23:23:19 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e2affe3
net-libs/libident: disable static libs, port to EAPI 7 Closes: https://bugs.gentoo.org/724908 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr> Signed-off-by: David Seifert <soap <AT> gentoo.org> net-libs/libident/libident-0.32-r1.ebuild | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/net-libs/libident/libident-0.32-r1.ebuild b/net-libs/libident/libident-0.32-r1.ebuild index 99d4cc5919b..6f49ea50ba4 100644 --- a/net-libs/libident/libident-0.32-r1.ebuild +++ b/net-libs/libident/libident-0.32-r1.ebuild @@ -1,7 +1,9 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 + +inherit autotools DESCRIPTION="A small library to interface to the Ident protocol server" HOMEPAGE="http://www.simphalempin.com/dev/libident/" @@ -10,12 +12,17 @@ SRC_URI="http://people.via.ecp.fr/~rem/libident/${P}.tar.bz2" LICENSE="public-domain" SLOT="0" KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86" -IUSE="" -RDEPEND="" -DEPEND="${RDEPEND}" +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf --disable-static +} src_install() { - emake DESTDIR="${D}" install - dodoc AUTHORS ChangeLog NEWS README + default + find "${ED}" -name '*.la' -delete || die }
