blob: 70286dbd706bca6a3fb6a3987703e9b8a032ce82 (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/synaesthesia/synaesthesia-2.1.ebuild,v 1.11 2004/06/25 00:25:20 agriffis Exp $
IUSE="sdl svga esd alsa"
S=${WORKDIR}/${P}
DESCRIPTION="a program that represents music graphically in real time as coruscating field of fog and glowing lines"
HOMEPAGE="http://yoyo.cc.monash.edu.au/~pfh/synaesthesia.html"
SRC_URI="http://yoyo.cc.monash.edu.au/~pfh/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
DEPEND="virtual/x11
esd? ( >=media-sound/esound-0.2.22 )
sdl? ( >=media-libs/libsdl-1.2.0 )
alsa? ( >=media-libs/alsa-lib-0.5.10 )
svga? ( >=media-libs/svgalib-1.4.3 )"
src_compile() {
econf || die
emake || die
}
src_install() {
dobin synaesthesia
dodoc README COPYING
}
|