summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik Brix Andersen <brix@gentoo.org>2006-06-18 20:03:59 +0000
committerHenrik Brix Andersen <brix@gentoo.org>2006-06-18 20:03:59 +0000
commit6d2085b2ea9b37a9258ab64a8808b370899c26d6 (patch)
treef0692c40f641dafb5d4d94834fd729921ae88d09 /media-gfx/gimp/gimp-9999.ebuild
parentStable on x86, bug #137183. (diff)
downloadgentoo-2-6d2085b2ea9b37a9258ab64a8808b370899c26d6.tar.gz
gentoo-2-6d2085b2ea9b37a9258ab64a8808b370899c26d6.tar.bz2
gentoo-2-6d2085b2ea9b37a9258ab64a8808b370899c26d6.zip
Work around AA variable (strictly only needed for non-CVS ebuilds), do not install gimptool symlink (bug #136012).
(Portage version: 2.1)
Diffstat (limited to 'media-gfx/gimp/gimp-9999.ebuild')
-rw-r--r--media-gfx/gimp/gimp-9999.ebuild8
1 files changed, 6 insertions, 2 deletions
diff --git a/media-gfx/gimp/gimp-9999.ebuild b/media-gfx/gimp/gimp-9999.ebuild
index fc0106925318..a86dd75dd9c3 100644
--- a/media-gfx/gimp/gimp-9999.ebuild
+++ b/media-gfx/gimp/gimp-9999.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-9999.ebuild,v 1.3 2006/06/18 17:53:51 brix Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-9999.ebuild,v 1.4 2006/06/18 20:03:59 brix Exp $
inherit alternatives cvs eutils fdo-mime flag-o-matic
@@ -80,6 +80,9 @@ src_compile() {
"${S}"/autogen.sh $(use_enable doc gtk-doc) || die "autogen.sh failed"
+ # Workaround portage variable leakage
+ local AA=
+
econf \
--disable-default-binary \
--with-x \
@@ -117,7 +120,8 @@ src_install() {
pkg_postinst() {
local binary
- for binary in gimp gimp-console gimp-remote gimptool; do
+ # install symlinks for everything but gimptool (bug #136012)
+ for binary in gimp gimp-console gimp-remote; do
alternatives_auto_makesym "/usr/bin/${binary}" "/usr/bin/${binary}-[0-9].[0-9]"
done