blob: 9d2d706a18e960f39d32349e1bb0447554602757 (
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 2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author: Seemant Kulleen <seemant@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/net-p2p/agqt/agqt-0.10.ebuild,v 1.3 2002/06/25 11:18:21 bangert Exp $
S=${WORKDIR}/${PN}
DESCRIPTION="6's spiffy AudioGalaxy Query Tool"
SRC_URI="mirror://sourceforge/agqt/${P}.tar.bz2"
HOMEPAGE="http://agqt.sourceforge.net"
SLOT="0"
DEPEND="net-p2p/openag
tcltk? ( dev-lang/tcl
dev-lang/tk )"
src_compile() {
make clean
make
}
src_install() {
dobin ag am
use tcltk && dobin agqt.tcl
dodoc README agrc.sample
}
|