public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-themes/human-icon-theme: ChangeLog human-icon-theme-0.36.ebuild
@ 2012-05-07  8:49 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 2+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-05-07  8:49 UTC (permalink / raw
  To: gentoo-commits

ssuominen    12/05/07 08:49:52

  Modified:             ChangeLog human-icon-theme-0.36.ebuild
  Log:
  Convert from rsvg to rsvg-convert for recent gnome-base/librsvg wrt #414971 by Anton Kochkov
  
  (Portage version: 2.2.0_alpha101/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  x11-themes/human-icon-theme/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/human-icon-theme/ChangeLog?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/human-icon-theme/ChangeLog?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/human-icon-theme/ChangeLog?r1=1.1&r2=1.2

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-themes/human-icon-theme/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog	2 Apr 2010 16:18:59 -0000	1.1
+++ ChangeLog	7 May 2012 08:49:52 -0000	1.2
@@ -1,6 +1,11 @@
 # ChangeLog for x11-themes/human-icon-theme
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-themes/human-icon-theme/ChangeLog,v 1.1 2010/04/02 16:18:59 ssuominen Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-themes/human-icon-theme/ChangeLog,v 1.2 2012/05/07 08:49:52 ssuominen Exp $
+
+  07 May 2012; Samuli Suominen <ssuominen@gentoo.org>
+  human-icon-theme-0.36.ebuild:
+  Convert from rsvg to rsvg-convert for recent gnome-base/librsvg wrt #414971
+  by Anton Kochkov
 
 *human-icon-theme-0.36 (02 Apr 2010)
 



1.2                  x11-themes/human-icon-theme/human-icon-theme-0.36.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/human-icon-theme/human-icon-theme-0.36.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/human-icon-theme/human-icon-theme-0.36.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/human-icon-theme/human-icon-theme-0.36.ebuild?r1=1.1&r2=1.2

Index: human-icon-theme-0.36.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-themes/human-icon-theme/human-icon-theme-0.36.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- human-icon-theme-0.36.ebuild	2 Apr 2010 16:18:59 -0000	1.1
+++ human-icon-theme-0.36.ebuild	7 May 2012 08:49:52 -0000	1.2
@@ -1,8 +1,8 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-themes/human-icon-theme/human-icon-theme-0.36.ebuild,v 1.1 2010/04/02 16:18:59 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-themes/human-icon-theme/human-icon-theme-0.36.ebuild,v 1.2 2012/05/07 08:49:52 ssuominen Exp $
 
-EAPI=3
+EAPI=4
 inherit gnome2-utils
 
 DESCRIPTION="A nice and well polished icon theme"
@@ -15,37 +15,33 @@
 KEYWORDS="~amd64 ~x86"
 IUSE=""
 
+RESTRICT="binchecks strip"
+
 RDEPEND="|| ( x11-themes/tangerine-icon-theme x11-themes/gnome-icon-theme )"
-DEPEND="gnome-base/librsvg
+DEPEND=">=gnome-base/librsvg-2.34
 	>=x11-misc/icon-naming-utils-0.8.90
 	dev-util/intltool
 	sys-devel/gettext"
 
 S=${WORKDIR}/${PN}
 
-RESTRICT="binchecks strip"
+DOCS="AUTHORS"
 
 src_prepare() {
-	sed -i \
-		-e 's:lib/icon-naming-utils/icon:libexec/icon:' \
-		Makefile || die
+	sed -i -e 's:lib/icon-naming-utils/icon:libexec/icon:' Makefile || die
+	sed -i -e '/SVGCONVERT/s:rsvg:&-convert:' svg2png.sh.in || die #414971
 
 	cp "${DISTDIR}"/gentoo-logo.svg scalable/places/start-here.svg || die
 
 	local res
 	for res in 22 32 48; do
-		rsvg -w ${res} -h ${res} scalable/places/start-here.svg \
-			${res}x${res}/places/start-here.png || die
+		rsvg-convert -w ${res} -h ${res} scalable/places/start-here.svg \
+			> ${res}x${res}/places/start-here.png || die
 	done
 }
 
 src_compile() {
-	emake index.theme || die
-}
-
-src_install() {
-	emake DESTDIR="${D}" install || die
-	dodoc AUTHORS
+	emake index.theme
 }
 
 pkg_preinst() { gnome2_icon_savelist; }






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-themes/human-icon-theme: ChangeLog human-icon-theme-0.36.ebuild
@ 2013-02-07 22:57 Ulrich Mueller (ulm)
  0 siblings, 0 replies; 2+ messages in thread
From: Ulrich Mueller (ulm) @ 2013-02-07 22:57 UTC (permalink / raw
  To: gentoo-commits

ulm         13/02/07 22:57:23

  Modified:             ChangeLog human-icon-theme-0.36.ebuild
  Log:
  Move Creative Commons licenses to shorter names.
  
  (Portage version: 2.1.11.50/cvs/Linux x86_64, signed Manifest commit with key E7BE08CA7DC6EA25)

Revision  Changes    Path
1.3                  x11-themes/human-icon-theme/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/human-icon-theme/ChangeLog?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/human-icon-theme/ChangeLog?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/human-icon-theme/ChangeLog?r1=1.2&r2=1.3

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-themes/human-icon-theme/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog	7 May 2012 08:49:52 -0000	1.2
+++ ChangeLog	7 Feb 2013 22:57:23 -0000	1.3
@@ -1,6 +1,9 @@
 # ChangeLog for x11-themes/human-icon-theme
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-themes/human-icon-theme/ChangeLog,v 1.2 2012/05/07 08:49:52 ssuominen Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-themes/human-icon-theme/ChangeLog,v 1.3 2013/02/07 22:57:23 ulm Exp $
+
+  07 Feb 2013; Ulrich Müller <ulm@gentoo.org> human-icon-theme-0.36.ebuild:
+  Move Creative Commons licenses to shorter names.
 
   07 May 2012; Samuli Suominen <ssuominen@gentoo.org>
   human-icon-theme-0.36.ebuild:



1.3                  x11-themes/human-icon-theme/human-icon-theme-0.36.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/human-icon-theme/human-icon-theme-0.36.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/human-icon-theme/human-icon-theme-0.36.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/human-icon-theme/human-icon-theme-0.36.ebuild?r1=1.2&r2=1.3

Index: human-icon-theme-0.36.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-themes/human-icon-theme/human-icon-theme-0.36.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- human-icon-theme-0.36.ebuild	7 May 2012 08:49:52 -0000	1.2
+++ human-icon-theme-0.36.ebuild	7 Feb 2013 22:57:23 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-themes/human-icon-theme/human-icon-theme-0.36.ebuild,v 1.2 2012/05/07 08:49:52 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-themes/human-icon-theme/human-icon-theme-0.36.ebuild,v 1.3 2013/02/07 22:57:23 ulm Exp $
 
 EAPI=4
 inherit gnome2-utils
@@ -10,7 +10,7 @@
 SRC_URI="mirror://ubuntu/pool/universe/h/${PN}/${PN}_${PV}.tar.gz
 	http://www.gentoo.org/images/gentoo-logo.svg"
 
-LICENSE="CCPL-Attribution-ShareAlike-2.5"
+LICENSE="CC-BY-SA-2.5"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-02-07 22:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-07 22:57 [gentoo-commits] gentoo-x86 commit in x11-themes/human-icon-theme: ChangeLog human-icon-theme-0.36.ebuild Ulrich Mueller (ulm)
  -- strict thread matches above, loose matches on Subject: below --
2012-05-07  8:49 Samuli Suominen (ssuominen)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox