diff options
author | Sebastian Pipping <sping@gentoo.org> | 2012-09-03 22:26:02 +0000 |
---|---|---|
committer | Sebastian Pipping <sping@gentoo.org> | 2012-09-03 22:26:02 +0000 |
commit | ff8b78197498d35cfbeac7a7ddce4db4cc4cc5e0 (patch) | |
tree | cd842e6db3018b0e3c5b8a3d27204e0a000463f3 /media-gfx/gimp | |
parent | Initial import, ebuild by me (bug #404099). (diff) | |
download | gentoo-2-ff8b78197498d35cfbeac7a7ddce4db4cc4cc5e0.tar.gz gentoo-2-ff8b78197498d35cfbeac7a7ddce4db4cc4cc5e0.tar.bz2 gentoo-2-ff8b78197498d35cfbeac7a7ddce4db4cc4cc5e0.zip |
media-gfx/gimp: Fix dead gimp-console.1 symlink (bug #433527)
(Portage version: 2.1.10.65/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx/gimp')
-rw-r--r-- | media-gfx/gimp/ChangeLog | 5 | ||||
-rw-r--r-- | media-gfx/gimp/gimp-2.8.2.ebuild | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/media-gfx/gimp/ChangeLog b/media-gfx/gimp/ChangeLog index bda98cc607f6..46e6fa495467 100644 --- a/media-gfx/gimp/ChangeLog +++ b/media-gfx/gimp/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-gfx/gimp # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v 1.381 2012/08/24 19:11:50 sping Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v 1.382 2012/09/03 22:26:02 sping Exp $ + + 03 Sep 2012; Sebastian Pipping <sping@gentoo.org> gimp-2.8.2.ebuild: + Prevent dead symlink gimp-console.1 (bug #433527) *gimp-2.8.2 (24 Aug 2012) diff --git a/media-gfx/gimp/gimp-2.8.2.ebuild b/media-gfx/gimp/gimp-2.8.2.ebuild index 222f787fd17a..2de98f481b94 100644 --- a/media-gfx/gimp/gimp-2.8.2.ebuild +++ b/media-gfx/gimp/gimp-2.8.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-2.8.2.ebuild,v 1.1 2012/08/24 19:11:50 sping Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-2.8.2.ebuild,v 1.2 2012/09/03 22:26:02 sping Exp $ EAPI="3" PYTHON_DEPEND="python? 2:2.5" @@ -143,6 +143,10 @@ src_install() { find "${D}" -name '*.la' -delete || die + # Prevent dead symlink gimp-console.1 from downstream man page compression (bug #433527) + local gimp_app_version=$(get_version_component_range 1-2) + mv "${D}"/usr/share/man/man1/gimp-console{-${gimp_app_version},}.1 || die + _clean_up_locales } |