x11-themes/gartoon-redux: rsvg -> rsvg-convert (bug #574440 by Toralf Förster).
authorJeroen Roovers <jer@gentoo.org>
Sun, 14 Feb 2016 09:27:03 +0000 (10:27 +0100)
committerJeroen Roovers <jer@gentoo.org>
Sun, 14 Feb 2016 09:28:09 +0000 (10:28 +0100)
Patch configure to use rsvg-convert with correct options
Work around parallel make failure
Depend on dev-perl/Switch

Package-Manager: portage-2.2.27

x11-themes/gartoon-redux/files/gartoon-redux-1.10-rsvg-convert.patch [new file with mode: 0644]
x11-themes/gartoon-redux/gartoon-redux-1.10-r1.ebuild [new file with mode: 0644]

diff --git a/x11-themes/gartoon-redux/files/gartoon-redux-1.10-rsvg-convert.patch b/x11-themes/gartoon-redux/files/gartoon-redux-1.10-rsvg-convert.patch
new file mode 100644 (file)
index 0000000..411b453
--- /dev/null
@@ -0,0 +1,11 @@
+--- a/configure
++++ b/configure
+@@ -150,7 +150,7 @@
+       my $size = shift;
+       my $zoom_factor = $size / 90;
+       return "$target: $source\n" .
+-             "\trsvg -x $zoom_factor -y $zoom_factor $source $target";
++             "\trsvg-convert -x $zoom_factor -y $zoom_factor $source -o $target";
+ }
+ 
+ sub usage {
diff --git a/x11-themes/gartoon-redux/gartoon-redux-1.10-r1.ebuild b/x11-themes/gartoon-redux/gartoon-redux-1.10-r1.ebuild
new file mode 100644 (file)
index 0000000..ea8a109
--- /dev/null
@@ -0,0 +1,45 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit eutils gnome2-utils
+
+DESCRIPTION="A massively improved variant of the well-known Gartoon theme"
+HOMEPAGE="http://gnome-look.org/content/show.php/?content=74841"
+SRC_URI="http://tweenk.artfx.pl/gartoon/source/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="
+       dev-lang/perl
+       dev-perl/Switch
+       gnome-base/librsvg
+"
+
+RESTRICT="binchecks strip"
+
+src_prepare() {
+       epatch "${FILESDIR}"/${PN}-1.10-rsvg-convert.patch
+}
+
+src_configure() {
+       # perl script, not autotools based
+       ./configure --prefix=/usr || die
+}
+
+src_compile() {
+       emake prepare
+       emake
+}
+
+src_install() {
+       emake icondir="${D}"/usr/share/icons/GartoonRedux install
+       dodoc AUTHORS changelog README TODO
+}
+
+pkg_preinst() {        gnome2_icon_savelist; }
+pkg_postinst() { gnome2_icon_cache_update; }
+pkg_postrm() { gnome2_icon_cache_update; }