From 8e2affe355e06b9260acf922a2ac2da507616369 Mon Sep 17 00:00:00 2001 From: Jakov Smolic Date: Mon, 16 Nov 2020 00:23:19 +0100 Subject: 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 Signed-off-by: David Seifert --- net-libs/libident/libident-0.32-r1.ebuild | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) (limited to 'net-libs') diff --git a/net-libs/libident/libident-0.32-r1.ebuild b/net-libs/libident/libident-0.32-r1.ebuild index 99d4cc5919bf..6f49ea50ba4d 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 } -- cgit v1.2.3-65-gdbad