blob: 8efd5e606a579689ee2a2c8d830cdbcc9e5a80c1 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-infinity/xmms-infinity-0.2.ebuild,v 1.3 2003/02/13 13:02:28 vapier Exp $
MY_P=${P/xmms-/}
S=${WORKDIR}/${MY_P}
DESCRIPTION="A psychedelic visualization plug-in for XMMS"
SRC_URI="http://julien.carme.free.fr/${MY_P}.tar.gz"
HOMEPAGE="http://julien.carme.free.fr/infinite.html"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
DEPEND="=dev-libs/glib-1.2*
=x11-libs/gtk+-1.2*
media-libs/libsdl
media-sound/xmms"
src_compile() {
econf || die "configure failed"
emake || die "build failed"
}
src_install () {
make DESTDIR=${D} install || die "install failed"
dodoc AUTHORS COPYING ChangeLog INSTALL README NEWS
}
|