blob: 5edd3cc15db5285182f36f435c775c2b9d7c9273 (
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
|
# Copyright 1999-2004 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.1 2004/09/04 19:53:31 squinky86 Exp $
inherit eutils
SLOT="0"
LICENSE="crazney"
KEYWORDS="~x86"
DESCRIPTION="TunesBrowser is a simple musi player, capable of playing music found in iTunes(R) shares"
SRC_URI="http://crazney.net/programs/itunes/files/${P}.tar.bz2
http://dev.gentoo.org/~squinky86/files/${PV}-gstreamer.patch.bz2"
HOMEPAGE="http://crazney.net/programs/itunes/tunesbrowser.html"
IUSE=""
DEPEND=">=media-libs/gstreamer-0.8
>=media-plugins/gst-plugins-mad-0.8
>=media-plugins/gst-plugins-oss-0.8
media-libs/libopendaap"
src_unpack() {
unpack ${A}
cd ${P}.tar.bz2
epatch ${DISTDIR}/${PV}-gstreamer.patch.bz2
}
src_compile() {
econf || die
emake || die
}
src_install() {
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README
einstall || die
}
|