diff options
author | 2008-09-09 02:26:50 +0000 | |
---|---|---|
committer | 2008-09-09 02:26:50 +0000 | |
commit | 6e4a3b5fc4deba1a36e62821acee0055042fb890 (patch) | |
tree | 17ff8a31ca7070f9d3cd395bca99776e208f285a /x11-misc/ipager/ipager-1.1.0.ebuild | |
parent | Remove useless GNOME masking. package.mask is not a veil you cast over your p... (diff) | |
download | gentoo-2-6e4a3b5fc4deba1a36e62821acee0055042fb890.tar.gz gentoo-2-6e4a3b5fc4deba1a36e62821acee0055042fb890.tar.bz2 gentoo-2-6e4a3b5fc4deba1a36e62821acee0055042fb890.zip |
New package: ipager is a themeable desktop pager for fluxbox and other window managers.
(Portage version: 2.2_rc8/cvs/Linux 2.6.23-gentoo-r5 i686)
Diffstat (limited to 'x11-misc/ipager/ipager-1.1.0.ebuild')
-rw-r--r-- | x11-misc/ipager/ipager-1.1.0.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/x11-misc/ipager/ipager-1.1.0.ebuild b/x11-misc/ipager/ipager-1.1.0.ebuild new file mode 100644 index 000000000000..f45f6c4d8e68 --- /dev/null +++ b/x11-misc/ipager/ipager-1.1.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2008 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.1 2008/09/09 02:26:49 lack Exp $ + +inherit eutils + +DESCRIPTION="A themable desktop pager for fluxbox and other window managers" +HOMEPAGE="http://www.useperl.ru/ipager/index.en.html" +SRC_URI="http://www.useperl.ru/ipager/src/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="xinerama" + +RDEPEND="media-libs/imlib2 + xinerama? ( x11-libs/libXinerama )" +DEPEND="dev-util/scons + ${RDEPEND}" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${P}-scons_imlib2.patch" +} + +src_compile() { + CONFIG_OPTS="xinerama=false" + use xinerama && CONFIG_OPTS="xinerama=true" + scons PREFIX="/usr" ${CONFIG_OPTS} || die "scons build failed" +} + +src_install() { + scons DESTDIR="${D}" install || die "scons install failed" +} |