Add new cinelerra version
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST cin_5.1.20200531-src.tgz 141076068 BLAKE2B 6c3158584672d995dd5e3bc51079340d398cc37ee9bb2b4a41e1792ff694b68b07da382d6ee0a5f44cb6b5310bc0f1e792423f819f322137eee38f7b529c816d SHA512 52449985c17f36a0499c3d952d8624f94f1b7e9fe0020419cb88369c67596dc4f8ebe3c0cb07241cc17f4dfd94d6ea7a346d9313199ee7a4513642ece1a2b0a5
|
||||
DIST cin_5.1.20200630-src.tgz 141305591 BLAKE2B 6054b3459705bfaa0f5cd6a97c2f84c49e8a4435720f82ba43f237cf4d518d7481555a90d2293759233eab3eeb02194a28e2b88a7d127aa4cd4af8f2c0158b79 SHA512 db7775b2b96de851811e74d69d03ce737c4ad106d3176171cc9804250cb7b152a99afb8a28111533c796a0c01d0d30ffcb0a0283d1cf254bd0ce7a2246745740
|
||||
DIST cin_5.1.20200731-src.tgz 143634114 BLAKE2B 93099d1fb5236a485ed8709fb0a49bf6afcf4b7eadeea664c94fceefd316d4db22809709c6bcbb7723d07c8bf03ab3eba012d5ec3843faaa4921c66291c1fd78 SHA512 8e869ccaa86fcafcdc9e6391e4234fd52bcbd8b015d5a77b49ed05a4a048ae6f5f2465cc8ae41c04b8c6fb82f23a32fc0046d96fc3ac7d600ac0fabdc3babb40
|
||||
|
||||
98
media-video/cinelerra/cinelerra-5.1.20200731.ebuild
Normal file
98
media-video/cinelerra/cinelerra-5.1.20200731.ebuild
Normal file
@@ -0,0 +1,98 @@
|
||||
# Copyright 2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
inherit autotools eutils multilib flag-o-matic
|
||||
|
||||
DESCRIPTION="The most advanced non-linear video editor and compositor"
|
||||
HOMEPAGE="http://www.cinelerra-gg.org/"
|
||||
SRC_URI="https://cinelerra-gg.org/download/pkgs/src/cin_${PV}-src.tgz"
|
||||
RESTRICT="primaryuri"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="alsa debug ieee1394 oss dvb v4l shuttle usb lv2 openexr"
|
||||
|
||||
RDEPEND="media-libs/a52dec:=
|
||||
media-libs/faac:=
|
||||
media-libs/faad2:=
|
||||
>=media-libs/freetype-2
|
||||
media-libs/fontconfig
|
||||
media-libs/libdv:=
|
||||
>=media-libs/libogg-1.2:=
|
||||
media-libs/libpng:0=
|
||||
media-libs/libsndfile:=
|
||||
>=media-libs/libtheora-1.1:=
|
||||
>=media-libs/libvorbis-1.3:=
|
||||
>=media-libs/openexr-1.5:=
|
||||
media-libs/tiff:0=
|
||||
media-libs/x264:=
|
||||
media-sound/lame:=
|
||||
>=media-video/mjpegtools-2
|
||||
>=sci-libs/fftw-3
|
||||
x11-libs/libX11:=
|
||||
x11-libs/libXext:=
|
||||
x11-libs/libXft:=
|
||||
x11-libs/libXv:=
|
||||
x11-libs/libXvMC:=
|
||||
x11-libs/libXxf86vm:=
|
||||
x11-libs/libva:=
|
||||
virtual/ffmpeg
|
||||
media-video/ffmpeg:0[postproc(-)]
|
||||
virtual/jpeg:0
|
||||
alsa? ( media-libs/alsa-lib:= )
|
||||
ieee1394? (
|
||||
media-libs/libiec61883:=
|
||||
>=sys-libs/libraw1394-1.2.0:=
|
||||
>=sys-libs/libavc1394-0.5.0:=
|
||||
)
|
||||
virtual/glu
|
||||
virtual/opengl
|
||||
openexr? ( media-libs/openexr:= )"
|
||||
DEPEND="${RDEPEND}
|
||||
app-arch/xz-utils
|
||||
virtual/pkgconfig"
|
||||
BDEPEND=""
|
||||
|
||||
S="${WORKDIR}/cinelerra-5.1"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
append-cppflags -D__STDC_CONSTANT_MACROS #321945
|
||||
append-ldflags -Wl,-z,noexecstack #212959
|
||||
|
||||
local myconf
|
||||
use debug && myconf='--enable-x-error-output'
|
||||
|
||||
econf \
|
||||
--enable-ffmpeg \
|
||||
$(use_with oss) \
|
||||
$(use_with alsa) \
|
||||
--without-esound \
|
||||
$(use_with ieee1394 firewire) \
|
||||
--with-gl \
|
||||
--with-xft \
|
||||
--with-dv \
|
||||
$(use_with dvb) \
|
||||
$(use_with v4l video4linux2) \
|
||||
$(use_with usb shuttle_usb) \
|
||||
$(use_with shuttle) \
|
||||
$(use_with lv2) \
|
||||
$(use_with openexr) \
|
||||
--with-plugin-dir=/usr/$(get_libdir)/${PN} \
|
||||
${myconf}
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake -j1 DESTDIR="${D}" install
|
||||
dohtml -a png,html,texi,sdw -r doc/*
|
||||
|
||||
rm -rf "${D}"/usr/include
|
||||
|
||||
find "${D}" -name '*.la' -type f -delete || die
|
||||
}
|
||||
Reference in New Issue
Block a user