diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2002-12-01 09:35:15 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2002-12-01 09:35:15 +0000 |
commit | d07d4f347454ea1447942c82c37542c393459de5 (patch) | |
tree | a2863dfa03acb658b94085699032530e97a8ef0d /net-www/mozilla | |
parent | use .tar.bz2 of freetype. use epatch() (diff) | |
download | gentoo-2-d07d4f347454ea1447942c82c37542c393459de5.tar.gz gentoo-2-d07d4f347454ea1447942c82c37542c393459de5.tar.bz2 gentoo-2-d07d4f347454ea1447942c82c37542c393459de5.zip |
small fixes
Diffstat (limited to 'net-www/mozilla')
-rw-r--r-- | net-www/mozilla/ChangeLog | 8 | ||||
-rw-r--r-- | net-www/mozilla/mozilla-1.2.ebuild | 35 |
2 files changed, 25 insertions, 18 deletions
diff --git a/net-www/mozilla/ChangeLog b/net-www/mozilla/ChangeLog index 090b171b8efe..c96bcdfad19c 100644 --- a/net-www/mozilla/ChangeLog +++ b/net-www/mozilla/ChangeLog @@ -1,6 +1,12 @@ # 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.52 2002/12/01 00:58:13 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla/ChangeLog,v 1.53 2002/12/01 09:35:15 azarah Exp $ + + 01 Dec 2002; Martin Schlemmer <azarah@gentoo.org> mozilla-1.2.ebuild : + + Do not disable Xft for gtk2, as we depend on gtk+-2.1 (hopefully we + can get this into portage real soon). Comment out calendar stuff + for now. *mozilla-1.2 (30 Nov 2002) diff --git a/net-www/mozilla/mozilla-1.2.ebuild b/net-www/mozilla/mozilla-1.2.ebuild index 2f299a2dd6cf..374884cb9a77 100644 --- a/net-www/mozilla/mozilla-1.2.ebuild +++ b/net-www/mozilla/mozilla-1.2.ebuild @@ -1,8 +1,10 @@ # 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.1 2002/12/01 00:58:13 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla/mozilla-1.2.ebuild,v 1.2 2002/12/01 09:35:15 azarah Exp $ -IUSE="java crypt ipv6 gtk2 ssl ldap gnome mozsvg mozcalendar mozaccess mozinterfaceinfo mozp3p mozxmlterm moznomail moznocompose" +IUSE="java crypt ipv6 gtk2 ssl ldap gnome" +# Internal USE flags that I do not really want to advertise ... +IUSE="${IUSE} mozsvg mozcalendar mozaccess mozinterfaceinfo mozp3p mozxmlterm moznomail moznocompose" inherit flag-o-matic gcc makeedit eutils nsplugins @@ -152,14 +154,13 @@ src_unpack() { # <azarah@gentoo.org> (30 Nov 2002) epatch ${FILESDIR}/${PV}/${P}-cutnpaste-limit-fix.patch.bz2 - # Get mozilla to link to Xft2.0 that we install in tmp directory - # <azarah@gentoo.org> (18 Nov 2002) if [ -z "`use gtk2`" ]; then - epatch ${FILESDIR}/1.2/mozilla-1.2b-Xft-includes.patch.bz2 - fi - - if [ -n "`use gtk2`" ]; then - epatch ${FILESDIR}/1.2/mozilla-1.2b-gtk2.patch.bz2 + # Get mozilla to link to Xft2.0 that we install in tmp directory + # <azarah@gentoo.org> (18 Nov 2002) + epatch ${FILESDIR}/${PV}/${P}b-Xft-includes.patch.bz2 + else + # Update Gtk+2 bits from CVS + epatch ${FILESDIR}/${PV}/${P}b-gtk2.patch.bz2 fi cd ${S} @@ -168,8 +169,7 @@ src_unpack() { unset WANT_AUTOCONF_2_1 # Unpack the enigmail plugin - if [ -n "`use crypt`" -a -z "`use moznomail`" ] && \ - [ "${NO_MAIL}" != "YES" -a "${NO_MAIL}" != "yes" ] + if [ -n "`use crypt`" -a -z "`use moznomail`" ] then mv ${WORKDIR}/ipc ${S}/extensions/ mv ${WORKDIR}/enigmail ${S}/extensions/ @@ -221,7 +221,7 @@ src_compile() { fi fi - if [ -n "${MOZ_ENABLE_XFT}" -a -z "`use gtk2`" ] ; then + if [ -n "${MOZ_ENABLE_XFT}" ] ; then myconf="${myconf} --enable-xft" fi @@ -260,9 +260,11 @@ src_compile() { else myconf="${myconf} --disable-svg" fi - if [ -n "`use mozcalendar`" ] ; then - myconf="${myconf} --enable-calendar" - fi +# This puppy needs libical, which is not in portage yet. Also make mozilla +# depend on swig, so not sure if its the best idea around to enable ... +# if [ -n "`use mozcalendar`" ] ; then +# myconf="${myconf} --enable-calendar" +# fi if [ -n "`use moznomail`" ] ; then myconf="${myconf} --disable-mailnews" @@ -400,8 +402,7 @@ src_compile() { # ********************************************************************* # Build the enigmail plugin - if [ -n "`use crypt`" -a -z "`use moznomail`" ] && \ - [ "${NO_MAIL}" != "YES" -a "${NO_MAIL}" != "yes" ] + if [ -n "`use crypt`" -a -z "`use moznomail`" ] then einfo "Building Enigmail plugin..." cd ${S}/extensions/ipc |