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 | 7ed1ac9f6b2b248f7413fa9bdea33768216b3458 (patch) | |
tree | d85e21d06fa8f3efc136574efd1ef26cabcc3531 /x11-misc | |
parent | move xdoclet (diff) | |
download | gentoo-2-7ed1ac9f6b2b248f7413fa9bdea33768216b3458.tar.gz gentoo-2-7ed1ac9f6b2b248f7413fa9bdea33768216b3458.tar.bz2 gentoo-2-7ed1ac9f6b2b248f7413fa9bdea33768216b3458.zip |
Fix bug 107254.
(Portage version: 2.0.52-r1)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/openclipart/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/openclipart/Manifest | 2 | ||||
-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, 21 insertions, 3 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..d325342f60e5 100644 --- a/x11-misc/openclipart/Manifest +++ b/x11-misc/openclipart/Manifest @@ -1,6 +1,8 @@ MD5 c63e3b9129d5cfc07ee3ab44ad77e9c4 openclipart-0.17.ebuild 1942 +MD5 95dfa79ffd7f654793795a88f13effaa openclipart-0.17-r1.ebuild 2103 MD5 a9e6935c566179498f5b63b66d164942 openclipart-0.15.ebuild 1943 MD5 418a8609485423a7294190359f1d846a ChangeLog 912 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 } |