| 1 |
# Copyright 1999-2012 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/x11-misc/netwmpager/netwmpager-1.6.ebuild,v 1.8 2010/06/01 19:26:51 xarthisius Exp $ |
| 4 |
|
| 5 |
DESCRIPTION="EWMH (NetWM) compatible pager. Works with Openbox and other EWMH |
| 6 |
compliant window managers." |
| 7 |
#HOMEPAGE="http://onion.dynserv.net/~timo/?page=Projects/netwmpager" |
| 8 |
HOMEPAGE="http://packages.gentoo.org/package/x11-misc/netwmpager" # bug 237240 |
| 9 |
SRC_URI="http://onion.dynserv.net/~timo/files/${P}.tar.bz2" |
| 10 |
|
| 11 |
LICENSE="GPL-2" |
| 12 |
SLOT="0" |
| 13 |
KEYWORDS="~ppc x86" |
| 14 |
IUSE="" |
| 15 |
|
| 16 |
RDEPEND="x11-libs/libX11 |
| 17 |
x11-libs/libXrender |
| 18 |
x11-libs/libXft |
| 19 |
x11-libs/libXdmcp |
| 20 |
x11-libs/libXau" |
| 21 |
DEPEND="${RDEPEND} |
| 22 |
virtual/pkgconfig |
| 23 |
x11-proto/xproto" |
| 24 |
|
| 25 |
src_compile() |
| 26 |
{ |
| 27 |
# econf doesn't work |
| 28 |
./configure --prefix=/usr || die "configure failed" |
| 29 |
emake || die "emake failed" |
| 30 |
} |
| 31 |
|
| 32 |
src_install () |
| 33 |
{ |
| 34 |
make DESTDIR="${D}" install || die "make install failed" |
| 35 |
dodoc AUTHORS ChangeLog README THANKS TODO |
| 36 |
} |