blob: 6dd588f68fed965408d829e3a563017f6a533471 (
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
42
43
44
45
46
47
48
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/libvisual-plugins/libvisual-plugins-0.2.0.ebuild,v 1.12 2006/07/09 06:15:32 flameeyes Exp $
inherit eutils
DESCRIPTION="Visualization plugins for use with the libvisual framework."
HOMEPAGE="http://libvisual.sourceforge.net/"
SRC_URI="mirror://sourceforge/libvisual/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~mips ppc ppc64 sparc x86"
IUSE="debug esd gtk jack opengl"
RDEPEND="~media-libs/libvisual-${PV}
opengl? ( || ( media-libs/mesa virtual/opengl ) )
esd? ( media-sound/esound )
jack? ( >=media-sound/jack-audio-connection-kit-0.98 )
gtk? ( >=x11-libs/gtk+-2 )
|| ( (
media-libs/fontconfig
x11-libs/libX11
x11-libs/libXext
x11-libs/libXrender
) virtual/x11 )"
DEPEND="${RDEPEND}
|| ( x11-libs/libXt virtual/x11 )
>=dev-util/pkgconfig-0.14"
src_compile() {
# stupid configure assumes $x_libaries cannot be empty
epatch "${FILESDIR}/${P}-configure.patch"
epatch "${FILESDIR}/${P}-mkdirhier.patch"
# GCC 4 compatability fix for 'display.c:115: error: memory input 1 is not directly addressable'
# Upstream fix as reported by Mark Loeser <halcy0n@gentoo.org> in bug #118050
epatch "${FILESDIR}/${P}-gcc4.patch"
econf $(use_enable debug) || die
emake || die
}
src_install() {
make DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README TODO
}
|