diff options
author | Samuli Suominen <drac@gentoo.org> | 2007-03-23 18:42:55 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2007-03-23 18:42:55 +0000 |
commit | c1f32a7ce782540465f31b42c2e553b4d866c649 (patch) | |
tree | 36f13ae9995788dc33275518f4d4fede736f5581 /x11-themes | |
parent | Stable on amd64 wrt bug 170417 (diff) | |
download | gentoo-2-c1f32a7ce782540465f31b42c2e553b4d866c649.tar.gz gentoo-2-c1f32a7ce782540465f31b42c2e553b4d866c649.tar.bz2 gentoo-2-c1f32a7ce782540465f31b42c2e553b4d866c649.zip |
Add two symlinks for bug 158113. Thanks to Brad Walker.
(Portage version: 2.1.2.2)
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/gartoon/ChangeLog | 5 | ||||
-rw-r--r-- | x11-themes/gartoon/files/digest-gartoon-0.5-r2 | 3 | ||||
-rw-r--r-- | x11-themes/gartoon/gartoon-0.5-r2.ebuild | 45 |
3 files changed, 52 insertions, 1 deletions
diff --git a/x11-themes/gartoon/ChangeLog b/x11-themes/gartoon/ChangeLog index 3a1113b6bc2a..b6bc65845836 100644 --- a/x11-themes/gartoon/ChangeLog +++ b/x11-themes/gartoon/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-themes/gartoon # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/gartoon/ChangeLog,v 1.7 2007/03/22 13:48:48 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/gartoon/ChangeLog,v 1.8 2007/03/23 18:42:55 drac Exp $ + + 23 Mar 2007; Samuli Suominen <drac@gentoo.org> +gartoon-0.5-r2.ebuild: + Add two symlinks for bug 158113. Thanks to Brad Walker. 22 Mar 2007; Samuli Suominen <drac@gentoo.org> metadata.xml, gartoon-0.5-r1.ebuild: diff --git a/x11-themes/gartoon/files/digest-gartoon-0.5-r2 b/x11-themes/gartoon/files/digest-gartoon-0.5-r2 new file mode 100644 index 000000000000..a6ca02c749c8 --- /dev/null +++ b/x11-themes/gartoon/files/digest-gartoon-0.5-r2 @@ -0,0 +1,3 @@ +MD5 19fd88682ad2f88ca85f7e0a904610fd gartoon-0.5.tar.gz 1552790 +RMD160 ad2d5e7992b26e8c099cd80ae76cc9e8fa90e6e1 gartoon-0.5.tar.gz 1552790 +SHA256 f5f7db405c7a1535f8940bf2a7099a282e0f809e52a48bb0e29e265467926169 gartoon-0.5.tar.gz 1552790 diff --git a/x11-themes/gartoon/gartoon-0.5-r2.ebuild b/x11-themes/gartoon/gartoon-0.5-r2.ebuild new file mode 100644 index 000000000000..d67082bd1023 --- /dev/null +++ b/x11-themes/gartoon/gartoon-0.5-r2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/gartoon/gartoon-0.5-r2.ebuild,v 1.1 2007/03/23 18:42:55 drac Exp $ + +DESCRIPTION="Gartoon SVG icon theme" +SRC_URI="http://zeus.qballcow.nl/icon/paket/${P}.tar.gz" +HOMEPAGE="http://zeus.qballcow.nl/?page_id=15" + +LICENSE="GPL-2" +IUSE="" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +SLOT="0" + +RESTRICT="nostrip" + +S="${WORKDIR}/${PN}" +MY_DEST="/usr/share/icons/${PN}" + +src_unpack() { + unpack ${A} + sed -i -e "s:\(^pixmap_path\) \(\".*\"$\):\1 \"${MY_DEST}/scalable/stock\":" \ + "${S}"/scalable/stock/iconrc +} + +src_install() { + insinto ${MY_DEST} + doins gartoon-pallete.svg index.theme scalable/stock/iconrc + + dodoc AUTHORS README scalable/stock/changelog_mula.txt + + for dir in apps devices emblems filesystems mimetypes stock; do + cd "${S}"/scalable/${dir} + insinto ${MY_DEST}/scalable/${dir} + for svg in *svg; do + doins ${svg} + done + done + + cd scalable/apps + dosym gnome-lockscreen.svg ${MY_DEST}/scalable/apps/xfce-system-lock.svg + dosym control-center2.svg ${MY_DEST}/scalable/apps/xfce-system-settings.svg + dosym gnome-logout.svg ${MY_DEST}/scalable/apps/xfce-system-exit.svg + dosym mozilla-firefox.svg ${MY_DEST}/scalable/apps/firefox-icon.svg + dosym gnome-globe.svg ${MY_DEST}/scalable/apps/firefox-icon-unbranded.svg +} |