diff options
author | Bryan Østergaard <kloeri@gentoo.org> | 2006-12-26 12:54:04 +0000 |
---|---|---|
committer | Bryan Østergaard <kloeri@gentoo.org> | 2006-12-26 12:54:04 +0000 |
commit | 4d6ab6a73641f56adc6e1072f4ec2fa253b7ff7f (patch) | |
tree | 0b92ddba05a50149ce7531e9cbee3f04eee3344c /www-client/mozilla-launcher/mozilla-launcher-1.56.ebuild | |
parent | remove rfc -i that downloaded an index in pkg_postinst - bug #151422 (diff) | |
download | historical-4d6ab6a73641f56adc6e1072f4ec2fa253b7ff7f.tar.gz historical-4d6ab6a73641f56adc6e1072f4ec2fa253b7ff7f.tar.bz2 historical-4d6ab6a73641f56adc6e1072f4ec2fa253b7ff7f.zip |
Bump version, fixing urlOpen and grep -F issues.
Package-Manager: portage-2.1.2_rc4-r1
Diffstat (limited to 'www-client/mozilla-launcher/mozilla-launcher-1.56.ebuild')
-rw-r--r-- | www-client/mozilla-launcher/mozilla-launcher-1.56.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/www-client/mozilla-launcher/mozilla-launcher-1.56.ebuild b/www-client/mozilla-launcher/mozilla-launcher-1.56.ebuild new file mode 100644 index 000000000000..75fffa0a8961 --- /dev/null +++ b/www-client/mozilla-launcher/mozilla-launcher-1.56.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/mozilla-launcher/mozilla-launcher-1.56.ebuild,v 1.1 2006/12/26 12:54:04 kloeri Exp $ + +inherit eutils + +DESCRIPTION="Script that launches mozilla or firefox" +HOMEPAGE="http://dev.gentoo.org/~agriffis/dist/" +SRC_URI="mirror://gentoo/${P}.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="" + +DEPEND="" +RDEPEND="" + +S=${WORKDIR} + +src_install() { + exeinto /usr/libexec + newexe ${P} mozilla-launcher || die +} + +pkg_postinst() { + local f + + find ${ROOT}/usr/bin -maxdepth 1 -type l | \ + while read f; do + [[ $(readlink ${f}) == mozilla-launcher ]] || continue + einfo "Updating ${f} symlink to /usr/libexec/mozilla-launcher" + ln -sfn /usr/libexec/mozilla-launcher ${f} + done +} |