media-gfx/synfig: bump to v1.4.2
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST synfig-1.4.1.tar.gz 5061453 BLAKE2B dfc32351c9c18d700863b4cf598649fe3c7fe121988ab71f3da92fcfab6b2b200f935e7bcd64b44ff3c20437e12d8b21dcb5a5e357895f07cb0f4e787ef4db6a SHA512 2bd301861d7540e59d9f625cc35a75a5b456009b7eeea4bbe0ae5ac0d51247f001fe248f181eab8a9c5d522e9830700c4d54fccf821a9311d1bc51d4015effde
|
||||
DIST synfig-1.4.2.tar.gz 5132756 BLAKE2B 6027c4a39e72af5d85f7409cb46f5dc04084b4a845d592d1cebb2207ee9a2241f47a79e65b2cb6fe3bcecfac1984be4e12105f6a7e18b1aeb1767788f286e210 SHA512 0d94027505d5ea3780f54bd8f606e1e4cc6cb1e18debdff66d4871642a0a321fe687042a0d2d1dbe1037007ac44d02e74edd7fa9dcda62ea3e5486ec47de948c
|
||||
|
||||
77
media-gfx/synfig/synfig-1.4.2.ebuild
Normal file
77
media-gfx/synfig/synfig-1.4.2.ebuild
Normal file
@@ -0,0 +1,77 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
#Ebuild based on the booboo overlay version
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit autotools eutils multilib flag-o-matic
|
||||
|
||||
# Original TODO from bgo-overlay
|
||||
# Todo: enable OpenGL (currently not compiling)
|
||||
# enable OpenCl, needs check whether OpenCL is actually usable
|
||||
|
||||
DESCRIPTION="Film-Quality Vector Animation (core engine)"
|
||||
HOMEPAGE="http://www.synfig.org/"
|
||||
SRC_URI="https://github.com/synfig/synfig/releases/download/v${PV}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="imagemagick ffmpeg dv openexr truetype jpeg fontconfig opencl"
|
||||
|
||||
DEPEND="
|
||||
~dev-cpp/ETL-${PV}
|
||||
>=dev-cpp/glibmm-2.4:2
|
||||
dev-cpp/libxmlpp:2.6
|
||||
dev-libs/boost:=
|
||||
dev-libs/libsigc++:2
|
||||
media-libs/libpng:=
|
||||
media-libs/mlt:=
|
||||
sci-libs/fftw:3.0
|
||||
sys-libs/zlib:=
|
||||
x11-libs/cairo:=
|
||||
x11-libs/pango:=
|
||||
ffmpeg? ( media-video/ffmpeg:= )
|
||||
fontconfig? ( media-libs/fontconfig )
|
||||
jpeg? ( virtual/jpeg )
|
||||
opencl? ( dev-libs/ocl-icd )
|
||||
openexr? ( media-libs/openexr:= )
|
||||
truetype? ( media-libs/freetype:= )
|
||||
"
|
||||
RDEPEND="${DEPEND}
|
||||
dv? ( media-libs/libdv:= )
|
||||
imagemagick? ( media-gfx/imagemagick:= )
|
||||
"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${PN}-1.4.0-fix-cflags.patch
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
$(use_with ffmpeg) \
|
||||
$(use_with fontconfig) \
|
||||
$(use_with imagemagick) \
|
||||
$(use_with dv libdv) \
|
||||
$(use_with openexr ) \
|
||||
$(use_with truetype freetype) \
|
||||
$(use_with jpeg) \
|
||||
$(use_with opencl)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install
|
||||
dodoc AUTHORS NEWS README TODO
|
||||
|
||||
find "${ED}" -name '*.la' -delete || die
|
||||
|
||||
echo "LDPATH=\"${EPREFIX}/usr/$(get_libdir)/synfig/modules\"" > "${T}/99synfig"
|
||||
doenvd "${T}/99synfig"
|
||||
}
|
||||
Reference in New Issue
Block a user