diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2002-12-01 23:39:25 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2002-12-01 23:39:25 +0000 |
commit | b902c0190928b100fdde826d1e5937b170c075bd (patch) | |
tree | ece98ddb79de2d9669699d756a13e67259d5faec /net-www | |
parent | moved 4.06 to x86 stable profile (diff) | |
download | historical-b902c0190928b100fdde826d1e5937b170c075bd.tar.gz historical-b902c0190928b100fdde826d1e5937b170c075bd.tar.bz2 historical-b902c0190928b100fdde826d1e5937b170c075bd.zip |
do not apply branch update, as tarball was renamed. update to use get_number_of_jobs().
Diffstat (limited to 'net-www')
-rw-r--r-- | net-www/mozilla/ChangeLog | 7 | ||||
-rw-r--r-- | net-www/mozilla/mozilla-1.2.ebuild | 8 |
2 files changed, 11 insertions, 4 deletions
diff --git a/net-www/mozilla/ChangeLog b/net-www/mozilla/ChangeLog index c96bcdfad19c..c296c957c768 100644 --- a/net-www/mozilla/ChangeLog +++ b/net-www/mozilla/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-www/mozilla # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla/ChangeLog,v 1.53 2002/12/01 09:35:15 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla/ChangeLog,v 1.54 2002/12/01 23:39:25 azarah Exp $ + + 02 Dec 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.ebuild : + + Mozilla people updated the tarball, so no need for the branch update. + Add get_number_of_jobs() stuff, thanks to nall <nall@gentoo.org>. 01 Dec 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.ebuild : diff --git a/net-www/mozilla/mozilla-1.2.ebuild b/net-www/mozilla/mozilla-1.2.ebuild index 461eea52a6a9..6ba337cbb47d 100644 --- a/net-www/mozilla/mozilla-1.2.ebuild +++ b/net-www/mozilla/mozilla-1.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla/mozilla-1.2.ebuild,v 1.3 2002/12/01 17:50:33 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla/mozilla-1.2.ebuild,v 1.4 2002/12/01 23:39:25 azarah Exp $ IUSE="java crypt ipv6 gtk2 ssl ldap gnome" # Internal USE flags that I do not really want to advertise ... @@ -104,7 +104,8 @@ pkg_setup() { #This should enable parallel builds, I hope if [ -f /proc/cpuinfo ] then - export MAKEOPTS="${MAKEOPTS/-j[0-9]?} -j$((`grep -c ^processor /proc/cpuinfo` * 2))" + # Set MAKEOPTS to have proper -j? option .. + get_number_of_jobs export MAKE="emake" fi @@ -140,7 +141,8 @@ src_unpack() { # the main branch # # http://bugzilla.mozilla.org/show_bug.cgi?id=182506 - epatch ${FILESDIR}/${PV}/${P}-branch-update.patch.bz2 +# Included in updated tarball ... +# epatch ${FILESDIR}/${PV}/${P}-branch-update.patch.bz2 if [ "$(gcc-major-version)" -eq "3" ] then |