blob: 9dbff4f141cb2b89dd59e916c063b6f2c6bdb3af (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/audacious-crossfade/audacious-crossfade-0.3.13.ebuild,v 1.2 2008/01/14 14:22:30 joker Exp $
IUSE="libsamplerate"
U_PN="xmms-crossfade"
DESCRIPTION="Audacious plugin for crossfading and continuous output. Also know as xmms-crossfade"
HOMEPAGE="http://www.eisenlohr.org/xmms-crossfade/index.html"
SRC_URI="http://www.eisenlohr.org/${U_PN}/${U_PN}-${PV}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
DEPEND=">=media-sound/audacious-1.4.2
libsamplerate? ( media-libs/libsamplerate )
dev-util/pkgconfig"
S="${WORKDIR}/${U_PN}-${PV}"
src_compile() {
econf \
--enable-player=audacious \
--libdir="`pkg-config audacious --variable=output_plugin_dir`" \
$(use_enable libsamplerate samplerate) \
|| die
emake || die
}
src_install () {
make DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog README TODO
}
|