blob: d4a42a856a377ff30713688381c445b7c3ac07d6 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/ardour/ardour-0.9_beta5.ebuild,v 1.2 2004/02/12 12:57:21 eradicator Exp $
IUSE="nls ardour-ksi"
DESCRIPTION="multi-track hard disk recording software"
HOMEPAGE="http://ardour.org/"
SRC_URI="mirror://sourceforge/ardour/${P/_/}.tar.bz2"
RESTRICT="nomirror"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
S="${WORKDIR}/${P/_/}"
DEPEND="dev-util/pkgconfig
>=media-sound/jack-audio-connection-kit-0.80.0
=dev-libs/glib-1.2*
=x11-libs/gtk+-1.2*
>=media-libs/libsndfile-1.0.4
sys-libs/gdbm
>=media-libs/ladspa-sdk-1.12
>=media-libs/libsamplerate-0.0.14
>=media-libs/liblrdf-0.3.1
>=dev-libs/libxml2-2.5.7
=media-libs/libart_lgpl-2.3*"
RDEPEND="nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PN}-pthread.patch
}
src_compile() {
local myconf="--disable-dependency-tracking --enable-optimize"
local myarch
myarch=`get-flag -march`
cd $S
find -name configure |xargs sed -i "s/\\(-O6 -fomit-frame-pointer -ffast-math -fstrength-reduce -funroll-loops -fmove-all-movables\\)/\\1 ${myarch}/"
sed -i "s/-D_REENTRANT -O6 -mcpu=i686 -march=i686 -fomit-frame-pointer -ffast-math -fstrength-reduce -fmove-all-movables/-D_REENTRANT -O6 ${myarch} -fomit-frame-pointer -ffast-math -fstrength-reduce -fmove-all-movables/" libs/ardour/configure
use nls || myconf="${myconf} --disable-nls"
use ardour-ksi || myconf="${myconf} --disable-ksi"
econf ${myconf} || die "configure failed"
emake || die "parallel make failed"
}
src_install() {
einstall || die "make install failed"
dodoc AUTHORS CONTRIBUTORS COPYING ChangeLog FAQ INSTALL NEWS README TODO TRANSLATORS
}
|