blob: ab06769994cf2c5fd6d5647e32ba3898a83519f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/fluxter/fluxter-0.1.0.ebuild,v 1.13 2006/12/07 02:19:20 flameeyes Exp $
DESCRIPTION="workspace pager dockapp, particularly useful with the Fluxbox window manager"
HOMEPAGE="http://www.isomedia.com/homes/stevencooper/"
SRC_URI="http://www.isomedia.com/homes/stevencooper/files/${P}.tar.gz"
IUSE=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 hppa ppc x86 ~x86-fbsd"
DEPEND="virtual/blackbox"
src_compile() {
econf --datadir=/usr/share/commonbox || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc README COPYING AUTHORS ChangeLog NEWS README TODO
}
|