diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2002-06-24 23:05:28 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2002-06-24 23:05:28 +0000 |
commit | d4c6eed6561a7fda690d4a2d65466376e7884086 (patch) | |
tree | 3ed51afdbb9ed51f8296a81b9aa9113eae47d88d /net-www/mozilla | |
parent | Fixes #2900. (diff) | |
download | gentoo-2-d4c6eed6561a7fda690d4a2d65466376e7884086.tar.gz gentoo-2-d4c6eed6561a7fda690d4a2d65466376e7884086.tar.bz2 gentoo-2-d4c6eed6561a7fda690d4a2d65466376e7884086.zip |
add support to disable mail and news
Diffstat (limited to 'net-www/mozilla')
-rw-r--r-- | net-www/mozilla/ChangeLog | 7 | ||||
-rw-r--r-- | net-www/mozilla/mozilla-1.0-r2.ebuild | 9 |
2 files changed, 12 insertions, 4 deletions
diff --git a/net-www/mozilla/ChangeLog b/net-www/mozilla/ChangeLog index 69c7d26d91f8..6a41fab1453e 100644 --- a/net-www/mozilla/ChangeLog +++ b/net-www/mozilla/ChangeLog @@ -1,9 +1,10 @@ # 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.23 2002/06/08 15:19:36 spider Exp $ - - +# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla/ChangeLog,v 1.24 2002/06/24 23:05:28 azarah Exp $ + 26 Jun 2002; Martin Schlemmer <azarah@gentoo.org> : + Add support to set NO_MAIL=YES to disable the mail and news components. + This hopefully resolves bug #3575. mozilla-1.0-r2 (7 Jun 2002) 7 Jun 2002; Spider <spider@gentoo.org> : diff --git a/net-www/mozilla/mozilla-1.0-r2.ebuild b/net-www/mozilla/mozilla-1.0-r2.ebuild index d267acc84fc9..7c9979dbdbdd 100644 --- a/net-www/mozilla/mozilla-1.0-r2.ebuild +++ b/net-www/mozilla/mozilla-1.0-r2.ebuild @@ -1,7 +1,9 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Maintainer: Martin Schlemmer <azarah@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla/mozilla-1.0-r2.ebuild,v 1.2 2002/06/08 15:19:36 spider Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla/mozilla-1.0-r2.ebuild,v 1.3 2002/06/24 23:05:28 azarah Exp $ + +# NOTE: to build without the mail and news component: export NO_MAIL="YES" # handle _rc versions MY_PV1=${PV/_} @@ -131,6 +133,11 @@ src_compile() { fi + if [ "${NO_MAIL}" = "YES" ] || [ "${NO_MAIL}" = "yes" ] + then + myconf="${myconf} --disable-mailnews" + fi + export BUILD_MODULES=all export BUILD_OPT=1 |