Gentoo Archives: gentoo-commits

From: "Nirbheek Chauhan (nirbheek)" <nirbheek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/spidermonkey/files: spidermonkey-1.8.5-fix-install-symlinks.patch
Date: Sun, 03 Jul 2011 05:28:54
Message-Id: 20110703052845.05F7120051@flycatcher.gentoo.org
1 nirbheek 11/07/03 05:28:45
2
3 Added: spidermonkey-1.8.5-fix-install-symlinks.patch
4 Log:
5 Add 1.8.5, which is a new js tarball created from the firefox-4.0 source called 'mozjs185'. This release changes the library name, and the pkg-config file name. See https://bugzilla.mozilla.org/show_bug.cgi?id=628723 for more details. Also, remove obsolete spidermonkey-2.0 ebuild.
6
7 (Portage version: 2.2.0_alpha39_p14/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-lang/spidermonkey/files/spidermonkey-1.8.5-fix-install-symlinks.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/spidermonkey/files/spidermonkey-1.8.5-fix-install-symlinks.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/spidermonkey/files/spidermonkey-1.8.5-fix-install-symlinks.patch?rev=1.1&content-type=text/plain
14
15 Index: spidermonkey-1.8.5-fix-install-symlinks.patch
16 ===================================================================
17 https://bugzilla.mozilla.org/show_bug.cgi?id=628723#c43
18
19 --- js/src/Makefile.in
20 +++ js/src/Makefile.in
21 @@ -888,8 +888,8 @@
22 ifeq (,$(HOST_BIN_SUFFIX))
23 mv -f $(SHLIB_ANY_VER) $(SHLIB_EXACT_VER)
24 @[ ! -h $(SHLIB_ABI_VER) ] || rm -f $(SHLIB_ABI_VER)
25 - ln -s $(SHLIB_EXACT_VER) $(SHLIB_ABI_VER)
26 - ln -s $(SHLIB_ABI_VER) $(SHLIB_ANY_VER)
27 + ln -s $(notdir $(SHLIB_EXACT_VER)) $(SHLIB_ABI_VER)
28 + ln -s $(notdir $(SHLIB_ABI_VER)) $(SHLIB_ANY_VER)
29 endif
30 endif
31 ifneq (,$(IMPORT_LIBRARY))