blob: 397f730d810372e5e94161cbe1658ee2315eba8d (
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-synaesthesia/xmms-synaesthesia-0.0.3_rc3.ebuild,v 1.8 2004/09/14 07:15:10 eradicator Exp $
IUSE=""
inherit gnuconfig eutils
MY_P=${PN#*-}-${PN%-*}-${PV/_rc/-rc}
S=${WORKDIR}/${MY_P}
SRC_URI="http://staff.xmms.org/zinx/xmms/${MY_P}.tar.gz"
HOMEPAGE="http://staff.xmms.org/zinx/xmms/"
DESCRIPTION="Synaesthesia effect in a XMMS version."
DEPEND="media-sound/xmms"
RDEPEND=""
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc sparc amd64"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-gcc34.patch
use amd64 && epatch ${FILESDIR}/${P}-amd64.patch
gnuconfig_update
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS ChangeLog NEWS README
}
|