commit:     8c92e5501462f4a2409efd2ecebb54e31afe99a4
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 14 05:28:12 2017 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Thu Dec 14 05:28:54 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c92e550

dev-perl/Net-Patricia: Remove linking against libnsl bug #638518

- EAPI6
- Enable tests
- Patch out apparently erroneous use of -lnsl

Bug: https://bugs.gentoo.org/638518
Package-Manager: Portage-2.3.18, Repoman-2.3.6

 .../Net-Patricia/Net-Patricia-1.220.0-r1.ebuild    | 27 ++++++++++++++++++++
 .../files/Net-Patricia-1.22-no-lnsl.patch          | 29 ++++++++++++++++++++++
 2 files changed, 56 insertions(+)

diff --git a/dev-perl/Net-Patricia/Net-Patricia-1.220.0-r1.ebuild 
b/dev-perl/Net-Patricia/Net-Patricia-1.220.0-r1.ebuild
new file mode 100644
index 00000000000..b29fdbe2b9e
--- /dev/null
+++ b/dev-perl/Net-Patricia/Net-Patricia-1.220.0-r1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=GRUBER
+DIST_VERSION=1.22
+inherit perl-module toolchain-funcs
+
+DESCRIPTION="Patricia Trie perl module for fast IP address lookups"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+IUSE="ipv6"
+
+RDEPEND="dev-perl/Net-CIDR-Lite
+       ipv6? (
+               dev-perl/Socket6
+       )
+"
+DEPEND="${RDEPEND}"
+
+PATCHES=("${FILESDIR}/${PN}-1.22-no-lnsl.patch")
+src_compile() {
+       emake AR="$(tc-getAR)" OTHERLDFLAGS="${LDFLAGS}"
+}

diff --git a/dev-perl/Net-Patricia/files/Net-Patricia-1.22-no-lnsl.patch 
b/dev-perl/Net-Patricia/files/Net-Patricia-1.22-no-lnsl.patch
new file mode 100644
index 00000000000..6ec76eec4cb
--- /dev/null
+++ b/dev-perl/Net-Patricia/files/Net-Patricia-1.22-no-lnsl.patch
@@ -0,0 +1,29 @@
+From d23c3d9ef60260ecfddf25111d28abd3296940cd Mon Sep 17 00:00:00 2001
+From: Kent Fredric <[email protected]>
+Date: Thu, 14 Dec 2017 18:11:17 +1300
+Subject: Don't link against libnsl
+
+No evidence this is actually used can be found, nothing uses RPC
+headers, and the compiled .so doesn't use any of its symbols or retain
+links in thier NEEDED sections.
+
+Bug: https://bugs.gentoo.org/638518
+---
+ Makefile.PL | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/Makefile.PL b/Makefile.PL
+index acd0918..c023e43 100644
+--- a/Makefile.PL
++++ b/Makefile.PL
+@@ -5,7 +5,6 @@ use ExtUtils::MakeMaker;
+ WriteMakefile(
+     'NAME'    => 'Net::Patricia',
+     'VERSION_FROM' => 'Patricia.pm', # finds $VERSION
+-    'LIBS'    => ['-lnsl'],   # e.g., '-lm' 
+     'DEFINE'  => '',     # e.g., '-DHAVE_SOMETHING' 
+     'INC'     => '',     # e.g., '-I/usr/include/other' 
+     'MYEXTLIB'        => 'libpatricia/libpatricia$(LIB_EXT)',     # e.g., 
'-I/usr/include/other' 
+-- 
+2.14.3
+

Reply via email to