diff options
author | Karol Wojtaszek <sekretarz@gentoo.org> | 2005-06-08 20:00:44 +0000 |
---|---|---|
committer | Karol Wojtaszek <sekretarz@gentoo.org> | 2005-06-08 20:00:44 +0000 |
commit | 6402ecae1d3474b1221a20a3f16f8c6fef17b605 (patch) | |
tree | fb5daeedc768b6be1b2790e57c14df74b48fec05 /x11-themes/gtk-engines-smooth | |
parent | Bug #74322. Based on initial submission by Andre Kloth <bugs-gentoo@blubbmon.... (diff) | |
download | gentoo-2-6402ecae1d3474b1221a20a3f16f8c6fef17b605.tar.gz gentoo-2-6402ecae1d3474b1221a20a3f16f8c6fef17b605.tar.bz2 gentoo-2-6402ecae1d3474b1221a20a3f16f8c6fef17b605.zip |
Version bump, bug #76817. Added missing depend on media-libs/gdk-pixbuf, bug #48036. Block x11-themes/gnome-themes, which already contains gtk-engines-smooth, bug #74792
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'x11-themes/gtk-engines-smooth')
4 files changed, 53 insertions, 4 deletions
diff --git a/x11-themes/gtk-engines-smooth/ChangeLog b/x11-themes/gtk-engines-smooth/ChangeLog index c1eccf9c4b9d..40c6bf57972e 100644 --- a/x11-themes/gtk-engines-smooth/ChangeLog +++ b/x11-themes/gtk-engines-smooth/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for x11-themes/gtk-engines-smooth -# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-smooth/ChangeLog,v 1.11 2004/09/15 13:08:34 gustavoz Exp $ +# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-smooth/ChangeLog,v 1.12 2005/06/08 20:00:43 sekretarz Exp $ + +*gtk-engines-smooth-0.6.0.1 (08 Jun 2005) + + 08 Jun 2005; <sekretarz@gentoo.org> gtk-engines-smooth-0.5.8.ebuild, + +gtk-engines-smooth-0.6.0.1.ebuild: + Version bump, bug #76817. Added missing depend on media-libs/gdk-pixbuf, bug + #48036. Block x11-themes/gnome-themes, which already contains + gtk-engines-smooth, bug #74792 15 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org> gtk-engines-smooth-0.5.8.ebuild: diff --git a/x11-themes/gtk-engines-smooth/files/digest-gtk-engines-smooth-0.6.0.1 b/x11-themes/gtk-engines-smooth/files/digest-gtk-engines-smooth-0.6.0.1 new file mode 100644 index 000000000000..c581cb34f33f --- /dev/null +++ b/x11-themes/gtk-engines-smooth/files/digest-gtk-engines-smooth-0.6.0.1 @@ -0,0 +1 @@ +MD5 a2231118c8187649d1e634fdfe6f36de gtk-smooth-engine-0.6.0.1.tar.gz 466428 diff --git a/x11-themes/gtk-engines-smooth/gtk-engines-smooth-0.5.8.ebuild b/x11-themes/gtk-engines-smooth/gtk-engines-smooth-0.5.8.ebuild index eccf53872589..5cb7ef6ea9aa 100644 --- a/x11-themes/gtk-engines-smooth/gtk-engines-smooth-0.5.8.ebuild +++ b/x11-themes/gtk-engines-smooth/gtk-engines-smooth-0.5.8.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-smooth/gtk-engines-smooth-0.5.8.ebuild,v 1.4 2004/09/15 13:08:34 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-smooth/gtk-engines-smooth-0.5.8.ebuild,v 1.5 2005/06/08 20:00:43 sekretarz Exp $ inherit gtk-engines2 @@ -16,6 +16,10 @@ SLOT="2" S=${WORKDIR}/${MY_P} +DEPEND="${DEPEND} + !x11-themes/gnome-themes + gtk? (media-libs/gdk-pixbuf)" + src_compile() { local myconf diff --git a/x11-themes/gtk-engines-smooth/gtk-engines-smooth-0.6.0.1.ebuild b/x11-themes/gtk-engines-smooth/gtk-engines-smooth-0.6.0.1.ebuild new file mode 100644 index 000000000000..83be806617d6 --- /dev/null +++ b/x11-themes/gtk-engines-smooth/gtk-engines-smooth-0.6.0.1.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/gtk-engines-smooth/gtk-engines-smooth-0.6.0.1.ebuild,v 1.1 2005/06/08 20:00:43 sekretarz Exp $ + +inherit gtk-engines2 + +MY_P="gtk-smooth-engine-${PV}" + +IUSE="" +DESCRIPTION="GTK+1 and GTK+2 Smooth Theme Engine" +HOMEPAGE="http://sourceforge.net/projects/smooth-engine/" +SRC_URI="mirror://sourceforge/smooth-engine/${MY_P}.tar.gz" +KEYWORDS="~x86 ~alpha ~ppc ~amd64 sparc" +LICENSE="GPL-2" +SLOT="2" + +S=${WORKDIR}/${MY_P} + +DEPEND="${DEPEND} + !x11-themes/gnome-themes + gtk? (media-libs/gdk-pixbuf)" + +src_compile() { + local myconf + + [ -n "${HAS_GTK1}" ] \ + && myconf="${myconf} --enable-gtk-1" \ + || myconf="${myconf} --disable-gtk-1" + + [ -n "${HAS_GTK2}" ] \ + && myconf="${myconf} --enable-gtk-2" \ + || myconf="${myconf} --disable-gtk-2" + + gtk-engines2_src_compile ${myconf} +} + |