public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-video/cinelerra-cvs: ChangeLog cinelerra-cvs-20080602.ebuild
@ 2008-06-03 13:31 Hanno Boeck (hanno)
  0 siblings, 0 replies; 2+ messages in thread
From: Hanno Boeck (hanno) @ 2008-06-03 13:31 UTC (permalink / raw
  To: gentoo-commits

hanno       08/06/03 13:31:17

  Modified:             ChangeLog
  Added:                cinelerra-cvs-20080602.ebuild
  Log:
  cinelerra bump
  (Portage version: 2.1.5.3)

Revision  Changes    Path
1.45                 media-video/cinelerra-cvs/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/cinelerra-cvs/ChangeLog?rev=1.45&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/cinelerra-cvs/ChangeLog?rev=1.45&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/cinelerra-cvs/ChangeLog?r1=1.44&r2=1.45

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/cinelerra-cvs/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog	10 Apr 2008 21:22:13 -0000	1.44
+++ ChangeLog	3 Jun 2008 13:31:17 -0000	1.45
@@ -1,6 +1,12 @@
 # ChangeLog for media-video/cinelerra-cvs
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/cinelerra-cvs/ChangeLog,v 1.44 2008/04/10 21:22:13 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/cinelerra-cvs/ChangeLog,v 1.45 2008/06/03 13:31:17 hanno Exp $
+
+*cinelerra-cvs-20080602 (03 Jun 2008)
+
+  03 Jun 2008; Hanno Boeck <hanno@gentoo.org>
+  +cinelerra-cvs-20080602.ebuild:
+  Version bump, some patches got accepted upstream.
 
   10 Apr 2008; Alexis Ballier <aballier@gentoo.org>
   -cinelerra-cvs-20080301.ebuild:



1.1                  media-video/cinelerra-cvs/cinelerra-cvs-20080602.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/cinelerra-cvs/cinelerra-cvs-20080602.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/cinelerra-cvs/cinelerra-cvs-20080602.ebuild?rev=1.1&content-type=text/plain

Index: cinelerra-cvs-20080602.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/cinelerra-cvs/cinelerra-cvs-20080602.ebuild,v 1.1 2008/06/03 13:31:17 hanno Exp $

WANT_AUTOMAKE=1.9
WANT_AUTOCONF=2.5

inherit toolchain-funcs eutils flag-o-matic autotools

#filter-flags "-fPIC -fforce-addr"

DESCRIPTION="Cinelerra - Professional Video Editor - Unofficial CVS-version"
HOMEPAGE="http://cvs.cinelerra.org/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="3dnow alsa esd mmx oss static truetype ieee1394 css altivec opengl"
RDEPEND="media-libs/libpng
	>=media-libs/libdv-1.0.0
	media-libs/faad2
	media-libs/faac
	media-libs/a52dec
	media-libs/libsndfile
	media-libs/tiff
	media-video/ffmpeg
	media-sound/lame
	>=sci-libs/fftw-3.0.1
	media-libs/x264
	ieee1394? ( media-libs/libiec61883 >=sys-libs/libraw1394-1.2.0 \
		>=sys-libs/libavc1394-0.5.0 )
	media-video/mjpegtools
	alsa? ( media-libs/alsa-lib )
	esd? ( >=media-sound/esound-0.2.34 )
	truetype? ( >=media-libs/freetype-2.1.10 )
	opengl? ( virtual/opengl )
	>=media-libs/openexr-1.2.2
	>=media-libs/libvorbis-1.1.0
	>=media-libs/libogg-1.1
	>=media-libs/libtheora-1.0_alpha4-r1
	x11-libs/libX11
	x11-libs/libXv
	x11-libs/libXxf86vm
	x11-libs/libXext
	x11-libs/libXvMC
	x11-libs/libXft"

DEPEND="${RDEPEND}
	dev-util/pkgconfig
	x86? ( dev-lang/nasm )"

S="${WORKDIR}/hvirtual"

pkg_setup() {
	if [[ "$(gcc-major-version)" -lt "4" ]]; then
		eerror "You need to have gcc 4 or better"
		eerror "Please follow : http://www.gentoo.org/doc/en/gcc-upgrading.xml"
		eerror "And have a look at bug #128659"
		die "You must use gcc 4 or better."
	fi
}

src_unpack() {
	unpack ${A}
	cd "${S}"
	epatch "${FILESDIR}/${PN}-defaultx264tocqp.patch"
	AT_M4DIR="m4" eautoreconf
}

src_compile() {
	econf \
	`use_enable static` \
	`use_enable alsa` \
	`use_enable esd` \
	`use_enable oss` \
	`use_enable mmx` \
	`use_enable 3dnow` \
	--with-plugindir=/usr/$(get_libdir)/cinelerra \
	`use_enable truetype freetype2` \
	`use_enable ieee1394 firewire` \
	`use_enable css` \
	`use_enable opengl` \
	`use_enable altivec` \
	--with-external-ffmpeg \
	--with-buildinfo=cust/"Gentoo - SVN r1055" \
	|| die "configure failed"
	emake || die "make failed"
}

src_install() {
	emake DESTDIR="${D}" install || die
	dohtml -a png,html,texi,sdw -r doc/*
	# workaround
	rm -fR "${D}/usr/include"
	mv "${D}/usr/bin/mpeg3cat" "${D}/usr/bin/mpeg3cat.hv"
	mv "${D}/usr/bin/mpeg3dump" "${D}/usr/bin/mpeg3dump.hv"
	mv "${D}/usr/bin/mpeg3toc" "${D}/usr/bin/mpeg3toc.hv"
	ln -s /usr/bin/mpeg2enc "${D}/usr/$(get_libdir)/cinelerra/mpeg2enc.plugin"
}

pkg_postinst () {
	elog "Please note that this is unofficial and somewhat experimental code."
	elog "See cvs.cinelerra.org for a list of changes to the official cinelerra"
	elog "release."
}



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-video/cinelerra-cvs: ChangeLog cinelerra-cvs-20080602.ebuild
@ 2008-06-23 23:43 Hanno Boeck (hanno)
  0 siblings, 0 replies; 2+ messages in thread
From: Hanno Boeck (hanno) @ 2008-06-23 23:43 UTC (permalink / raw
  To: gentoo-commits

hanno       08/06/23 23:43:16

  Modified:             ChangeLog cinelerra-cvs-20080602.ebuild
  Log:
  cinelerra: fix libtool 2.2 build
  (Portage version: 2.2_rc1/cvs/Linux 2.6.25.8 i686)

Revision  Changes    Path
1.47                 media-video/cinelerra-cvs/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/cinelerra-cvs/ChangeLog?rev=1.47&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/cinelerra-cvs/ChangeLog?rev=1.47&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/cinelerra-cvs/ChangeLog?r1=1.46&r2=1.47

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/cinelerra-cvs/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog	21 Jun 2008 13:11:16 -0000	1.46
+++ ChangeLog	23 Jun 2008 23:43:15 -0000	1.47
@@ -1,6 +1,10 @@
 # ChangeLog for media-video/cinelerra-cvs
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/cinelerra-cvs/ChangeLog,v 1.46 2008/06/21 13:11:16 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/cinelerra-cvs/ChangeLog,v 1.47 2008/06/23 23:43:15 hanno Exp $
+
+  23 Jun 2008; Hanno Boeck <hanno@gentoo.org>
+  +files/cinelerra-libtool22.diff, cinelerra-cvs-20080602.ebuild:
+  Fix build with libtool 2.2.
 
   21 Jun 2008; Hanno Boeck <hanno@gentoo.org>
   -files/cinelerra-cvs-gcc-4.3.patch, -files/cinelerra-compilewarnings.diff,



1.2                  media-video/cinelerra-cvs/cinelerra-cvs-20080602.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/cinelerra-cvs/cinelerra-cvs-20080602.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/cinelerra-cvs/cinelerra-cvs-20080602.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/cinelerra-cvs/cinelerra-cvs-20080602.ebuild?r1=1.1&r2=1.2

Index: cinelerra-cvs-20080602.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/cinelerra-cvs/cinelerra-cvs-20080602.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- cinelerra-cvs-20080602.ebuild	3 Jun 2008 13:31:17 -0000	1.1
+++ cinelerra-cvs-20080602.ebuild	23 Jun 2008 23:43:16 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/cinelerra-cvs/cinelerra-cvs-20080602.ebuild,v 1.1 2008/06/03 13:31:17 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/cinelerra-cvs/cinelerra-cvs-20080602.ebuild,v 1.2 2008/06/23 23:43:16 hanno Exp $
 
 WANT_AUTOMAKE=1.9
 WANT_AUTOCONF=2.5
@@ -65,6 +65,7 @@
 	unpack ${A}
 	cd "${S}"
 	epatch "${FILESDIR}/${PN}-defaultx264tocqp.patch"
+	epatch "${FILESDIR}/cinelerra-libtool22.diff"
 	AT_M4DIR="m4" eautoreconf
 }
 



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-06-23 23:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-03 13:31 [gentoo-commits] gentoo-x86 commit in media-video/cinelerra-cvs: ChangeLog cinelerra-cvs-20080602.ebuild Hanno Boeck (hanno)
  -- strict thread matches above, loose matches on Subject: below --
2008-06-23 23:43 Hanno Boeck (hanno)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox