blob: 2f9c0c64944419f3637070a4c0f0d03e22c48aa3 (
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-2005 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.12 2005/05/24 19:33:44 blubb 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="x86 ppc hppa ~amd64"
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
}
|