Re: [proaudio] ardour-3.9999 issues |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/proaudio Archives
]
- To: proaudio@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [proaudio] ardour-3.9999 issues
- From: Viktor Lazarev <taurus101v@xxxxxxxxx>
- Date: Wed, 24 Mar 2010 09:37:49 +0400
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:received:message-id:subject:from:to:content-type; bh=Q1D4MGX7HKuVSw05mxyJglTgoNd7Ed9tEVhK9aw1rwE=; b=ZHgEI0fwFDc7y6FxkbyKrIKxHgHkPmWnU5H2TTTuqkeJOBxO7Q1I5thOCV4/d1a7Oj lWhE4hU0tVY0T0OCiUFwuIQK0CuuXP1hR4lsKJFf3YUlmKM6aP5l/S7KdLqjHrSs+077 vNRMsZHfiIcDWigD/061ellNWJz64bzzxtn1Q=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=tkaUUyVtLaLbsjIqlYCy1kVQ30Nf80CIcUiYRWQix8W/PcCdc4TSuQRdO83Zwc3S9t kLeFF2KhrW0WwRKIOkY/e6w5rmHBkw2INCZU7XQsblcymeksnVBRl0pvpXLpt+fpttxd z3suCpd5tir6gX+CZ9xH2YmxR+5txnWTjUafY=
Try to use this diff. It works for me.
2010/3/24, Alex Montgomery <apmontgomery@xxxxxxxxx>:
Hello,
Is anyone successfully using the ardour-3.9999 ebuild? My emerge
fails, seemingly because waf is getting some unexpected parameters. I
don't know if this is an issue with the ebuild, or if the ardour svn
repository just happens to be in a bad state right now. Here's my
emerge output, anyone have any ideas?
* CPV: media-sound/ardour-3.9999
* REPO: proaudio
* USE: amd64 elibc_glibc kernel_linux lv2 multilib nls sse userland_GNU
>>> Unpacking source...
* subversion update start -->
* repository: http://subversion.ardour.org/svn/ardour2/branches/3.0
At revision 6788.
* working copy: /usr/portage/distfiles/svn-src/ardour/3.0
>>> Source unpacked in /var/tmp/portage/media-sound/ardour-3.9999/work
>>> Preparing source in /var/tmp/portage/media-sound/ardour-3.9999/work/ardour-3.9999 ...
>>> Source prepared.
>>> Configuring source in /var/tmp/portage/media-sound/ardour-3.9999/work/ardour-3.9999 ...
>>> Source configured.
>>> Compiling source in /var/tmp/portage/media-sound/ardour-3.9999/work/ardour-3.9999 ...
* ./waf --freedesktop --prefix=/usr --aubio --nls --lv2 --fpu-optimization
waf [command] [options]
Main commands (example: ../waf build -j4)
build : builds the project
clean : removes the build files
configure: configures the project
dist : makes a tarball for redistributing the sources
distcheck: checks if the sources compile (tarball from 'dist')
distclean: removes the build directory
install : installs the build files
uninstall: removes the installed files
waf: error: no such option: --aubio
* ERROR: media-sound/ardour-3.9999 failed:
* failed to configure
Thanks,
-- Alex
--
WBR, Viktor
--- pro-audio/media-sound/ardour/ardour-3.9999.ebuild 2010-03-22 02:11:29.000000000 +0400
+++ pro-audio-local/media-sound/ardour/ardour-3.9999.ebuild 2010-02-07 20:16:31.000000000 +0400
@@ -57,7 +57,9 @@
cd "${S}"
# get the svn revision
subversion_wc_info
- echo $ESVN_WC_REVISION > libs/ardour/svn_revision.cc
+ echo '#include "ardour/svn_revision.h"' > libs/ardour/svn_revision.cc
+ echo "namespace ARDOUR { const char* svn_revision=\"$ESVN_WC_REVISION\"; }" >> libs/ardour/svn_revision.cc
+ echo >> libs/ardour/svn_revision.cc
## # some temporary slotting fixes
@@ -74,7 +76,7 @@
src_compile() {
- local myconf="--freedesktop --prefix=/usr --aubio"
+ local myconf="--freedesktop --prefix=/usr"
use debug && myconf="$myconf --debug"
use nls && myconf="$myconf --nls"
use lv2 && myconf="$myconf --lv2"
@@ -89,7 +91,7 @@
einfo "./waf $myconf" # show configure options
./waf configure $myconf || die "failed to configure"
- ./waf build ${MAKEOPTS} || die "failed to build"
+ ./waf build ${MAKEOPTS/-s/} || die "failed to build"
}
src_install() {