diff options
author | Michael Januszewski <spock@gentoo.org> | 2010-06-24 10:42:04 +0000 |
---|---|---|
committer | Michael Januszewski <spock@gentoo.org> | 2010-06-24 10:42:04 +0000 |
commit | 90773da3295c6c6de0b70885c26560886e042990 (patch) | |
tree | dfc9fe8fe14484e0021800fd0f0ac59362974d4f /media-gfx/bootsplash-themes | |
parent | Version Bump, #270876; Prevend stripping, #252036, removed old versions (diff) | |
download | gentoo-2-90773da3295c6c6de0b70885c26560886e042990.tar.gz gentoo-2-90773da3295c6c6de0b70885c26560886e042990.tar.bz2 gentoo-2-90773da3295c6c6de0b70885c26560886e042990.zip |
Fix symlink creation (bug #323473).
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx/bootsplash-themes')
-rw-r--r-- | media-gfx/bootsplash-themes/ChangeLog | 8 | ||||
-rw-r--r-- | media-gfx/bootsplash-themes/bootsplash-themes-20060913.ebuild | 6 |
2 files changed, 9 insertions, 5 deletions
diff --git a/media-gfx/bootsplash-themes/ChangeLog b/media-gfx/bootsplash-themes/ChangeLog index 0ce927a409ad..27373164d3e4 100644 --- a/media-gfx/bootsplash-themes/ChangeLog +++ b/media-gfx/bootsplash-themes/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-gfx/bootsplash-themes -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/bootsplash-themes/ChangeLog,v 1.14 2009/05/29 11:01:12 fauli Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/bootsplash-themes/ChangeLog,v 1.15 2010/06/24 10:42:04 spock Exp $ + + 24 Jun 2010; Michał Januszewski <spock@gentoo.org> + bootsplash-themes-20060913.ebuild: + Fix symlink creation (bug #323473). 29 May 2009; Christian Faulhammer <fauli@gentoo.org> bootsplash-themes-20060913.ebuild: diff --git a/media-gfx/bootsplash-themes/bootsplash-themes-20060913.ebuild b/media-gfx/bootsplash-themes/bootsplash-themes-20060913.ebuild index c340b1b1ce8b..347fc8a0ebcd 100644 --- a/media-gfx/bootsplash-themes/bootsplash-themes-20060913.ebuild +++ b/media-gfx/bootsplash-themes/bootsplash-themes-20060913.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/bootsplash-themes/bootsplash-themes-20060913.ebuild,v 1.7 2009/05/29 11:01:12 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/bootsplash-themes/bootsplash-themes-20060913.ebuild,v 1.8 2010/06/24 10:42:04 spock Exp $ DESCRIPTION="A collection of Bootsplash themes" HOMEPAGE="http://dev.gentoo.org/~spock/repos/bootsplash/" @@ -255,7 +255,7 @@ src_install() { # Fix symlinks for i in "${D}"/etc/splash/*/images/*.{png,jpg} ; do if [ -L ${i} ]; then - tg=`readlink ${i} | sed -e "s#/${D}/etc/splash[^/]*/images/##"` + tg=`readlink ${i} | sed -e "s#${D}etc/splash/[^/]*/images/##"` rm -f ${i} i=${i/${D}///} dosym ${tg} ${i} |