summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Ruppert <idl0r@gentoo.org>2009-07-02 20:49:32 +0000
committerChristian Ruppert <idl0r@gentoo.org>2009-07-02 20:49:32 +0000
commit1a10512f219f5a168963fcb0b14a52d0c409bb6c (patch)
treed4b5ecc67ebbc5649ba17ad4e6567076c472409c /x11-misc/hsetroot
parentRestore auth_conf.sub support, instead of blindly nuking it, just find that's... (diff)
downloadgentoo-2-1a10512f219f5a168963fcb0b14a52d0c409bb6c.tar.gz
gentoo-2-1a10512f219f5a168963fcb0b14a52d0c409bb6c.tar.bz2
gentoo-2-1a10512f219f5a168963fcb0b14a52d0c409bb6c.zip
Fixed dependencies, bug 248569.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/hsetroot')
-rw-r--r--x11-misc/hsetroot/ChangeLog5
-rw-r--r--x11-misc/hsetroot/hsetroot-1.0.2.ebuild20
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
}