Add new cinelerra version
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST cin_5.1.20191130-src.tgz 131015702 BLAKE2B c609b4daeb18e2828b41f049481f6b71f5293a1793423273bc07442d1e8d5f6847db3e62721619ce1ace274a5489160ba5255560f67ce7d3ff5027ad9fc67617 SHA512 d20780c75d9fe6173e07236a576a0e0b519a95f6c66e467703fee508123425eb16b8f6789a74a61dd8c93fdc8342804cf280ade4376c288e724b736881ee307f
|
||||
DIST cin_5.1.20191231-src.tgz 131055586 BLAKE2B d0828f3bbf1cac0d66f9401493c4c8327542774a9e0ea3c7b58aa4e672d0644968e0eab478dc92e89a5bf10ac360a5a67190affe199b6376fcbb8ceac5ce907d SHA512 dcef23a268486e721375bfe5b398c26eaf9acc362740517ef8763165d071f65c5f8289939205194d2da7701ead1d149b7758667fdece3a4876ec66f87c65a00f
|
||||
DIST cin_5.1.20200131-src.tgz 131094826 BLAKE2B 1eba5bee5865e653b3b04a69bd031a693f37c091d20f99f4444338a59c4bd05c43b6d87d808a54b3b690c10720089983d0f59267593ef278b487f95d27cd08d1 SHA512 7683205221bd6336823698837f979d087a12686fe545589f901b343fd8f02ea9ec08097e89d63529de506c3c58703409d5b4a8d38337fa2bae77a0b6db4e76a1
|
||||
|
||||
98
media-video/cinelerra/cinelerra-5.1.20200131.ebuild
Normal file
98
media-video/cinelerra/cinelerra-5.1.20200131.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(-)] media-libs/libpostproc )
|
||||
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