View previous topic :: View next topic |
Author |
Message |
babo Guru
Joined: 10 Aug 2004 Posts: 477 Location: Ljubljana
|
Posted: Wed Sep 14, 2005 12:14 pm Post subject: Cinelerra 2.0 ebuild |
|
|
I saw today cinelerra 2 is out. And so I want to see if it's still so broken.
I took old (1.2.1) ebuild and practically changed only the name to cinelerra-2.0.ebuild and comented out one patch.
So the ebuild for now looks like:
Code: | # Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/cinelerra/cinelerra-2.0.ebuild $
inherit gcc eutils flag-o-matic
export WANT_GCC_3="yes"
#export CFLAGS=${CFLAGS/-O?/-O2}
RESTRICT="nostrip"
DESCRIPTION="Cinelerra - Professional Video Editor"
HOMEPAGE="http://heroinewarrior.com/cinelerra.php3"
SRC_URI="mirror://sourceforge/heroines/${P}-src.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 -ppc ~amd64"
IUSE=""
DEPEND="virtual/x11
virtual/libc
=sys-devel/gcc-3*
dev-lang/nasm"
# >=media-libs/a52dec-0.7.3"
src_unpack() {
unpack ${A}
# epatch ${FILESDIR}/gcc-3.3.1-collate.patch
# epatch ${FILESDIR}/pthread_t_not_int.patch
# epatch ${FILESDIR}/${P}-locale.patch
touch ${S}/hvirtual_config.h
}
src_compile() {
filter-flags -fPIC -fforce-addr
export CFLAGS=${CFLAGS}
cd ${S}/freetype-2.1.4/builds/unix
econf ||die
cd ${S}/quicktime/ffmpeg-0.4.8
econf ||die
echo "#undef HAVE_V4L2" >> ${S}/hvirtual_config.h
cd ${S}
make || die "make failed"
}
src_install() {
local myarch
if use x86; then
myarch="${CHOST/-*/}" #should solve the i586/i686 problem
fi
if use amd64; then
myarch="x86_64" #Fixes BUG #51740
fi
if use ppc; then
myarch="ppc"
fi
cd ${S}/${PN}/${myarch}
dobin ${PN} || die "cinelerra not built"
cd ${S}/plugins
insinto /usr/lib/${PN}
doins ${myarch}/*.plugin
insinto /usr/lib/${PN}/fonts
doins titler/fonts/*
cd ${S}/libmpeg3/${myarch}
dobin mpeg3dump mpeg3cat mpeg3toc
# cd ${S}/mix/i686
# dobin mix2000
# cd ${S}/xmovie/i686
# dobin xmovie
cd ${S}/mplexhi/${myarch}
dobin mplexhi
cd ${S}/mplexlo/${myarch}
dobin mplexlo
cd ${S}
# dodoc CVS COPYING
dohtml -a png,html,texi,sdw -r doc/*
}
|
when I try to emerge it, it generates this error:
Code: | configure: creating ./config.status
config.status: creating unix-cc.mk
config.status: creating unix-def.mk
config.status: creating freetype-config
config.status: creating ftconfig.h
config.status: ftconfig.h is unchanged
make -f build/Makefile.cinelerra
make[1]: Entering directory `/var/tmp/portage/cinelerra-2.0/work/cinelerra-2.0'
gcc -c -march=k8 -O2 -pipe -fno-pie -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -I../../freetype-2.1.4/include -I../../ -DHAVE_OSS -DHAVE_FIREWIRE soundtest.c -o x86_64/soundtest.o
g++ -o x86_64/soundtest x86_64/soundtest.o -lm
make -C libraw1394*
make[2]: Entering directory `/var/tmp/portage/cinelerra-2.0/work/cinelerra-2.0/libraw1394-1.2.0'
make all-recursive
make[3]: Entering directory `/var/tmp/portage/cinelerra-2.0/work/cinelerra-2.0/libraw1394-1.2.0'
Making all in src
make[4]: Entering directory `/var/tmp/portage/cinelerra-2.0/work/cinelerra-2.0/libraw1394-1.2.0/src'
Makefile:272: .deps/arm.Plo: No such file or directory
Makefile:273: .deps/errors.Plo: No such file or directory
Makefile:274: .deps/eventloop.Plo: No such file or directory
Makefile:275: .deps/fcp.Plo: No such file or directory
Makefile:276: .deps/iso.Plo: No such file or directory
Makefile:277: .deps/main.Plo: No such file or directory
Makefile:278: .deps/readwrite.Plo: No such file or directory
Makefile:279: .deps/version.Plo: No such file or directory
make[4]: *** No rule to make target `.deps/version.Plo'. Stop.
make[4]: Leaving directory `/var/tmp/portage/cinelerra-2.0/work/cinelerra-2.0/libraw1394-1.2.0/src'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/var/tmp/portage/cinelerra-2.0/work/cinelerra-2.0/libraw1394-1.2.0'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/var/tmp/portage/cinelerra-2.0/work/cinelerra-2.0/libraw1394-1.2.0'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/var/tmp/portage/cinelerra-2.0/work/cinelerra-2.0'
make: *** [all] Error 2
!!! ERROR: media-video/cinelerra-2.0 failed.
!!! Function src_compile, Line 46, Exitcode 2
!!! make failed
!!! If you need support, post the topmost build error, NOT this status message.
|
Anyone has any ideas what this could be? |
|
Back to top |
|
|
pussi l33t
Joined: 08 May 2004 Posts: 727 Location: Finland
|
Posted: Wed Sep 14, 2005 12:20 pm Post subject: |
|
|
Did you try if you can compile it manually? |
|
Back to top |
|
|
babo Guru
Joined: 10 Aug 2004 Posts: 477 Location: Ljubljana
|
Posted: Wed Sep 14, 2005 12:30 pm Post subject: |
|
|
tryed it right now
configure goes ok and now make is in the process
should the ebuild be simpler than? |
|
Back to top |
|
|
babo Guru
Joined: 10 Aug 2004 Posts: 477 Location: Ljubljana
|
Posted: Wed Sep 14, 2005 12:38 pm Post subject: |
|
|
make finishes with this error:
Code: | arning: libstdc++.so.5, needed by /usr/lib/libmp4v2.so, may conflict with libstd
c++.so.6
/usr/lib/gcc/x86_64-pc-linux-gnu/3.4.4/../../../../x86_64-pc-linux-gnu/bin/ld: w
arning: libstdc++.so.5, needed by /usr/lib/libmp4v2.so, may conflict with libstd
c++.so.6
creating faad
make[5]: Leaving directory `/home/babo/daunloudi/install/cinelerra-2.0/quicktime
/faad2-2.0/frontend'
Making all in plugins
make[5]: Entering directory `/home/babo/daunloudi/install/cinelerra-2.0/quicktim
e/faad2-2.0/plugins'
Making all in mpeg4ip
make[6]: Entering directory `/home/babo/daunloudi/install/cinelerra-2.0/quicktim
e/faad2-2.0/plugins/mpeg4ip'
if /bin/sh ../../libtool --mode=compile g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I..
/../include -D_REENTRANT -DNOCONTROLS -fexceptions -g -O2 -MT faad2.lo -MD -M
P -MF ".deps/faad2.Tpo" -c -o faad2.lo faad2.cpp; \
then mv -f ".deps/faad2.Tpo" ".deps/faad2.Plo"; else rm -f ".deps/faad2.Tpo"; ex
it 1; fi
mkdir .libs
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I../../include -D_REENTRANT -DNOCONTROLS -
fexceptions -g -O2 -MT faad2.lo -MD -MP -MF .deps/faad2.Tpo -c faad2.cpp -fPIC
-DPIC -o .libs/faad2.o
In file included from faad2.cpp:21:
faad2.h:28:26: codec_plugin.h: No such file or directory
In file included from faad2.cpp:21:
faad2.h:36: error: `codec_data_t' does not name a type
faad2.h:37: error: ISO C++ forbids declaration of `audio_vft_t' with no type
faad2.h:37: error: expected `;' before '*' token
faad2.h:55: error: ISO C++ forbids declaration of `FILE' with no type
faad2.h:55: error: expected `;' before '*' token
faad2.h:70: error: variable or field `aac_close' declared void
faad2.h:70: error: `codec_data_t' was not declared in this scope
faad2.h:70: error: `ptr' was not declared in this scope
faad2.h:73: error: expected constructor, destructor, or type conversion before '
*' token
faad2.h:73: error: expected `,' or `;' before '*' token
faad2.h:82: error: `codec_data_t' was not declared in this scope
faad2.h:82: error: `ifptr' was not declared in this scope
faad2.h:83: error: expected primary-expression before '*' token
faad2.h:83: error: `buffer' was not declared in this scope
faad2.h:84: error: expected primary-expression before '*' token
faad2.h:84: error: `ts' was not declared in this scope
faad2.h:84: error: initializer expression list treated as compound expression
faad2.h:85: error: `codec_data_t' was not declared in this scope
faad2.h:85: error: `ifptr' was not declared in this scope
faad2.h:87: error: variable or field `aac_file_used_for_frame' declared void
faad2.h:87: error: `codec_data_t' was not declared in this scope
faad2.h:87: error: `ifptr' was not declared in this scope
faad2.h:88: error: expected primary-expression before "bytes"
faad2.h:88: error: initializer expression list treated as compound expression
faad2.h:90: error: `codec_data_t' was not declared in this scope
faad2.h:90: error: `ifptr' was not declared in this scope
faad2.h:91: error: expected primary-expression before "ts"
faad2.h:91: error: initializer expression list treated as compound expression
faad2.cpp:22:32: mpeg4_audio_config.h: No such file or directory
faad2.cpp:23:23: mpeg4_sdp.h: No such file or directory
faad2.cpp:38: error: expected init-declarator before '*' token
faad2.cpp:38: error: expected `,' or `;' before '*' token
faad2.cpp:119: error: variable or field `aac_close' declared void
faad2.cpp:119: error: redefinition of `int aac_close'
faad2.h:70: error: `int aac_close' previously defined here
faad2.cpp:119: error: `codec_data_t' was not declared in this scope
faad2.cpp:119: error: `ptr' was not declared in this scope
faad2.cpp:120: error: expected `,' or `;' before '{' token
faad2.cpp:137: error: variable or field `aac_do_pause' declared void
faad2.cpp:137: error: `codec_data_t' was not declared in this scope
faad2.cpp:137: error: `ifptr' was not declared in this scope
faad2.cpp:138: error: expected `,' or `;' before '{' token
faad2.cpp:150: error: `codec_data_t' was not declared in this scope
faad2.cpp:150: error: `ptr' was not declared in this scope
faad2.cpp:151: error: expected primary-expression before "ts"
faad2.cpp:152: error: expected primary-expression before "int"
faad2.cpp:153: error: expected primary-expression before "int"
faad2.cpp:154: error: expected primary-expression before '*' token
faad2.cpp:154: error: `buffer' was not declared in this scope
faad2.cpp:155: error: expected primary-expression before "buflen"
faad2.cpp:156: error: expected primary-expression before "void"
faad2.cpp:157: error: initializer expression list treated as compound expression
faad2.cpp:157: error: expected `,' or `;' before '{' token
faad2.cpp:283: error: `lib_message_func_t' was not declared in this scope
faad2.cpp:284: error: expected primary-expression before "const"
faad2.cpp:285: error: expected primary-expression before "int"
faad2.cpp:286: error: expected primary-expression before "int"
faad2.cpp:287: error: `format_list_t' was not declared in this scope
faad2.cpp:287: error: `fptr' was not declared in this scope
faad2.cpp:288: error: expected primary-expression before "const"
faad2.cpp:289: error: expected primary-expression before "userdata_size"
faad2.cpp:294: error: initializer expression list treated as compound expression
faad2.cpp:294: error: expected `,' or `;' before '{' token
faad2.cpp:356: error: expected constructor, destructor, or type conversion befor
e '(' token
faad2.cpp:356: error: expected `,' or `;' before '(' token
make[6]: *** [faad2.lo] Error 1
make[6]: Leaving directory `/home/babo/daunloudi/install/cinelerra-2.0/quicktime
/faad2-2.0/plugins/mpeg4ip'
make[5]: *** [all-recursive] Error 1
make[5]: Leaving directory `/home/babo/daunloudi/install/cinelerra-2.0/quicktime
/faad2-2.0/plugins'
make[4]: *** [all-recursive] Error 1
make[4]: Leaving directory `/home/babo/daunloudi/install/cinelerra-2.0/quicktime
/faad2-2.0'
make[3]: *** [all] Error 2
make[3]: Leaving directory `/home/babo/daunloudi/install/cinelerra-2.0/quicktime
/faad2-2.0'
make[2]: *** [x86_64/faad] Error 2
make[2]: Leaving directory `/home/babo/daunloudi/install/cinelerra-2.0/quicktime
'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/babo/daunloudi/install/cinelerra-2.0'
make: *** [all] Error 2 |
|
|
Back to top |
|
|
babo Guru
Joined: 10 Aug 2004 Posts: 477 Location: Ljubljana
|
Posted: Wed Sep 14, 2005 3:25 pm Post subject: |
|
|
ok, a little progress ocured
I we changed ebuild
http://www.zapstudio.net/ebuilds/cinelerra-2.0.ebuild <-- here it is
a bit and now I get the package compiling, but I still get the same error as when compiling manualy.
What is there to do now?
Is anyone else willing to test it on x86 maybe (I only have x86_64) ? |
|
Back to top |
|
|
Raftysworld Apprentice
Joined: 27 Feb 2005 Posts: 236 Location: Snohomish, WA
|
Posted: Wed Sep 14, 2005 10:58 pm Post subject: |
|
|
Testing on x86 as we speak. _________________ emerge --info
Portage 2.1.4 (default-linux/x86/dev/2007.1, gcc-4.2.2, glibc-2.7-r1, 2.6.24-gentoo i686) |
|
Back to top |
|
|
jasperbg n00b
Joined: 02 Mar 2005 Posts: 62 Location: Christchurch, New Zealand
|
Posted: Thu Sep 15, 2005 12:40 am Post subject: |
|
|
I get the same error when compiling here manually on x86.
Code: | In file included from faad2.cpp:21:
faad2.h:28:26: codec_plugin.h: No such file or directory |
The errors after that are definitely caused by that missing file. |
|
Back to top |
|
|
Raftysworld Apprentice
Joined: 27 Feb 2005 Posts: 236 Location: Snohomish, WA
|
Posted: Thu Sep 15, 2005 12:51 am Post subject: |
|
|
Same error on x86 with the ebuild posted above _________________ emerge --info
Portage 2.1.4 (default-linux/x86/dev/2007.1, gcc-4.2.2, glibc-2.7-r1, 2.6.24-gentoo i686) |
|
Back to top |
|
|
babo Guru
Joined: 10 Aug 2004 Posts: 477 Location: Ljubljana
|
Posted: Thu Sep 15, 2005 12:13 pm Post subject: |
|
|
Well, I think my knowledge won't save us from that error. Does anyone else have Ideas on what this could be. Is this a problem with faad2 ebuild, or should the cinelerra ebuild have some solution to this? |
|
Back to top |
|
|
red2 n00b
Joined: 03 Jun 2002 Posts: 57
|
Posted: Fri Sep 16, 2005 6:30 am Post subject: try this... |
|
|
Quote: | Just as a notice, I just compiled Cinelerra 2.0 and got it running (had
some issue compiling the built-in faad2, specifically mpeg4ip... got
around it by commenting it out of the Makefile). |
from https://init.linpro.no/pipermail/skolelinux.no/cinelerra/2005-September/004207.html
Looks like if you mess around with the makefile you might have some luck... |
|
Back to top |
|
|
babo Guru
Joined: 10 Aug 2004 Posts: 477 Location: Ljubljana
|
Posted: Fri Sep 16, 2005 8:08 am Post subject: |
|
|
uau, that's great help!
thanx, I'll see if I can work it out.
Sounds to me like a small patch should be made. |
|
Back to top |
|
|
babo Guru
Joined: 10 Aug 2004 Posts: 477 Location: Ljubljana
|
Posted: Mon Sep 19, 2005 2:14 pm Post subject: |
|
|
I tryed with removing faad2 from Makefile in quictime folder, but still get this error:
Code: | if gcc -DHAVE_CONFIG_H -I. -I. -I../src -I./../src -g -O2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wcast-qual -Wnested-externs -Wshadow -Wbad-function-cast -Wwrite-strings -pipe -MT aiff_rw_test.o -MD -MP -MF ".deps/aiff_rw_test.Tpo" \
-c -o aiff_rw_test.o `test -f 'aiff_rw_test.c' || echo './'`aiff_rw_test.c; \
then mv -f ".deps/aiff_rw_test.Tpo" ".deps/aiff_rw_test.Po"; \
else rm -f ".deps/aiff_rw_test.Tpo"; exit 1; \
fi
/bin/sh ../libtool --mode=link gcc -g -O2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wcast-qual -Wnested-externs -Wshadow -Wbad-function-cast -Wwrite-strings -pipe -o aiff_rw_test utils.o aiff_rw_test.o ../src/libsndfile.la -lm
gcc -g -O2 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wcast-qual -Wnested-externs -Wshadow -Wbad-function-cast -Wwrite-strings -pipe -o .libs/aiff_rw_test utils.o aiff_rw_test.o ../src/.libs/libsndfile.so -lm
creating aiff_rw_test
make[3]: Leaving directory `/home/babo/daunloudi/install/cinelerra-2.0/libsndfile-1.0.11/tests'
make[3]: Entering directory `/home/babo/daunloudi/install/cinelerra-2.0/libsndfile-1.0.11'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/babo/daunloudi/install/cinelerra-2.0/libsndfile-1.0.11'
make[2]: Leaving directory `/home/babo/daunloudi/install/cinelerra-2.0/libsndfile-1.0.11'
make -C quicktime
make[2]: Entering directory `/home/babo/daunloudi/install/cinelerra-2.0/quicktime'
Makefile:241: *** unterminated call to function `shell': missing `)'. Stop.
make[2]: Leaving directory `/home/babo/daunloudi/install/cinelerra-2.0/quicktime'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/babo/daunloudi/install/cinelerra-2.0'
make: *** [all] Error 2 |
for the mpeg4ip part I don't know where to look at.
But for now I don't have more motivation to try on. |
|
Back to top |
|
|
MADcow l33t
Joined: 23 Jan 2003 Posts: 742 Location: RIT (Henrietta, New York, United States)
|
Posted: Tue Sep 20, 2005 1:45 am Post subject: |
|
|
from the looks of the message, you should open up `/home/babo/daunloudi/install/cinelerra-2.0/quicktime/Makefile', go to line 241and put a closing ")" on the call to shell...
( or the file included from there )
i'd verify this myself, but it's a waste of bandwidth, as cinelerra still hasn't ever worked for me.
then again, who would release software with syntax errors?
note: please correct me if i'm being a jackass... i haven't used automake in at least a year at this point |
|
Back to top |
|
|
Mnemotechniker n00b
Joined: 05 Apr 2004 Posts: 1 Location: Vienna Austria
|
Posted: Tue Sep 20, 2005 3:12 am Post subject: Re: Cinelerra 2.0 ebuild |
|
|
babo wrote: |
DEPEND="virtual/x11
virtual/libc
=sys-devel/gcc-3*
dev-lang/nasm"
# >=media-libs/a52dec-0.7.3"
|
hi!
dev-lang/nasm is not existing! should be dev-lang/yasm
bye |
|
Back to top |
|
|
MADcow l33t
Joined: 23 Jan 2003 Posts: 742 Location: RIT (Henrietta, New York, United States)
|
Posted: Tue Sep 20, 2005 6:12 am Post subject: |
|
|
from what i understand, you need BOTH to compile cinelerra,
Quote: | There is no warranty on compilability of the source code. No warranty, expressed or implied, including fitness for compilation. The current known requirements to compile anything are GCC 3.2, NASM, and some version of YASM. Different errors will be experienced depending on compiler |
(from http://heroinewarrior.com/download.php3 - AKA the original cinelerra fork's homepage)
anyway, it's not really our problem - i don't have access to modify ebuilds in the portage tree.
if you submit a complain to https://bugs.gentoo.org/ they will fix it right up.
EDIT: oh, and Code: | emerge -s nasm
Searching...
[ Results for search key : nasm ]
[ Applications found : 1 ]
* dev-lang/nasm
Latest version available: 0.98.39-r1
Latest version installed: 0.98.39-r1
Size of downloaded files: 531 kB
Homepage: http://nasm.sourceforge.net/
Description: groovy little assembler
License: LGPL-2.1
|
|
|
Back to top |
|
|
babo Guru
Joined: 10 Aug 2004 Posts: 477 Location: Ljubljana
|
Posted: Tue Sep 20, 2005 8:24 am Post subject: |
|
|
MADcow wrote: | from the looks of the message, you should open up `/home/babo/daunloudi/install/cinelerra-2.0/quicktime/Makefile', go to line 241and put a closing ")" on the call to shell...
( or the file included from there )
i'd verify this myself, but it's a waste of bandwidth, as cinelerra still hasn't ever worked for me.
|
Just checked, and the end of line was my fault - not using disable word wrap split the line 241 while erasing faad2. Trying again now.
But I don't know how much sense it has to make an ebuild for cinelerra whithout faad2. There should probably be some smarter workarround. Off course if cinelerra2 seems working.
One of the developers of cinelerra lives in the same city as me. I might bug him a little |
|
Back to top |
|
|
Zyne Guru
Joined: 08 Jun 2004 Posts: 334
|
Posted: Tue Sep 20, 2005 9:52 am Post subject: |
|
|
babo wrote: | Off course if cinelerra2 seems working. |
well, I manually compiled cinelerra a few days ago, and it's working perfectly! if I recall correctly, I did have a few minor problems compiling (eg replacing march settings in all kinds of different places), but after manually changing all those I managed to make and make install cinelerra... |
|
Back to top |
|
|
babo Guru
Joined: 10 Aug 2004 Posts: 477 Location: Ljubljana
|
Posted: Tue Sep 20, 2005 9:58 am Post subject: |
|
|
Zyne wrote: | babo wrote: | Off course if cinelerra2 seems working. |
well, I manually compiled cinelerra a few days ago, and it's working perfectly! if I recall correctly, I did have a few minor problems compiling (eg replacing march settings in all kinds of different places), but after manually changing all those I managed to make and make install cinelerra... |
And the faad2 problems? You didn't have?
Could you describe a bit more what you changed. |
|
Back to top |
|
|
Zyne Guru
Joined: 08 Jun 2004 Posts: 334
|
Posted: Tue Sep 20, 2005 10:17 am Post subject: |
|
|
babo wrote: | And the faad2 problems? You didn't have? |
nope... everything compiled cleanly afaik...
babo wrote: | Could you describe a bit more what you changed. |
Code: | CFLAGS = -march=athlon-xp -mcpu=athlon-xp |
which was (in my case) in a few Makefiles in the different plugins
Code: | CFLAGS = -march=k8 -mcpu=k8 |
in all honesty, I should mention that I'm running a 32bit gentoo on an amd64 cpu... I know it's not the perfect thing, but I was having a bit too many problems with 64bit software and not enough time to fix them... |
|
Back to top |
|
|
mrfisher n00b
Joined: 12 Mar 2005 Posts: 6 Location: Ft. Wayne, Indiana
|
Posted: Thu Sep 22, 2005 5:46 am Post subject: |
|
|
For which plugins though? |
|
Back to top |
|
|
Zyne Guru
Joined: 08 Jun 2004 Posts: 334
|
Posted: Thu Sep 22, 2005 7:40 am Post subject: |
|
|
mrfisher wrote: | For which plugins though? |
only for the one's that wouldn't compile, and complained about wrong march and mcpu settings... the error was obvious enough for me to spot them right away... Just look at the error messages you get while compiling, and you'll probably see it too... |
|
Back to top |
|
|
mrfisher n00b
Joined: 12 Mar 2005 Posts: 6 Location: Ft. Wayne, Indiana
|
Posted: Thu Sep 22, 2005 2:42 pm Post subject: |
|
|
Ok, thanks. I'll try to recompile and note where it starts giving errors. Thanks
-Mike |
|
Back to top |
|
|
MIT_Service Guru
Joined: 29 Nov 2002 Posts: 355
|
Posted: Thu Sep 29, 2005 4:49 pm Post subject: |
|
|
You might want to check out the cvs ebuild for cinelerra - I haven't tried it yet, but the 2.0 code is merged into the repository now.
OK - My bad!
I didn't realize that the cinelerra-cvs ebuild just downloads a cvs snapshot archive from the mirrors.
Guess you have to create a current snapshot or use cvs without an ebuild. |
|
Back to top |
|
|
Plexroth Tux's lil' helper
Joined: 31 Oct 2004 Posts: 77
|
Posted: Thu Sep 29, 2005 5:37 pm Post subject: |
|
|
I'd love to see a cinelerra ebuild as well. I'm at work right now but this evening, i'm going to try out some of these ebuilds that are posted here.
I don't have much experience with cinelerra. What little I do involves lots of crashing and the program not working well with the video I have on file. I hope 2.0 works better because the program does have lots of promise.
On another note, I found a program called DIVA but it's not in portage. Any other video editing programs you can think of? |
|
Back to top |
|
|
babo Guru
Joined: 10 Aug 2004 Posts: 477 Location: Ljubljana
|
Posted: Fri Sep 30, 2005 9:40 am Post subject: |
|
|
I also found diva from this site, but I didn't manage to find sources even. There are some other editing tools on that site, but cinelerra is definitely the most advanced (besides stability).
I was optimistic when I saw pitivi, but I can not compile gnonlin, which is needed and that's the end of the fun there. diva looks promising, but is not done yet as I understand it. |
|
Back to top |
|
|
|