summaryrefslogtreecommitdiff
blob: b21ca9914b468fb1e8a31db3a78e85963b6ed286 (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
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/eq-audacious/eq-audacious-0.21.ebuild,v 1.3 2008/12/20 23:27:50 darkside Exp $

DESCRIPTION="31-band equalizer for Audacious"
HOMEPAGE="http://audacious-media-player.org/"
SRC_URI="http://audacious-media-player.org/~nenolod/audacious/plugins/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="debug mmx sse sse2"

RDEPEND="media-sound/audacious"
DEPEND="dev-util/pkgconfig
	${RDEPEND}"

pkg_config() {
	econf $(use_enable debug)
		$(use_enable mmx)
		$(use_enable sse)
		$(use_enable sse2) || die "econf died"
}

src_install() {
	make DESTDIR="${D}" libdir=`pkg-config audacious --variable=effect_plugin_dir` install || make install died
	dodoc AUTHORS BUGS ChangeLog NEWS README README.BSD SKINS TODO
}