1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2026-01-04 04:44:13 +01:00
Files
gryf-overlay/media-plugins/eq-xmms/eq-xmms-0.6-r3.ebuild
2010-02-09 21:25:29 +01:00

53 lines
1.4 KiB
Bash

# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/eq-xmms/eq-xmms-0.6-r3.ebuild,v 1.4 2006/01/29 15:48:48 blubb Exp $
IUSE="sse-filters"
inherit eutils autotools
DESCRIPTION="EQU is a realtime graphical equalizer effect plugin that will equalize almost everything that you play through XMMS, not just the MP3s"
HOMEPAGE="http://equ.sourceforge.net/"
SRC_URI="mirror://sourceforge/equ/${P}.tar.gz
mirror://gentoo/${P}-sse_filters.patch.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~amd64 ~sparc ~ppc"
RDEPEND="media-sound/xmms"
DEPEND="${RDEPEND}
!x86? ( >=sys-devel/automake-1.7 )"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}-shade_fix.patch
epatch ${FILESDIR}/${P}-mono_fix.patch
if ! use x86 || use sse-filters; then
cd ${S}
if use sse-filters; then
epatch ${WORKDIR}/${P}-sse_filters.patch
use x86 || epatch ${FILESDIR}/${P}-sse_round_trickfilters.patch
fi
use x86 || epatch ${FILESDIR}/${P}-nonx86.patch
export WANT_AUTOMAKE="1.7"
export WANT_AUTOCONF="2.5"
eautoreconf
use sse-filters && \
sed -e "s:@CFLAGS@:@CFLAGS@ -DSSE_FILTERS:" -i ${S}/src/Makefile.in
fi
}
src_install() {
make DESTDIR="${D}" libdir=`xmms-config --effect-plugin-dir` install || die
dodoc AUTHORS BUGS ChangeLog NEWS README README.BSD SKINS TODO
}