blob: d9aed9d386c03a8b3886aca6fa8d06989cd88d57 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-tfmx/xmms-tfmx-0.5.ebuild,v 1.2 2004/06/29 16:39:15 dholm Exp $
IUSE=""
DESCRIPTION="Plugin to listen tfmx files on xmms"
HOMEPAGE="http://xmms-tfmx.sourceforge.net/"
SRC_URI="mirror://sourceforge/xmms-tfmx/${P}.tar.gz"
RESTRICT="nomirror"
SLOT="0"
# amd64/sparc failed 0.5 -- eradicator
KEYWORDS="~x86 -amd64 -sparc -ppc"
LICENSE="GPL-2"
DEPEND="media-sound/xmms"
src_compile () {
econf --with-plugindir=`xmms-config --input-plugin-dir`|| die 'Configure failed'
emake || die "Error compiling"
}
src_install()
{
make DESTDIR="${D}" install || die
dodoc README tfmxplay.txt tfmxplugreadme.txt
}
|