blob: c9ca1351738854e2eef49c8f86c6a2cc301a9cd2 (
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
35
36
37
38
39
40
41
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-goom/xmms-goom-1.99.4.ebuild,v 1.13 2004/11/27 20:25:43 corsair Exp $
inherit eutils
MY_P=${P/xmms-/}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Trippy Visualisation for XMMS using SDL."
HOMEPAGE="http://ios.free.fr/?page=projet&quoi=1&lg=AN"
SRC_URI="http://ios.free.fr/goom/devel/${MY_P}-src.tgz
mirror://debian/pool/main/x/xmms-goom/${PN}_${PV}-4.diff.gz"
SLOT="0"
LICENSE="LGPL-2"
KEYWORDS="x86 ~ppc sparc ~alpha ~hppa ~mips amd64 ~ppc64"
IUSE=""
DEPEND="media-sound/xmms
media-libs/libsdl
sys-apps/coreutils"
src_unpack() {
unpack ${A} ; cd ${S}
epatch ${WORKDIR}/${PN}_${PV}-4.diff
}
src_compile() {
econf || die
emake OPT="$CFLAGS" || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc INSTALL README AUTHORS NEWS KNOWNBUGS ChangeLog
}
pkg_postinst() {
einfo "Press TAB for Fullscreen, +/- for resolution."
}
|