diff options
author | Mikael Hallendal <hallski@gentoo.org> | 2001-10-24 10:01:55 +0000 |
---|---|---|
committer | Mikael Hallendal <hallski@gentoo.org> | 2001-10-24 10:01:55 +0000 |
commit | a27613e72de62f6a2a88d2510f25758aba567d4b (patch) | |
tree | 3a1c6ec4acc430ae87326f1a1bb850e7cf180f19 /net-www/mozilla-bin | |
parent | New version (diff) | |
download | historical-a27613e72de62f6a2a88d2510f25758aba567d4b.tar.gz historical-a27613e72de62f6a2a88d2510f25758aba567d4b.tar.bz2 historical-a27613e72de62f6a2a88d2510f25758aba567d4b.zip |
removed mozilla-bin, the correct way to do this would be to use --buildpkg and make it available
Diffstat (limited to 'net-www/mozilla-bin')
-rw-r--r-- | net-www/mozilla-bin/files/digest-mozilla-bin-0.9.4 | 1 | ||||
-rw-r--r-- | net-www/mozilla-bin/mozilla-bin-0.9.4.ebuild | 43 |
2 files changed, 0 insertions, 44 deletions
diff --git a/net-www/mozilla-bin/files/digest-mozilla-bin-0.9.4 b/net-www/mozilla-bin/files/digest-mozilla-bin-0.9.4 deleted file mode 100644 index d2d308206344..000000000000 --- a/net-www/mozilla-bin/files/digest-mozilla-bin-0.9.4 +++ /dev/null @@ -1 +0,0 @@ -MD5 38266f3143224247448b24314d9a6445 mozilla-i686-pc-linux-gnu-0.9.4.tar.gz diff --git a/net-www/mozilla-bin/mozilla-bin-0.9.4.ebuild b/net-www/mozilla-bin/mozilla-bin-0.9.4.ebuild deleted file mode 100644 index 597f8d37b08f..000000000000 --- a/net-www/mozilla-bin/mozilla-bin-0.9.4.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Aron Griffis <agriffis@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla-bin/mozilla-bin-0.9.4.ebuild,v 1.1 2001/09/18 00:34:27 agriffis Exp $ - -A=mozilla-i686-pc-linux-gnu-0.9.4.tar.gz -DESCRIPTION="Mozilla web browser - binary build from mozilla.org" -SRC_URI=http://ftp.mozilla.org/pub/mozilla/releases/mozilla$PV/$A -HOMEPAGE=http://www.mozilla.org -PROVIDE=virtual/x11-web-browser - -src_unpack() { - return 0 -} - -src_compile() { - return 0 -} - -src_install() { - mkdir -p $D/opt $D/usr/bin - cd $D/opt || die - unpack $A || die - mv mozilla mozilla-bin-$PV || die - cat <<EOF >$D/usr/bin/mozilla-bin || die -#!/bin/sh -cd /opt/mozilla-bin-$PV -exec ./run-mozilla.sh -EOF - chmod 755 $D/usr/bin/mozilla-bin || die -} - -pkg_postinst() { - local l - if [ -e /usr/bin/mozilla ]; then - l=`ls -l /usr/bin/mozilla | awk '{print $NF}'` - case "$l" in - mozilla-bin-*) ;; # overwrite old mozilla-bin links - *) return 0 ;; # don't overwrite anything else - esac - fi - ln -sfn mozilla-bin /usr/bin/mozilla -} |