blob: 8d3c1f3c3496bae58359e927307fc29566a4c2f6 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit autotools eutils multilib-minimal
PATCHLEVEL=4
DESCRIPTION="collection of visualization plugins for use with the libvisual framework"
HOMEPAGE="http://libvisual.sourceforge.net/"
SRC_URI="mirror://sourceforge/libvisual/${P}.tar.gz
mirror://gentoo/${P}-patches-${PATCHLEVEL}.tar.bz2
mirror://gentoo/${P}-m4-1.tar.bz2"
LICENSE="GPL-2"
SLOT="0.4"
KEYWORDS="~amd64"
IUSE="alsa debug gtk jack mplayer opengl"
RDEPEND="media-libs/fontconfig[${MULTILIB_USEDEP}]
~media-libs/libvisual-${PV}[${MULTILIB_USEDEP}]
x11-libs/libX11[${MULTILIB_USEDEP}]
x11-libs/libXext[${MULTILIB_USEDEP}]
x11-libs/libXrender[${MULTILIB_USEDEP}]
alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
gtk? ( x11-libs/gtk+:2[${MULTILIB_USEDEP}] )
jack? ( >=media-sound/jack-audio-connection-kit-0.109[${MULTILIB_USEDEP}] )
opengl? (
virtual/glu[${MULTILIB_USEDEP}]
virtual/opengl[${MULTILIB_USEDEP}]
)"
DEPEND="${RDEPEND}
virtual/pkgconfig
x11-libs/libXt[${MULTILIB_USEDEP}]"
DOCS="AUTHORS ChangeLog NEWS README TODO"
MULTILIB_PARALLEL_PHASES="src_compile src_install"
src_prepare() {
EPATCH_SUFFIX=patch epatch "${WORKDIR}"/patches
AT_M4DIR=${WORKDIR}/m4 eautoreconf
sed -i -e "s:@MKINSTALLDIRS@:${S}/mkinstalldirs:" po/Makefile.* || die
}
multilib_src_configure() {
ECONF_SOURCE="${S}" econf \
--disable-esd \
$(use_enable jack) \
$(use_enable gtk gdkpixbuf-plugin) \
--disable-gstreamer-plugin \
$(use_enable alsa) \
$(use_enable mplayer) \
$(use_enable debug inputdebug) \
$(use_enable opengl gltest) \
$(use_enable opengl nastyfft) \
$(use_enable opengl madspin) \
$(use_enable opengl flower) \
$(use_enable debug)
}
multilib_src_install_all() {
find "${ED}"/usr -type f -name '*.la' -exec rm -f {} +
dodoc ${DOCS}
}
|