summaryrefslogtreecommitdiff
blob: 745d5f7a663e2a4d19da7f1168ca0e3a47b169a4 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/streamtuner/streamtuner-0.99.99-r2.ebuild,v 1.5 2008/01/25 16:11:18 drac Exp $

GCONF_DEBUG="no"

inherit gnome2 eutils

DESCRIPTION="Stream directory browser for browsing internet radio streams"
HOMEPAGE="http://www.nongnu.org/streamtuner"
SRC_URI="http://savannah.nongnu.org/download/${PN}/${P}.tar.gz
	 http://savannah.nongnu.org/download/${PN}/${P}-pygtk-2.6.diff"

LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ~ppc ~sparc x86"
IUSE="python shout xiph"

RDEPEND=">=x11-libs/gtk+-2.4
	net-misc/curl
	app-text/scrollkeeper
	xiph? ( dev-libs/libxml2 )
	>=media-libs/taglib-1.2
	python? ( dev-python/pygtk )
	x11-misc/xdg-utils"
DEPEND="${RDEPEND}
	dev-util/pkgconfig
	!media-plugins/streamtuner-xiph
	!media-plugins/streamtuner-local
	!media-plugins/streamtuner-live365
	!media-plugins/streamtuner-python"

DOCS="AUTHORS NEWS README TODO"

src_unpack() {
	unpack ${A}
	cd "${S}"
	epatch "${FILESDIR}"/${P}-gentoo.patch
	epatch "${DISTDIR}"/${P}-pygtk-2.6.diff
}

src_compile() {
	# live365 causes parse errors at connect time.
	econf --disable-live365 $(use_enable python) \
		$(use_enable shout shoutcast) $(use_enable xiph)
	emake || die "emake failed."
}