diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-03-30 04:15:40 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-03-30 04:15:40 +0000 |
commit | d6fa9d5b913eece1c01cb9b5a9c4b785527289eb (patch) | |
tree | 9a42e9cc3663182bb89222c0ac0c912c14327524 /net-www | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-d6fa9d5b913eece1c01cb9b5a9c4b785527289eb.tar.gz gentoo-2-d6fa9d5b913eece1c01cb9b5a9c4b785527289eb.tar.bz2 gentoo-2-d6fa9d5b913eece1c01cb9b5a9c4b785527289eb.zip |
*** empty log message ***
Diffstat (limited to 'net-www')
-rw-r--r-- | net-www/mozilla/files/digest-mozilla-0.8.1 | 1 | ||||
-rw-r--r-- | net-www/mozilla/mozilla-0.8.1.ebuild | 51 |
2 files changed, 52 insertions, 0 deletions
diff --git a/net-www/mozilla/files/digest-mozilla-0.8.1 b/net-www/mozilla/files/digest-mozilla-0.8.1 new file mode 100644 index 000000000000..1f66125c9c87 --- /dev/null +++ b/net-www/mozilla/files/digest-mozilla-0.8.1 @@ -0,0 +1 @@ +MD5 04c6fbb5dd01ba68687ea2dd95195451 mozilla-source-0.8.1.tar.gz diff --git a/net-www/mozilla/mozilla-0.8.1.ebuild b/net-www/mozilla/mozilla-0.8.1.ebuild new file mode 100644 index 000000000000..ecf7bbd3fa83 --- /dev/null +++ b/net-www/mozilla/mozilla-0.8.1.ebuild @@ -0,0 +1,51 @@ +# 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.1.ebuild,v 1.1 2001/03/30 04:15:40 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.7 + >=x11-libs/gtk+-1.2.9 + >=sys-libs/zlib-1.1.3 + >=media-libs/jpeg-6b + >=media-libs/libpng-1.0.9" + +src_compile() { + + try ./configure --prefix=/opt/mozilla --host=${CHOST} \ + --with-gtk --disable-tests --disable-debug + try make + +} + +src_install () { + + dodir /opt/mozilla/include/{private,obsolete} + cd dist/include + cp -f *.h ${D}/opt/mozilla/include + cp -f obsolete/*.h ${D}/opt/mozilla/include/obsolete + cp -f private/*.h ${D}/opt/mozilla/include/private + + 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 + + exeinto /usr/bin + doexe ${FILESDIR}/mozilla + insinto /etc/env.d + doins ${FILESDIR}/10mozilla + dodoc LEGAL LICENSE README/mozilla/README* + + +} + |