diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-02-06 20:14:38 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-02-06 20:14:38 +0000 |
commit | fe4a6da6d4886f8f97314cb46dbb6aa885cb8178 (patch) | |
tree | e349f7dfeeacc4bcb3da64d941ec20bf6e55288f | |
parent | Fix building with -Wl,--as-needed wrt #248573 by Kacper Kowalik. (diff) | |
download | historical-fe4a6da6d4886f8f97314cb46dbb6aa885cb8178.tar.gz historical-fe4a6da6d4886f8f97314cb46dbb6aa885cb8178.tar.bz2 historical-fe4a6da6d4886f8f97314cb46dbb6aa885cb8178.zip |
Missing USE depend wrt #248571 by Kacper Kowalik.
Package-Manager: portage-2.2_rc62/cvs/Linux x86_64
-rw-r--r-- | x11-misc/ipager/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/ipager/ipager-1.1.0.ebuild | 21 |
2 files changed, 15 insertions, 13 deletions
diff --git a/x11-misc/ipager/ChangeLog b/x11-misc/ipager/ChangeLog index 0570c97623d2..3d503ba4b5df 100644 --- a/x11-misc/ipager/ChangeLog +++ b/x11-misc/ipager/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-misc/ipager -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/ipager/ChangeLog,v 1.2 2008/09/09 03:48:26 robbat2 Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/ipager/ChangeLog,v 1.3 2010/02/06 20:14:38 ssuominen Exp $ + + 06 Feb 2010; Samuli Suominen <ssuominen@gentoo.org> ipager-1.1.0.ebuild: + Missing USE depend wrt #248571 by Kacper Kowalik. 09 Sep 2008; Robin H. Johnson <robbat2@gentoo.org> +files/ipager-1.1.0-gcc43.patch, +files/ipager-1.1.0-scons_flags.patch, diff --git a/x11-misc/ipager/ipager-1.1.0.ebuild b/x11-misc/ipager/ipager-1.1.0.ebuild index 2b693febc367..a7f4f2daf717 100644 --- a/x11-misc/ipager/ipager-1.1.0.ebuild +++ b/x11-misc/ipager/ipager-1.1.0.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/ipager/ipager-1.1.0.ebuild,v 1.3 2008/09/09 03:58:16 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/ipager/ipager-1.1.0.ebuild,v 1.4 2010/02/06 20:14:38 ssuominen Exp $ +EAPI=2 inherit eutils DESCRIPTION="A themable desktop pager for fluxbox and other window managers" @@ -10,18 +11,16 @@ SRC_URI="http://www.useperl.ru/ipager/src/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~x86 ~amd64" +KEYWORDS="~amd64 ~x86" IUSE="xinerama" -RDEPEND="media-libs/imlib2 - x11-libs/libXmu - xinerama? ( x11-libs/libXinerama )" -DEPEND="dev-util/scons - ${RDEPEND}" +RDEPEND="media-libs/imlib2[X] + x11-libs/libXmu + xinerama? ( x11-libs/libXinerama )" +DEPEND="${RDEPEND} + dev-util/scons" -src_unpack() { - unpack ${A} - cd "${S}" +src_prepare() { epatch "${FILESDIR}"/${P}-scons_imlib2.patch epatch "${FILESDIR}"/${P}-gcc43.patch epatch "${FILESDIR}"/${P}-scons_flags.patch |