diff options
author | Leonardo Boshell <leonardop@gentoo.org> | 2005-09-19 21:45:50 +0000 |
---|---|---|
committer | Leonardo Boshell <leonardop@gentoo.org> | 2005-09-19 21:45:50 +0000 |
commit | 33d1b968f107178fee7450955542fa04052c4711 (patch) | |
tree | 4c715b9352fe4ce6722b03684a5e4eee6c710d4f /x11-themes | |
parent | Broken on amd64 as far as I can tell - pointer warning too. Marked -amd64. (diff) | |
download | gentoo-2-33d1b968f107178fee7450955542fa04052c4711.tar.gz gentoo-2-33d1b968f107178fee7450955542fa04052c4711.tar.bz2 gentoo-2-33d1b968f107178fee7450955542fa04052c4711.zip |
New revision, without the gtk2 USE flag (bug #106560)
(Portage version: 2.0.52-r1)
Diffstat (limited to 'x11-themes')
4 files changed, 58 insertions, 2 deletions
diff --git a/x11-themes/gtk-engines-qtpixmap/ChangeLog b/x11-themes/gtk-engines-qtpixmap/ChangeLog index 277cb18b01d7..b04061a44665 100644 --- a/x11-themes/gtk-engines-qtpixmap/ChangeLog +++ b/x11-themes/gtk-engines-qtpixmap/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-themes/gtk-engines-qtpixmap # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-qtpixmap/ChangeLog,v 1.2 2005/08/26 13:54:59 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-qtpixmap/ChangeLog,v 1.3 2005/09/19 21:45:50 leonardop Exp $ + +*gtk-engines-qtpixmap-0.28-r2 (19 Sep 2005) + + 19 Sep 2005; Leonardo Boshell <leonardop@gentoo.org> + +gtk-engines-qtpixmap-0.28-r2.ebuild: + Removing the gtk2 USE flag (bug #106560). 26 Aug 2005; Aron Griffis <agriffis@gentoo.org> gtk-engines-qtpixmap-0.28-r1.ebuild: diff --git a/x11-themes/gtk-engines-qtpixmap/Manifest b/x11-themes/gtk-engines-qtpixmap/Manifest index 594563b49550..1302b9237087 100644 --- a/x11-themes/gtk-engines-qtpixmap/Manifest +++ b/x11-themes/gtk-engines-qtpixmap/Manifest @@ -1,5 +1,7 @@ -MD5 03ad2e6c4ab41244af1015a8bbb0b39f metadata.xml 158 MD5 d3e36250ff403234357a07cff232a041 ChangeLog 2290 +MD5 03ad2e6c4ab41244af1015a8bbb0b39f metadata.xml 158 MD5 90e3e79651e17697dd30c4b50d89432c gtk-engines-qtpixmap-0.28-r1.ebuild 1318 +MD5 1e85c36375aae572a3364980ea4503ed gtk-engines-qtpixmap-0.28-r2.ebuild 1160 MD5 321ec9a96a2261d0c4243871045afa21 files/gtk-engines-qtpixmap-0.28-gtk_switches.patch 3612 MD5 a97c99ae5788b9fcb012c99b38f5e803 files/digest-gtk-engines-qtpixmap-0.28-r1 65 +MD5 a97c99ae5788b9fcb012c99b38f5e803 files/digest-gtk-engines-qtpixmap-0.28-r2 65 diff --git a/x11-themes/gtk-engines-qtpixmap/files/digest-gtk-engines-qtpixmap-0.28-r2 b/x11-themes/gtk-engines-qtpixmap/files/digest-gtk-engines-qtpixmap-0.28-r2 new file mode 100644 index 000000000000..0d9cb00235be --- /dev/null +++ b/x11-themes/gtk-engines-qtpixmap/files/digest-gtk-engines-qtpixmap-0.28-r2 @@ -0,0 +1 @@ +MD5 b68557f815af944a177f25307438727a QtPixmap-0.28.tar.gz 429698 diff --git a/x11-themes/gtk-engines-qtpixmap/gtk-engines-qtpixmap-0.28-r2.ebuild b/x11-themes/gtk-engines-qtpixmap/gtk-engines-qtpixmap-0.28-r2.ebuild new file mode 100644 index 000000000000..8320131c7c0f --- /dev/null +++ b/x11-themes/gtk-engines-qtpixmap/gtk-engines-qtpixmap-0.28-r2.ebuild @@ -0,0 +1,47 @@ +# 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-qtpixmap/gtk-engines-qtpixmap-0.28-r2.ebuild,v 1.1 2005/09/19 21:45:50 leonardop Exp $ + +inherit eutils + +MY_P="QtPixmap-${PV}" + +DESCRIPTION="A modified version of the original GTK pixmap engine which follows the KDE color scheme" +HOMEPAGE="http://www.kde-look.org/content/show.php?content=7043" +SRC_URI="http://www.cpdrummond.freeuk.com/${MY_P}.tar.gz" +KEYWORDS="~alpha ~amd64 ~ia64 ~mips ~ppc ~sparc ~x86" +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +RDEPEND=">=x11-libs/gtk+-2" + +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +S=${WORKDIR}/${MY_P} + + +src_unpack() { + unpack "${A}" + cd "${S}" + + # Add switches to enable/disable gtk1 and gtk2 engines in the configure + # script. + epatch ${FILESDIR}/${P}-gtk_switches.patch + + autoconf || die "autoconf failed" +} + +src_compile() { + local myconf="--enable-gtk2 --disable-gtk1" + + econf $myconf || die "Configuration failed" + emake || die "Compilation failed" +} + +src_install() { + make DESTDIR="${D}" install || die "Installation failed" + + dodoc AUTHORS ChangeLog README +} |