summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schlemmer <azarah@gentoo.org>2002-11-18 23:17:50 +0000
committerMartin Schlemmer <azarah@gentoo.org>2002-11-18 23:17:50 +0000
commitd95aaca8728ba427529335d0384f239b84b99399 (patch)
tree3da2b4250929e73de6bd9b21be1bb155d8e2ab95 /net-www
parentdont link gtk2 build moz to Xft2.0 (diff)
downloadhistorical-d95aaca8728ba427529335d0384f239b84b99399.tar.gz
historical-d95aaca8728ba427529335d0384f239b84b99399.tar.bz2
historical-d95aaca8728ba427529335d0384f239b84b99399.zip
fix config stuff
Diffstat (limited to 'net-www')
-rw-r--r--net-www/mozilla/ChangeLog5
-rw-r--r--net-www/mozilla/mozilla-1.2_beta.ebuild10
2 files changed, 9 insertions, 6 deletions
diff --git a/net-www/mozilla/ChangeLog b/net-www/mozilla/ChangeLog
index c737d4613fc8..5cb2f3dcd92c 100644
--- a/net-www/mozilla/ChangeLog
+++ b/net-www/mozilla/ChangeLog
@@ -1,12 +1,15 @@
# 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.47 2002/11/18 22:19:33 azarah Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla/ChangeLog,v 1.48 2002/11/18 23:17:50 azarah Exp $
19 Nov 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2_beta.ebuild :
Do not enable Xft2.0 if we are building with gtk2, as it causes mozilla to
segfault do to it being linked to libXft.so.1.1 *and* libXft.so.2.0.
+ Change the perl sed's for mozilla-config and pkgconfig files to use $MY_PV2
+ and *not* $PV.
+
*mozilla-1.2_beta (18 Nov 2002)
18 Nov 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2_beta.ebuild :
diff --git a/net-www/mozilla/mozilla-1.2_beta.ebuild b/net-www/mozilla/mozilla-1.2_beta.ebuild
index d8a155045da7..821463af6d24 100644
--- a/net-www/mozilla/mozilla-1.2_beta.ebuild
+++ b/net-www/mozilla/mozilla-1.2_beta.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_beta.ebuild,v 1.2 2002/11/18 22:19:33 azarah Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla/mozilla-1.2_beta.ebuild,v 1.3 2002/11/18 23:17:50 azarah Exp $
IUSE="mozxmlterm moznomail java mozp3p crypt ipv6 gtk2 mozinterfaceinfo ssl ldap mozaccess mozctl gnome mozsvg"
@@ -387,8 +387,8 @@ src_install() {
cd ${S}/build/unix
# Fix mozilla-config and install it
- perl -pi -e "s:/lib/mozilla-${PV}::g" mozilla-config
- perl -pi -e "s:/mozilla-${PV}::g" mozilla-config
+ perl -pi -e "s:/lib/mozilla-${MY_PV2}::g" mozilla-config
+ perl -pi -e "s:/mozilla-${MY_PV2}::g" mozilla-config
exeinto /usr/lib/mozilla
doexe mozilla-config
# Fix pkgconfig files and install them
@@ -397,8 +397,8 @@ src_install() {
do
if [ -f ${x} ]
then
- perl -pi -e "s:/lib/mozilla-${PV}::g" ${x}
- perl -pi -e "s:/mozilla-${PV}::g" ${x}
+ perl -pi -e "s:/lib/mozilla-${MY_PV2}::g" ${x}
+ perl -pi -e "s:/mozilla-${MY_PV2}::g" ${x}
doins ${x}
fi
done