diff options
author | Krzysztof Pawlik <nelchael@gentoo.org> | 2005-09-26 18:32:36 +0000 |
---|---|---|
committer | Krzysztof Pawlik <nelchael@gentoo.org> | 2005-09-26 18:32:36 +0000 |
commit | 4601d42bc4e5cad6d7d7f0dc8009df348bf65dcf (patch) | |
tree | 76a91b1f8276f6f198f80edf2a5bf50297b44e24 /x11-misc/openclipart | |
parent | move xdoclet (diff) | |
download | historical-4601d42bc4e5cad6d7d7f0dc8009df348bf65dcf.tar.gz historical-4601d42bc4e5cad6d7d7f0dc8009df348bf65dcf.tar.bz2 historical-4601d42bc4e5cad6d7d7f0dc8009df348bf65dcf.zip |
Fix bug 107254.
Package-Manager: portage-2.0.52-r1
Diffstat (limited to 'x11-misc/openclipart')
-rw-r--r-- | x11-misc/openclipart/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/openclipart/Manifest | 6 | ||||
-rw-r--r-- | x11-misc/openclipart/files/digest-openclipart-0.17-r1 (renamed from x11-misc/openclipart/files/digest-openclipart-0.17) | 0 | ||||
-rw-r--r-- | x11-misc/openclipart/openclipart-0.17-r1.ebuild (renamed from x11-misc/openclipart/openclipart-0.17.ebuild) | 14 |
4 files changed, 22 insertions, 6 deletions
diff --git a/x11-misc/openclipart/ChangeLog b/x11-misc/openclipart/ChangeLog index 8bb50685189d..10f21753d96c 100644 --- a/x11-misc/openclipart/ChangeLog +++ b/x11-misc/openclipart/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-misc/openclipart # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/openclipart/ChangeLog,v 1.5 2005/09/25 21:09:37 nelchael Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/openclipart/ChangeLog,v 1.6 2005/09/26 18:32:36 nelchael Exp $ + +*openclipart-0.17-r1 (26 Sep 2005) + + 26 Sep 2005; Krzysiek Pawlik <nelchael@gentoo.org> + -openclipart-0.17.ebuild, +openclipart-0.17-r1.ebuild: + Fix bug 107254. *openclipart-0.17 (25 Sep 2005) diff --git a/x11-misc/openclipart/Manifest b/x11-misc/openclipart/Manifest index 5da07fdcfb71..61b8712c5918 100644 --- a/x11-misc/openclipart/Manifest +++ b/x11-misc/openclipart/Manifest @@ -1,6 +1,6 @@ -MD5 c63e3b9129d5cfc07ee3ab44ad77e9c4 openclipart-0.17.ebuild 1942 +MD5 7e26e6d28e79efe2d7a650d5b8521f85 openclipart-0.17-r1.ebuild 2106 MD5 a9e6935c566179498f5b63b66d164942 openclipart-0.15.ebuild 1943 -MD5 418a8609485423a7294190359f1d846a ChangeLog 912 +MD5 ad04d8d16eb2b3ea7e99d6f4f39b7d50 ChangeLog 1077 MD5 8dad4c602e8fc48cf21cf32d762b9af0 metadata.xml 231 MD5 8cea0f6a7884b60e03f7459fab352510 files/digest-openclipart-0.15 71 -MD5 f3c7e5a73969739508280efbfe29d0b6 files/digest-openclipart-0.17 77 +MD5 f3c7e5a73969739508280efbfe29d0b6 files/digest-openclipart-0.17-r1 77 diff --git a/x11-misc/openclipart/files/digest-openclipart-0.17 b/x11-misc/openclipart/files/digest-openclipart-0.17-r1 index 61fce00e39a8..61fce00e39a8 100644 --- a/x11-misc/openclipart/files/digest-openclipart-0.17 +++ b/x11-misc/openclipart/files/digest-openclipart-0.17-r1 diff --git a/x11-misc/openclipart/openclipart-0.17.ebuild b/x11-misc/openclipart/openclipart-0.17-r1.ebuild index 3cfd43881408..62224275aa1e 100644 --- a/x11-misc/openclipart/openclipart-0.17.ebuild +++ b/x11-misc/openclipart/openclipart-0.17-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/openclipart/openclipart-0.17.ebuild,v 1.1 2005/09/25 21:09:37 nelchael Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/openclipart/openclipart-0.17-r1.ebuild,v 1.1 2005/09/26 18:32:36 nelchael Exp $ inherit eutils @@ -19,6 +19,14 @@ RDEPEND="" # suggested basedir for cliparts CLIPART="/usr/share/clipart/${PN}" +S="${WORKDIR}/openclipart-${PV}-full" + +src_unpack() { + unpack "${A}" + einfo "Removing nsis directory" + cd "${S}" + rm -fr nsis +} select_files() { # select wanted formats, optionally compress them @@ -72,7 +80,9 @@ src_install() { then einfo "Installing ${DIR#*/}" insinto "${CLIPART}/${DIR#*/}" - doins ${FILES} + for f in ${FILES}; do + doins "${f}" + done; fi done } |