blob: 3b9efe7b385d78a0a9c27b39b3e38bfe6206fc1a (
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/ecasound/ecasound-2.4.6.1.ebuild,v 1.2 2008/05/29 14:26:59 hawking Exp $
inherit eutils multilib python
DESCRIPTION="a package for multitrack audio processing"
HOMEPAGE="http://ecasound.seul.org/ecasound"
SRC_URI="http://${PN}.seul.org/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="1"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="alsa arts audiofile debug doc jack libsamplerate mikmod ncurses vorbis oss python ruby sndfile"
DEPEND="python? ( dev-lang/python )
jack? ( media-sound/jack-audio-connection-kit )
media-libs/ladspa-sdk
audiofile? ( media-libs/audiofile )
alsa? ( media-libs/alsa-lib )
vorbis? ( media-libs/libvorbis )
arts? ( kde-base/arts )
libsamplerate? ( media-libs/libsamplerate )
mikmod? ( media-libs/libmikmod )
ruby? ( dev-lang/ruby )
python? ( dev-lang/python )
ncurses? ( sys-libs/ncurses )
sndfile? ( media-libs/libsndfile )
sys-libs/readline"
pkg_setup() {
if use alsa && ! built_with_use --missing true media-libs/alsa-lib midi; then
die "Re-emerge media-libs/alsa-lib with USE midi."
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-gcc43.patch
}
src_compile() {
local PYConf
if use python; then
python_version
PYConf="--enable-pyecasound=c
--with-python-includes=/usr/include/python${PYVER}
--with-python-modules=/usr/$(get_libdir)/python${PYVER}"
else
PYConf="$myconf --disable-pyecasound"
fi
econf $(use_enable alsa) \
$(use_enable arts) \
$(use_enable audiofile) \
$(use_enable debug) \
$(use_enable jack) \
$(use_enable libsamplerate) \
$(use_enable ncurses) \
$(use_enable oss) \
$(use_enable ruby rubyecasound) \
$(use_enable sndfile) \
--enable-shared \
--with-largefile \
--enable-sys-readline \
${PYConf} || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc BUGS NEWS README TODO Documentation/*.txt
use doc && dohtml Documentation/*.html
}
pkg_postinst() {
if use python; then
ebegin "Byte-compiling ${CATEGORY}/${PF} python modules"
python_version
local PYMODULE
for PYMODULE in ecacontrol.py pyeca.py eci.py; do
python_mod_compile /usr/$(get_libdir)/python${PYVER}/site-packages/${PYMODULE}
done
eend $?
fi
if use arts; then
ewarn "WARNING: You have requested ecasound ARTS support,"
ewarn "this is no longer supported and will go away in"
ewarn "future releases."
fi
}
pkg_postrm() {
python_mod_cleanup
}
|