summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Dartiguelongue <eva@gentoo.org>2008-03-29 20:50:27 +0000
committerGilles Dartiguelongue <eva@gentoo.org>2008-03-29 20:50:27 +0000
commit3759f9f4f8a795bfe3617c804e1307c0e8ec52f8 (patch)
tree39eb12b88a56ac5637f546ce50c5eaa37d127ec5 /x11-themes/gtk-chtheme
parentVersion bump to build with source code #214216 by Robert Buchholz. (diff)
downloadgentoo-2-3759f9f4f8a795bfe3617c804e1307c0e8ec52f8.tar.gz
gentoo-2-3759f9f4f8a795bfe3617c804e1307c0e8ec52f8.tar.bz2
gentoo-2-3759f9f4f8a795bfe3617c804e1307c0e8ec52f8.zip
fix some ebuild issues, bug #215121
(Portage version: 2.1.4.4)
Diffstat (limited to 'x11-themes/gtk-chtheme')
-rw-r--r--x11-themes/gtk-chtheme/ChangeLog10
-rw-r--r--x11-themes/gtk-chtheme/gtk-chtheme-0.3.1-r1.ebuild33
2 files changed, 41 insertions, 2 deletions
diff --git a/x11-themes/gtk-chtheme/ChangeLog b/x11-themes/gtk-chtheme/ChangeLog
index b7e8bc98cce0..1aa0eff4bcb1 100644
--- a/x11-themes/gtk-chtheme/ChangeLog
+++ b/x11-themes/gtk-chtheme/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for x11-themes/gtk-chtheme
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-chtheme/ChangeLog,v 1.11 2007/11/28 09:34:08 corsair Exp $
+# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-chtheme/ChangeLog,v 1.12 2008/03/29 20:50:27 eva Exp $
+
+*gtk-chtheme-0.3.1-r1 (29 Mar 2008)
+
+ 29 Mar 2008; Gilles Dartiguelongue <eva@gentoo.org>
+ +gtk-chtheme-0.3.1-r1.ebuild:
+ fix some ebuild issues, bug #215121
28 Nov 2007; Markus Rothe <corsair@gentoo.org> gtk-chtheme-0.3.1.ebuild:
Stable on amd64
diff --git a/x11-themes/gtk-chtheme/gtk-chtheme-0.3.1-r1.ebuild b/x11-themes/gtk-chtheme/gtk-chtheme-0.3.1-r1.ebuild
new file mode 100644
index 000000000000..3560ef484b02
--- /dev/null
+++ b/x11-themes/gtk-chtheme/gtk-chtheme-0.3.1-r1.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-chtheme/gtk-chtheme-0.3.1-r1.ebuild,v 1.1 2008/03/29 20:50:27 eva Exp $
+
+inherit toolchain-funcs
+
+DESCRIPTION="GTK-2.0 Theme Switcher"
+HOMEPAGE="http://plasmasturm.org/programs/gtk-chtheme/"
+SRC_URI="http://plasmasturm.org/programs/gtk-chtheme/${P}.tar.bz2"
+
+IUSE=""
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+LICENSE="GPL-2"
+
+RDEPEND=">=x11-libs/gtk+-2"
+DEPEND="${RDEPEND}
+ dev-util/pkgconfig"
+
+src_unpack() {
+ unpack ${A}
+
+ # QA: stop Makefile from stripping the binaries
+ sed -i -e "s:strip:true:" "${S}"/Makefile || die "sed failed."
+}
+
+src_compile() {
+ emake CC="$(tc-getCC)" || die
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die
+}