diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-02-16 17:49:05 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-02-16 17:49:05 +0000 |
commit | d36c584c34e7f864213787db87b3e319c6af93f5 (patch) | |
tree | f6e347d9454b9eddaaea8790f0c6a77c36628fcb /net-www | |
parent | another fix (diff) | |
download | gentoo-2-d36c584c34e7f864213787db87b3e319c6af93f5.tar.gz gentoo-2-d36c584c34e7f864213787db87b3e319c6af93f5.tar.bz2 gentoo-2-d36c584c34e7f864213787db87b3e319c6af93f5.zip |
*** empty log message ***
Diffstat (limited to 'net-www')
-rw-r--r-- | net-www/mozilla/files/digest-mozilla-0.8 | 1 | ||||
-rw-r--r-- | net-www/mozilla/mozilla-0.8.ebuild | 42 |
2 files changed, 43 insertions, 0 deletions
diff --git a/net-www/mozilla/files/digest-mozilla-0.8 b/net-www/mozilla/files/digest-mozilla-0.8 new file mode 100644 index 000000000000..fba5e15e9e5d --- /dev/null +++ b/net-www/mozilla/files/digest-mozilla-0.8 @@ -0,0 +1 @@ +MD5 192d9f44004b19dffb4e1e8ba28d8736 mozilla-source-0.8.tar.gz diff --git a/net-www/mozilla/mozilla-0.8.ebuild b/net-www/mozilla/mozilla-0.8.ebuild new file mode 100644 index 000000000000..cd84030f2b53 --- /dev/null +++ b/net-www/mozilla/mozilla-0.8.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla/mozilla-0.8.ebuild,v 1.1 2001/02/16 17:49:05 achim Exp $ + +A=mozilla-source-${PV}.tar.gz +S=${WORKDIR}/mozilla +DESCRIPTION="" +SRC_URI="ftp://ftp.mozilla.org/pub/mozilla/releases/mozilla${PV}/src/${A}" +HOMEPAGE="http://www.mozilla.org" +PROVIDE="virtual/x11-web-browser" + +DEPEND=">=gnome-base/ORBit-0.5.6 + >=x11-libs/gtk+-1.2.8 + >=sys-libs/zlib-1.1.3 + >=media-libs/jpeg-6b + >=media-libs/libpng-1.0.7" + +src_compile() { + + cd ${S} + try ./configure --prefix=/opt/mozilla --host=${CHOST} \ + --with-gtk -enable-mathml --enable-svg + try make + +} + +src_install () { + + cd ${S} + export MOZILLA_OFFICIAL=1 + export BUILD_OFFICIAL=1 + cd ${S}/xpinstall/packager + try make + dodir /opt + tar xzf ${S}/dist/mozilla-i686-pc-linux-gnu.tar.gz -C ${D}/opt + mv ${D}/opt/package ${D}/opt/mozilla + dodoc LEGAL LICENSE README/mozilla/README* + + +} + |