diff options
author | Alastair Tse <liquidx@gentoo.org> | 2003-09-20 16:01:26 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2003-09-20 16:01:26 +0000 |
commit | 2f21b70bc7ad60d99146c463a39fd82964044411 (patch) | |
tree | 6464a9e38d234ccc28b6f76843076ec39c17a935 /media-gfx | |
parent | minor fixes (diff) | |
download | historical-2f21b70bc7ad60d99146c463a39fd82964044411.tar.gz historical-2f21b70bc7ad60d99146c463a39fd82964044411.tar.bz2 historical-2f21b70bc7ad60d99146c463a39fd82964044411.zip |
slight touchup
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/gimp/Manifest | 2 | ||||
-rw-r--r-- | media-gfx/gimp/gimp-1.3.20.ebuild | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/media-gfx/gimp/Manifest b/media-gfx/gimp/Manifest index 28306df5f913..bc0df6244814 100644 --- a/media-gfx/gimp/Manifest +++ b/media-gfx/gimp/Manifest @@ -3,7 +3,7 @@ MD5 d410d062966d05248f9c4251bd81d3af gimp-1.2.3-r3.ebuild 4707 MD5 3d28dd0ccc739e10db388438d4f06dda gimp-1.2.4.ebuild 3086 MD5 d235271944c1076aa7edb1726b79fecd gimp-1.2.5.ebuild 3253 MD5 75ad0c3088982ebf00bc3d06d2f47602 gimp-1.3.19.ebuild 2400 -MD5 8723d0d0ea3d7ecfc6aebce1a13d91a4 gimp-1.3.20.ebuild 3218 +MD5 1efd8dae44f8f25749f03e1b3e58faaf gimp-1.3.20.ebuild 3235 MD5 03ad2e6c4ab41244af1015a8bbb0b39f metadata.xml 158 MD5 86617fa03849f2ba22c845a31ddf8958 files/digest-gimp-1.2.3-r3 65 MD5 86551dc2402aaed28ccf3612e8fe7b7a files/digest-gimp-1.2.4 65 diff --git a/media-gfx/gimp/gimp-1.3.20.ebuild b/media-gfx/gimp/gimp-1.3.20.ebuild index 644c047643b0..01ba8e529848 100644 --- a/media-gfx/gimp/gimp-1.3.20.ebuild +++ b/media-gfx/gimp/gimp-1.3.20.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-1.3.20.ebuild,v 1.3 2003/09/20 12:54:15 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-1.3.20.ebuild,v 1.4 2003/09/20 16:01:21 liquidx Exp $ IUSE="doc python aalib png jpeg tiff gtkhtml mmx sse X" @@ -95,7 +95,7 @@ src_install() { # Finds out if the installed version number and sees if its the same # as the one being merged. If not, then we create the symlinks. OLD_V=$(find ${ROOT}/usr/lib -maxdepth 1 -name libgimp-1.3.so.*.0.0 | sort | head -n 1 | sed -e 's:.*libgimp-1\.3\.so\.\([0-9]*\)\.0\.0:\1:') - if [ ! -f "${D}/usr/lib/libgimp-1.3.so.${OLD_V}.0.0" ]; then + if [ -n "${OLD_V}" -a ! -f "${D}/usr/lib/libgimp-1.3.so.${OLD_V}.0.0" ]; then einfo "Making symlinks from 1.3.${OLD_V} to 1.3.20" for x in libgimp libgimpwidgets libgimpbase libgimpcolor; do dosym /usr/lib/${x}-1.3.so.20 /usr/lib/${x}-1.3.so.${OLD_V} |