blob: 128f8f1bd74b830e9e25e5fc8c57f1083b0d0aab (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/toolbox/toolbox-0.6.0-r1.ebuild,v 1.15 2003/02/13 17:18:08 vapier Exp $
S=${WORKDIR}/${P}
DESCRIPTION="blackbox style file configuration utility"
SRC_URI="http://movingparts.windsofstorm.net/bbkeys/${P}.tar.gz"
HOMEPAGE="http://movingparts.windsofstorm.net/code.shtml#toolbox"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc "
DEPEND=">=x11-wm/blackbox-0.61
=x11-libs/qt-2.3*"
src_compile() {
QTDIR=/usr/qt/2 ./configure --prefix=/usr --host=${CHOST} || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README TODO
}
|