diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-11-04 00:24:46 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-11-04 00:24:46 +0000 |
commit | ccd0545568df035b481ffaf9ccf3d95fc8d86fb0 (patch) | |
tree | e6e582e783b07ef470214e49fa0436a24ddce577 | |
parent | Keyword ~mips wrt #338426 (again, thanks to mattst88 for testing). (diff) | |
download | gentoo-2-ccd0545568df035b481ffaf9ccf3d95fc8d86fb0.tar.gz gentoo-2-ccd0545568df035b481ffaf9ccf3d95fc8d86fb0.tar.bz2 gentoo-2-ccd0545568df035b481ffaf9ccf3d95fc8d86fb0.zip |
New snapshot (because upstream applied our patchset).
(Portage version: 2.2.0_alpha3/cvs/Linux x86_64)
-rw-r--r-- | media-video/cinelerra/ChangeLog | 8 | ||||
-rw-r--r-- | media-video/cinelerra/cinelerra-20101104.ebuild | 83 |
2 files changed, 90 insertions, 1 deletions
diff --git a/media-video/cinelerra/ChangeLog b/media-video/cinelerra/ChangeLog index 4b7b47032ad7..869d31ebae3b 100644 --- a/media-video/cinelerra/ChangeLog +++ b/media-video/cinelerra/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-video/cinelerra # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/cinelerra/ChangeLog,v 1.45 2010/09/23 17:38:34 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/cinelerra/ChangeLog,v 1.46 2010/11/04 00:24:46 ssuominen Exp $ + +*cinelerra-20101104 (04 Nov 2010) + + 04 Nov 2010; Samuli Suominen <ssuominen@gentoo.org> + +cinelerra-20101104.ebuild: + New snapshot (because upstream applied our patchset). 23 Sep 2010; Samuli Suominen <ssuominen@gentoo.org> cinelerra-20100320.ebuild: diff --git a/media-video/cinelerra/cinelerra-20101104.ebuild b/media-video/cinelerra/cinelerra-20101104.ebuild new file mode 100644 index 000000000000..c374703fcd9d --- /dev/null +++ b/media-video/cinelerra/cinelerra-20101104.ebuild @@ -0,0 +1,83 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/cinelerra/cinelerra-20101104.ebuild,v 1.1 2010/11/04 00:24:46 ssuominen Exp $ + +EAPI=3 +inherit autotools eutils multilib flag-o-matic + +DESCRIPTION="Professional Video Editor (Unofficial GIT-snapshot)" +HOMEPAGE="http://www.cinelerra.org/" +SRC_URI="http://dev.gentoo.org/~ssuominen/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="3dnow alsa altivec css ieee1394 mmx opengl oss" + +RDEPEND=">=media-libs/libpng-1.4.0 + >=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 + media-video/mjpegtools + >=media-libs/freetype-2.1.10 + >=media-libs/openexr-1.2.2 + >=media-libs/libvorbis-1.2.3 + >=media-libs/libogg-1.1.4 + >=media-libs/libtheora-1.1.1 + x11-libs/libX11 + x11-libs/libXv + x11-libs/libXxf86vm + x11-libs/libXext + x11-libs/libXvMC + x11-libs/libXft + alsa? ( media-libs/alsa-lib ) + ieee1394? ( media-libs/libiec61883 + >=sys-libs/libraw1394-1.2.0 + >=sys-libs/libavc1394-0.5.0 ) + opengl? ( virtual/opengl )" +DEPEND="${RDEPEND} + dev-util/pkgconfig + mmx? ( dev-lang/nasm )" + +src_prepare() { + AT_M4DIR="m4" eautoreconf +} + +src_configure() { + append-flags -D__STDC_CONSTANT_MACROS #321945 + + econf \ + --disable-dependency-tracking \ + $(use_enable oss) \ + $(use_enable alsa) \ + --disable-esd \ + $(use_enable ieee1394 firewire) \ + $(use_enable css) \ + $(use_enable mmx) \ + $(use_enable 3dnow) \ + $(use_enable altivec) \ + $(use_enable opengl) \ + --with-plugindir=/usr/$(get_libdir)/cinelerra \ + --with-buildinfo=cust/"Gentoo - ${PV}" \ + --with-external-ffmpeg +} + +src_install() { + emake DESTDIR="${D}" install || die + dohtml -a png,html,texi,sdw -r doc/* + + rm -rf "${D}"/usr/include + mv -vf "${D}"/usr/bin/mpeg3cat{,.hv} || die + mv -vf "${D}"/usr/bin/mpeg3dump{,.hv} || die + mv -vf "${D}"/usr/bin/mpeg3toc{,.hv} || die + dosym /usr/bin/mpeg2enc /usr/$(get_libdir)/cinelerra/mpeg2enc.plugin + + find "${D}" -name '*.la' -exec rm -f '{}' + +} |