blob: d80c535761672b1316afaf72242fc3cb9149cde2 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/streamtuner/streamtuner-0.9.1.ebuild,v 1.6 2003/11/28 10:39:25 aliz Exp $
DESCRIPTION="Stream directory browser for browsing internetradio streams"
SRC_URI="mirror://sourceforge/streamtuner/${P}.tar.gz"
HOMEPAGE="http://www.nongnu.org/streamtuner/"
KEYWORDS="x86"
SLOT="0"
LICENSE="as-is"
DEPEND=">=x11-libs/gtk+-2.0.0
>=net-ftp/curl-7.7.0"
src_compile() {
econf || die "./configure failed"
emake || die
}
src_install () {
make DESTDIR=${D} \
sysconfdir=${D}/etc \
install || die
dodoc ChangeLog NEWS LICENCE INSTALL TODO
}
|