From ebfa98e3e9c35aea2cc51204ddbf63710a81b783 Mon Sep 17 00:00:00 2001 From: Fabian Groffen Date: Tue, 7 Mar 2017 09:07:34 +0100 Subject: [PATCH] net-libs/http-parser: add patch to fix install_name on Darwin, bug #546098 Package-Manager: Portage-2.3.3, Repoman-2.3.1 --- .../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(-) create mode 100644 net-libs/http-parser/files/http-parser-2.6.2-darwin.patch 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 000000000000..b04b4a32bb01 --- /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 62d9938548be..33986a95474a 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 } -- 2.26.2