commit:     ebfa98e3e9c35aea2cc51204ddbf63710a81b783
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Tue Mar  7 08:07:34 2017 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Tue Mar  7 08:08:16 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebfa98e3

net-libs/http-parser: add patch to fix install_name on Darwin, bug #546098

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 .../http-parser/files/http-parser-2.6.2-darwin.patch     | 16 ++++++++++++++++
 net-libs/http-parser/http-parser-2.6.2.ebuild            |  3 ++-
 2 files changed, 18 insertions(+), 1 deletion(-)

diff --git a/net-libs/http-parser/files/http-parser-2.6.2-darwin.patch 
b/net-libs/http-parser/files/http-parser-2.6.2-darwin.patch
new file mode 100644
index 00000000000..b04b4a32bb0
--- /dev/null
+++ b/net-libs/http-parser/files/http-parser-2.6.2-darwin.patch
@@ -0,0 +1,16 @@
+Makefile: set install_name on Darwin
+
+https://bugs.gentoo.org/show_bug.cgi?id=546098
+https://github.com/nodejs/http-parser/issues/356
+
+--- http-parser-2.6.2/Makefile
++++ http-parser-2.6.2/Makefile
+@@ -62,6 +62,8 @@
+ ifneq (darwin,$(PLATFORM))
+ # TODO(bnoordhuis) The native SunOS linker expects -h rather than -soname...
+ LDFLAGS_LIB += -Wl,-soname=$(SONAME)
++else
++LDFLAGS_LIB += -Wl,-install_name,$(LIBDIR)/$(SONAME)
+ endif
+ 
+ test: test_g test_fast

diff --git a/net-libs/http-parser/http-parser-2.6.2.ebuild 
b/net-libs/http-parser/http-parser-2.6.2.ebuild
index 62d9938548b..33986a95474 100644
--- a/net-libs/http-parser/http-parser-2.6.2.ebuild
+++ b/net-libs/http-parser/http-parser-2.6.2.ebuild
@@ -21,6 +21,7 @@ PATCHES=(
        
"${FILESDIR}"/0003-makefile-fix-SONAME-symlink-it-should-not-be-a-full-.patch
        "${FILESDIR}"/0004-makefile-add-CFLAGS-to-linking-command.patch
        "${FILESDIR}"/0005-makefile-fix-install-rule-dependency.patch
+       "${FILESDIR}"/${PN}-2.6.2-darwin.patch
 )
 
 src_prepare() {
@@ -30,7 +31,7 @@ src_prepare() {
 }
 
 multilib_src_compile() {
-       emake CFLAGS_FAST="${CFLAGS}" library
+       emake PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)" 
CFLAGS_FAST="${CFLAGS}" library
        use static-libs && emake CFLAGS_FAST="${CFLAGS}" package
 }
 

Reply via email to