commit:     c1380ebd1a7e6545a9c870ccbdb490719158d832
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Feb  9 18:49:30 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Feb  9 18:49:30 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1380ebd

net-libs/libnfnetlink: Port to EAPI 7

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 net-libs/libnfnetlink/libnfnetlink-1.0.1.ebuild | 29 ++++++++++++-------------
 1 file changed, 14 insertions(+), 15 deletions(-)

diff --git a/net-libs/libnfnetlink/libnfnetlink-1.0.1.ebuild 
b/net-libs/libnfnetlink/libnfnetlink-1.0.1.ebuild
index 7f4eb46d560..26088b852aa 100644
--- a/net-libs/libnfnetlink/libnfnetlink-1.0.1.ebuild
+++ b/net-libs/libnfnetlink/libnfnetlink-1.0.1.ebuild
@@ -1,28 +1,25 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=4
-inherit linux-info eutils
+EAPI=7
+
+inherit linux-info
 
-DESCRIPTION="the low-level library for netfilter related kernel/userspace 
communication"
-HOMEPAGE="http://www.netfilter.org/projects/libnfnetlink/";
 PATCH_BLOB=04aef8a4dedf267dd5744afb134ef8046e77f613
 PATCH_FN=${PATCH_BLOB}-musl-fix-includes.patch
-SRC_URI="http://www.netfilter.org/projects/${PN}/files/${P}.tar.bz2
-                
https://git.alpinelinux.org/cgit/aports/plain/main/libnfnetlink/musl-fix-includes.patch
 -> ${PATCH_FN}"
+
+DESCRIPTION="the low-level library for netfilter related kernel/userspace 
communication"
+HOMEPAGE="http://www.netfilter.org/projects/libnfnetlink/";
+SRC_URI="
+       http://www.netfilter.org/projects/${PN}/files/${P}.tar.bz2
+       
https://git.alpinelinux.org/cgit/aports/plain/main/libnfnetlink/musl-fix-includes.patch
 -> ${PATCH_FN}"
 
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 ~riscv s390 sh 
sparc x86"
-IUSE="static-libs"
 
-DOCS=( README )
 PATCHES=( "${DISTDIR}/${PATCH_FN}" )
 
-src_prepare() {
-       epatch "${PATCHES[@]}"
-}
-
 pkg_setup() {
        linux-info_pkg_setup
 
@@ -44,10 +41,12 @@ pkg_setup() {
 }
 
 src_configure() {
-       econf $(use_enable static-libs static)
+       econf --disable-static
 }
 
 src_install() {
        default
-       prune_libtool_files
+
+       # no static archives
+       find "${D}" -name '*.la' -delete || die
 }

Reply via email to