blob: fd68e09ada4064b474b6306a2c28c181df0b7b37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/netwmpager/netwmpager-1.6.ebuild,v 1.3 2005/12/04 06:21:42 halcy0n Exp $
DESCRIPTION="EWMH (NetWM) compatible pager. Works with Openbox and other EWMH
compliant window managers."
SRC_URI="http://onion.dynserv.net/~timo/files/${P}.tar.bz2"
HOMEPAGE="http://onion.dynserv.net/~timo/?page=Projects/netwmpager"
SLOT="0"
IUSE=""
DEPEND="virtual/x11 virtual/xft"
LICENSE="GPL-2"
KEYWORDS="~ppc x86"
src_compile()
{
# econf doesn't work
./configure --prefix=/usr || die
emake || die
}
src_install ()
{
make DESTDIR=${D} install || die
dodoc AUTHORS ChangeLog README THANKS TODO
}
|