diff options
-rw-r--r-- | x11-misc/hsetroot/ChangeLog | 5 | ||||
-rw-r--r-- | x11-misc/hsetroot/hsetroot-1.0.2.ebuild | 20 |
2 files changed, 17 insertions, 8 deletions
diff --git a/x11-misc/hsetroot/ChangeLog b/x11-misc/hsetroot/ChangeLog index b7b417cd93d8..8fff256d940c 100644 --- a/x11-misc/hsetroot/ChangeLog +++ b/x11-misc/hsetroot/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-misc/hsetroot # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/hsetroot/ChangeLog,v 1.9 2009/05/17 17:50:54 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/hsetroot/ChangeLog,v 1.10 2009/07/02 20:49:32 idl0r Exp $ + + 02 Jul 2009; Christian Ruppert <idl0r@gentoo.org> hsetroot-1.0.2.ebuild: + Fixed dependencies, bug 248569. 17 May 2009; nixnut <nixnut@gentoo.org> hsetroot-1.0.2.ebuild: ppc stable #266096 diff --git a/x11-misc/hsetroot/hsetroot-1.0.2.ebuild b/x11-misc/hsetroot/hsetroot-1.0.2.ebuild index 630ba5ece975..79d5044335a5 100644 --- a/x11-misc/hsetroot/hsetroot-1.0.2.ebuild +++ b/x11-misc/hsetroot/hsetroot-1.0.2.ebuild @@ -1,6 +1,10 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/hsetroot/hsetroot-1.0.2.ebuild,v 1.11 2009/05/17 17:50:54 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/hsetroot/hsetroot-1.0.2.ebuild,v 1.12 2009/07/02 20:49:32 idl0r Exp $ + +EAPI="2" + +inherit autotools DESCRIPTION="Tool which allows you to compose wallpapers ('root pixmaps') for X" HOMEPAGE="http://thegraveyard.org/hsetroot.php" @@ -12,14 +16,16 @@ KEYWORDS="amd64 ppc x86" IUSE="" RDEPEND="x11-libs/libX11 - x11-libs/libXext - >=media-libs/imlib2-1.0.6.2003" + >=media-libs/imlib2-1.0.6.2003[X]" DEPEND="${RDEPEND} - x11-proto/xproto - x11-libs/libX11 - x11-libs/libXt" + x11-proto/xproto" + +src_prepare() { + # The pre-generated configure script contains unneeded deps + eautoreconf +} src_install() { emake install DESTDIR="${D}" || die - dodoc AUTHORS ChangeLog NEWS README + dodoc AUTHORS ChangeLog NEWS README || die } |