mirror of
https://github.com/gryf/gryf-overlay.git
synced 2026-01-06 13:54:23 +01:00
43 lines
964 B
Bash
43 lines
964 B
Bash
# Copyright 1999-2005 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-spc/xmms-spc-0.2.1-r1.ebuild,v 1.8 2005/10/30 23:38:52 metalgod Exp $
|
|
|
|
IUSE=""
|
|
|
|
inherit eutils gnuconfig libtool autotools
|
|
|
|
MY_P=spcxmms-${PV}
|
|
S=${WORKDIR}/${MY_P}
|
|
DESCRIPTION="SPC Plugun for XMMS"
|
|
HOMEPAGE="http://www.self-core.org/~kaoru-k/"
|
|
SRC_URI="http://www.self-core.org/~kaoru-k/pub/${MY_P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
#-sparc: 0.2.1-r1: audio does not play
|
|
KEYWORDS="x86 ~amd64 -sparc -ppc"
|
|
|
|
RDEPEND="media-sound/xmms"
|
|
DEPEND="${RDEPEND}
|
|
sys-devel/automake"
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
|
|
cd ${S}
|
|
epatch ${FILESDIR}/${PF}.patch
|
|
epatch ${FILESDIR}/${P}-amd64.patch
|
|
|
|
export WANT_AUTOMAKE=1.4
|
|
export WANT_AUTOCONF=2.5
|
|
|
|
eautoreconf
|
|
elibtoolize
|
|
gnuconfig_update
|
|
}
|
|
|
|
src_install() {
|
|
make DESTDIR=${D} libdir=`xmms-config --input-plugin-dir` install || die
|
|
dodoc AUTHORS NEWS README
|
|
}
|