From a4a7fd9fc06b9354c110cd36b1ca35f1b9dc032d Mon Sep 17 00:00:00 2001 From: Jeroen Roovers Date: Sun, 14 Feb 2016 10:27:03 +0100 Subject: [PATCH] =?utf8?q?x11-themes/gartoon-redux:=20rsvg=20->=20rsvg-con?= =?utf8?q?vert=20(bug=20#574440=20by=20Toralf=20F=C3=B6rster).?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- .../gartoon-redux-1.10-rsvg-convert.patch | 11 +++++ .../gartoon-redux-1.10-r1.ebuild | 45 +++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 x11-themes/gartoon-redux/files/gartoon-redux-1.10-rsvg-convert.patch create mode 100644 x11-themes/gartoon-redux/gartoon-redux-1.10-r1.ebuild 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 index 000000000000..411b4537df49 --- /dev/null +++ b/x11-themes/gartoon-redux/files/gartoon-redux-1.10-rsvg-convert.patch @@ -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 index 000000000000..ea8a1092bae5 --- /dev/null +++ b/x11-themes/gartoon-redux/gartoon-redux-1.10-r1.ebuild @@ -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; } -- 2.26.2