blob: 4b12283eaffe9c5f28bb028fbda99a399163babd (
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
48
49
50
51
52
53
54
55
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/tunepimp/tunepimp-0.3.0.ebuild,v 1.22 2005/06/08 13:22:03 greg_g Exp $
inherit eutils distutils perl-module
DESCRIPTION="Client library to create MusicBrainz enabled tagging applications"
HOMEPAGE="http://www.musicbrainz.org/products/tunepimp"
SRC_URI="http://ftp.musicbrainz.org/pub/musicbrainz/lib${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~mips"
IUSE="flac mad vorbis readline python perl"
RDEPEND="dev-libs/expat"
DEPEND="${RDEPEND}
flac? ( media-libs/flac )
vorbis? ( media-libs/libvorbis )
readline? ( sys-libs/readline )
mad? ( media-libs/libmad )
>=media-libs/musicbrainz-2.1.0
dev-util/pkgconfig
!media-sound/trm"
S=${WORKDIR}/lib${P}
src_compile() {
epatch ${FILESDIR}/thread.patch
econf || die "configure failed"
emake || die "emake failed"
if use perl; then
cd ${S}/perl/tunepimp-perl
perl-module_src_compile || die "perl module failed to compile"
fi
}
src_install() {
cd ${S}
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog INSTALL README TODO
if use python; then
cd ${S}/python
distutils_src_install
insinto /usr/share/doc/${PF}/examples/
doins examples/*
fi
if use perl; then
cd ${S}/perl/tunepimp-perl
perl-module_src_install || die "perl module failed to install"
insinto /usr/share/doc/${PF}/examples/
doins examples/*
fi
}
|