blob: 1089de8c4ad7ec8b82cb1d52e7d6097934e3bc85 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/tunesbrowser/tunesbrowser-0.1.6.ebuild,v 1.8 2005/12/06 07:13:25 zaheerm Exp $
IUSE=""
inherit eutils
DESCRIPTION="TunesBrowser is a simple music player, capable of playing music found in iTunes(R) shares"
HOMEPAGE="http://crazney.net/programs/itunes/tunesbrowser.html"
SRC_URI="http://crazney.net/programs/itunes/files/${P}.tar.bz2
http://dev.gentoo.org/~squinky86/files/${PV}-gstreamer.patch.bz2"
SLOT="0"
LICENSE="crazney"
KEYWORDS="amd64 ppc x86"
DEPEND="=media-libs/gstreamer-0.8*
=media-plugins/gst-plugins-mad-0.8*
=media-plugins/gst-plugins-oss-0.8*
media-libs/libopendaap
>=gnome-base/libglade-2.0"
src_unpack() {
unpack ${A}
cd ${P}.tar.bz2
epatch ${DISTDIR}/${PV}-gstreamer.patch.bz2
}
src_install() {
make DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog
}
|