summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Boshell <leonardop@gentoo.org>2005-09-19 22:06:33 +0000
committerLeonardo Boshell <leonardop@gentoo.org>2005-09-19 22:06:33 +0000
commitccd520905ff1fc501ae71b8e446739b12bfaf0c2 (patch)
treeabf63c81bd721d40bec2be66f9488b305e0e035d /x11-themes
parentInitial commit. Ebuild by Robin H. Johnson <robbat2@gentoo.org>. A special th... (diff)
downloadhistorical-ccd520905ff1fc501ae71b8e446739b12bfaf0c2.tar.gz
historical-ccd520905ff1fc501ae71b8e446739b12bfaf0c2.tar.bz2
historical-ccd520905ff1fc501ae71b8e446739b12bfaf0c2.zip
New revision, having removed the gtk2 USE flag (bug #106560)
Package-Manager: portage-2.0.52-r1
Diffstat (limited to 'x11-themes')
-rw-r--r--x11-themes/smooth-themes/ChangeLog8
-rw-r--r--x11-themes/smooth-themes/Manifest4
-rw-r--r--x11-themes/smooth-themes/files/digest-smooth-themes-0.5.8-r11
-rw-r--r--x11-themes/smooth-themes/smooth-themes-0.5.8-r1.ebuild36
4 files changed, 47 insertions, 2 deletions
diff --git a/x11-themes/smooth-themes/ChangeLog b/x11-themes/smooth-themes/ChangeLog
index f2ee9d88780c..a1eea265735e 100644
--- a/x11-themes/smooth-themes/ChangeLog
+++ b/x11-themes/smooth-themes/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for x11-themes/smooth-themes
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-themes/smooth-themes/ChangeLog,v 1.3 2005/09/05 16:04:10 leonardop Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-themes/smooth-themes/ChangeLog,v 1.4 2005/09/19 22:06:33 leonardop Exp $
+
+*smooth-themes-0.5.8-r1 (19 Sep 2005)
+
+ 19 Sep 2005; Leonardo Boshell <leonardop@gentoo.org>
+ +smooth-themes-0.5.8-r1.ebuild:
+ Removed the gtk2 USE flag (bug #106560).
05 Sep 2005; Leonardo Boshell <leonardop@gentoo.org>
smooth-themes-0.5.8.ebuild:
diff --git a/x11-themes/smooth-themes/Manifest b/x11-themes/smooth-themes/Manifest
index 3bb600c6b377..ed1f72d29e05 100644
--- a/x11-themes/smooth-themes/Manifest
+++ b/x11-themes/smooth-themes/Manifest
@@ -1,5 +1,7 @@
MD5 a50d6e165e07ea157dfe22ceef559433 metadata.xml 580
-MD5 34d70496681bae3c0b50d361bc1ac61d ChangeLog 609
+MD5 9785cc635946f32ff04ff73cb5399edf ChangeLog 781
MD5 94f0eabae2bba9192de807a9f9a4b724 smooth-themes-0.5.8.ebuild 1250
+MD5 cdb609b8bdc426b5445dce05e33d5276 smooth-themes-0.5.8-r1.ebuild 934
MD5 49c17e757d5c60cc925dda14c37b5314 files/digest-smooth-themes-0.5.8 71
MD5 e00695d75397a040b1e3fe3038b8b0ce files/smooth-themes-0.5.8-remove_checks.patch 2016
+MD5 49c17e757d5c60cc925dda14c37b5314 files/digest-smooth-themes-0.5.8-r1 71
diff --git a/x11-themes/smooth-themes/files/digest-smooth-themes-0.5.8-r1 b/x11-themes/smooth-themes/files/digest-smooth-themes-0.5.8-r1
new file mode 100644
index 000000000000..860eb87e4a03
--- /dev/null
+++ b/x11-themes/smooth-themes/files/digest-smooth-themes-0.5.8-r1
@@ -0,0 +1 @@
+MD5 a46c592261c4d371498d644eece6493e smooth-themes-0.5.8.tar.gz 117158
diff --git a/x11-themes/smooth-themes/smooth-themes-0.5.8-r1.ebuild b/x11-themes/smooth-themes/smooth-themes-0.5.8-r1.ebuild
new file mode 100644
index 000000000000..cc00caf091c3
--- /dev/null
+++ b/x11-themes/smooth-themes/smooth-themes-0.5.8-r1.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-themes/smooth-themes/smooth-themes-0.5.8-r1.ebuild,v 1.1 2005/09/19 22:06:33 leonardop Exp $
+
+inherit eutils
+
+DESCRIPTION="A clean set of GTK+ themes based on the Smooth engine"
+HOMEPAGE="http://sourceforge.net/projects/smooth-engine/"
+SRC_URI="mirror://sourceforge/smooth-engine/${P}.tar.gz"
+
+KEYWORDS="~ppc ~x86"
+LICENSE="LGPL-2.1"
+SLOT="0"
+IUSE=""
+
+DEPEND=""
+RDEPEND=">=x11-themes/gtk-engines-2"
+
+src_unpack() {
+ unpack "${A}"
+ cd "${S}"
+
+ # Remove unnecessary checks in the configure script
+ epatch ${FILESDIR}/${P}-remove_checks.patch
+
+ export WANT_AUTOMAKE=1.8
+ aclocal || die "aclocal failed"
+ autoconf || die "autoconf failed"
+ automake || die "automake failed"
+}
+
+src_install() {
+ make DESTDIR="${D}" install || die "Installation failed"
+
+ dodoc AUTHORS ChangeLog NEWS README
+}