You are not logged in.
fwojciec wrote:The instructions for how to download the CVS seem to be on the page you have linked in your original post... right at the top of the page... look for the big red font... these are two commands 1: from "cvs" to "login" and 2 from "cvs -z3" to "denemo"
I would have mentioned this also, but if one is not familiar with CVS, then they may have not have been able to figure out how to input the separate lines. Everyone needs to learn somewhere, right?
(...)
To be honest I ended up replying after you because I had to learn it myself
I've never used CVS before for some reason. It took me good ten minutes to figure it out. The slightly condescending first sentence (sorry) was from before I've run into problems myself -- I wish I had changed it before posting... oh well...
Last edited by fwojciec (2008-02-06 03:37:18)
Offline
thank you
Offline
I've updated denemo-cvs
but nothing for denemo 0.7.7, it fail make
make[2]: Entering directory `/home/bash/Desktop/community/multimedia/denemo/src/denemo-0.7.7/src'
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../intl -I../intl -I../include -I../pixmaps -DLOCALEDIR=\"/usr/share/locale\" -DSYSCONFDIR=\"/usr/etc/\" -DPKGDATADIR=\"/usr/share/denemo/\" -I/usr/include/libxml2 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/aubio -DHAVEALSA -MT view.o -MD -MP -MF ".deps/view.Tpo" -c -o view.o view.c; \
then mv -f ".deps/view.Tpo" ".deps/view.Po"; else rm -f ".deps/view.Tpo"; exit 1; fi
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../intl -I../intl -I../include -I../pixmaps -DLOCALEDIR=\"/usr/share/locale\" -DSYSCONFDIR=\"/usr/etc/\" -DPKGDATADIR=\"/usr/share/denemo/\" -I/usr/include/libxml2 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/aubio -DHAVEALSA -MT audiocapture.o -MD -MP -MF ".deps/audiocapture.Tpo" -c -o audiocapture.o audiocapture.c; \
then mv -f ".deps/audiocapture.Tpo" ".deps/audiocapture.Po"; else rm -f ".deps/audiocapture.Tpo"; exit 1; fi
audiocapture.c:77: error: expected declaration specifiers or '...' before 'PaTimestamp'
audiocapture.c: In function 'recordCallback':
audiocapture.c:91: error: 'outTime' undeclared (first use in this function)
audiocapture.c:91: error: (Each undeclared identifier is reported only once
audiocapture.c:91: error: for each function it appears in.)
audiocapture.c: In function 'pa_main':
audiocapture.c:136: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token
audiocapture.c:136: error: 'stream' undeclared (first use in this function)
audiocapture.c:191: warning: passing argument 2 of 'Pa_OpenStream' makes pointer from integer without a cast
audiocapture.c:191: warning: passing argument 3 of 'Pa_OpenStream' makes pointer from integer without a cast
audiocapture.c:191: warning: passing argument 5 of 'Pa_OpenStream' makes integer from pointer without a cast
audiocapture.c:191: warning: passing argument 8 of 'Pa_OpenStream' makes pointer from integer without a cast
audiocapture.c:191: error: too many arguments to function 'Pa_OpenStream'
audiocapture.c: In function 'determine_frequency':
audiocapture.c:316: warning: incompatible implicit declaration of built-in function 'lround'
make[2]: *** [audiocapture.o] Error 1
make[2]: Leaving directory `/home/bash/Desktop/community/multimedia/denemo/src/denemo-0.7.7/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/bash/Desktop/community/multimedia/denemo/src/denemo-0.7.7'
make: *** [all] Error 2PKBUILD:
# Maintainer: Andrea Scarpino <bash.lnx@gmail.com>
# Contributor: Philipp Sandhaus <philipp.sandhaus@gmx.de>
# Contributor: Robert Emil Berge <filoktetes@linuxophic.org>
pkgname=denemo
pkgver=0.7.7
pkgrel=1
pkgdesc="A music score editor"
arch=('i686' 'x86_64')
url="http://denemo.sourceforge.net"
license=('GPL')
depends=('lilypond' 'gtk2' 'libxml2' 'aubio' 'portaudio' 'librsvg' 'alsa-lib')
makedepend=('flex' 'gettext' 'pkgconfig')
options=('!libtool')
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('bea647c251f75a7d3804d0f5bf194296')
build() {
cd $startdir/src/$pkgname-$pkgver
#fix for icon
sed -e 's:icons:pixmaps:' -i src/view.c -i pixmaps/Makefile.in
aclocal
./configure --prefix=/usr \
--enable-gtk2 \
--disable-xmltest \
--disable-alsatest \
--enable-alsa \
--enable-nls \
--with-plugins="analysis,midiinput,rumour"
make || return 1
make DESTDIR=$startdir/pkg install
}Offline