blob: 0d0b616409e179afa29df39370b93a92dfcc18ac (
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 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/streamtuner-local/streamtuner-local-0.4.0.ebuild,v 1.8 2004/08/27 18:11:15 squinky86 Exp $
inherit eutils
DESCRIPTION="A plugin for Streamtuner to browse and play local files."
SRC_URI="http://savannah.nongnu.org/download/streamtuner/${P}.tar.gz"
HOMEPAGE="http://www.nongnu.org/streamtuner/"
IUSE="oggvorbis"
SLOT="0"
KEYWORDS="x86 ~ppc"
LICENSE="BSD"
DEPEND=">=net-misc/streamtuner-0.12.0
>=media-libs/libid3tag-0.15
oggvorbis? ( >=media-libs/libvorbis-1.0 >=media-libs/libogg-1.1 )"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PV}-gcc34.patch
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS COPYING ChangeLog NEWS README INSTALL
}
|