blob: 843065bea7dab6097af4aeb166dbc7237622efd8 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-jess/xmms-jess-2.9.1.ebuild,v 1.12 2004/10/07 03:18:19 eradicator Exp $
IUSE=""
inherit eutils
MY_P="JESS-${PV}"
S=${WORKDIR}/${MY_P}
DESCRIPTION="JESS Visualization Plugin for XMMS"
SRC_URI="http://arquier.free.fr/${MY_P}.tar.gz"
HOMEPAGE="http://arquier.free.fr/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc amd64 sparc"
DEPEND="media-sound/xmms
>=media-libs/libsdl-1.1.5"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-gcc34.patch
}
src_install () {
dodir `xmms-config --visualization-plugin-dir`
make DESTDIR="${D}" install || die
dodoc AUTHORS COPYING ChangeLog INSTALL README NEWS
}
|