net-libs/http-parser: add patch to fix install_name on Darwin, bug #546098
authorFabian Groffen <grobian@gentoo.org>
Tue, 7 Mar 2017 08:07:34 +0000 (09:07 +0100)
committerFabian Groffen <grobian@gentoo.org>
Tue, 7 Mar 2017 08:08:16 +0000 (09:08 +0100)
Package-Manager: Portage-2.3.3, Repoman-2.3.1

net-libs/http-parser/files/http-parser-2.6.2-darwin.patch [new file with mode: 0644]
net-libs/http-parser/http-parser-2.6.2.ebuild

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 (file)
index 0000000..b04b4a3
--- /dev/null
@@ -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
index 62d9938548be5d860253902e12660c25ba91924d..33986a95474acd041668478861fd7fae6ad277b1 100644 (file)
@@ -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
 }