blob: 908e38c94ca953507c806e0a80a9d007ee9812e9 (
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
30
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/x11-misc/fluxter/fluxter-0.1.0.ebuild,v 1.4 2003/06/12 22:20:46 msterret Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Fluxter is a workspace pager dockapp, particularly useful with the Fluxbox window manager."
SRC_URI="http://www.isomedia.com/homes/stevencooper/files/${P}.tar.gz"
HOMEPAGE="http://www.isomedia.com/homes/stevencooper/"
IUSE=""
DEPEND="virtual/blackbox"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
myconf="--datadir=/usr/share/commonbox"
src_compile() {
econf ${myconf} || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc README COPYING AUTHORS ChangeLog NEWS README TODO
}
|