diff options
author | Olivier Laurantin <olivier.laurantin@laposte.net> | 2018-01-13 22:22:15 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-01-14 00:28:35 +0100 |
commit | 172d618e17f20f7cddc633caeb8986acea7e8ad8 (patch) | |
tree | 72ca1fff6ad70f69e64fb9012a486e5ff457e886 /media-video | |
parent | sci-chemistry/molequeue: EAPI 6, missing deps (diff) | |
download | gentoo-172d618e17f20f7cddc633caeb8986acea7e8ad8.tar.gz gentoo-172d618e17f20f7cddc633caeb8986acea7e8ad8.tar.bz2 gentoo-172d618e17f20f7cddc633caeb8986acea7e8ad8.zip |
media-video/ffdiaporama: Drop qt4 support
Drop qt4 support and build unconditionally with qt5
Bug: https://bugs.gentoo.org/644418
Closes: https://github.com/gentoo/gentoo/pull/6854
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/ffdiaporama/ffdiaporama-2.2_pre20140701-r1.ebuild | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/media-video/ffdiaporama/ffdiaporama-2.2_pre20140701-r1.ebuild b/media-video/ffdiaporama/ffdiaporama-2.2_pre20140701-r1.ebuild new file mode 100644 index 000000000000..9cf6638df7ad --- /dev/null +++ b/media-video/ffdiaporama/ffdiaporama-2.2_pre20140701-r1.ebuild @@ -0,0 +1,80 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit xdg-utils gnome2-utils qmake-utils + +MY_PV=${PV%_pre20140701} +BIN_PV=${MY_PV}.devel.2014.0701 +RSC_PV=${MY_PV}.devel.2014.0503 +TMT_PV=1.0.2014.0125 +DESCRIPTION="Movie creator from photos and video clips" +HOMEPAGE="http://ffdiaporama.tuxfamily.org" +SRC_URI="http://download.tuxfamily.org/${PN}/Packages/Devel/${PN}_bin_${BIN_PV}.tar.gz + http://download.tuxfamily.org/${PN}/Packages/Devel/${PN}_rsc_${RSC_PV}.tar.gz + https://dev.gentoo.org/~jstein/dist/ffdiaporama-2.2-libav11.patch + https://dev.gentoo.org/~jstein/dist/ffdiaporama-2.2-ffmpeg-3.0.patch + texturemate? ( http://download.tuxfamily.org/${PN}/Packages/Stable/${PN}_texturemate_${TMT_PV}.tar.gz )" + +LICENSE="GPL-2 + texturemate? ( CC-BY-3.0 )" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="libav openclipart texturemate" + +RDEPEND=" + media-gfx/exiv2 + media-libs/taglib + openclipart? ( media-gfx/openclipart[svg,-gzip] ) + dev-qt/qtconcurrent:5 + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qthelp:5 + dev-qt/qtmultimedia:5 + dev-qt/qtsql:5[sqlite] + dev-qt/qtsvg:5 + dev-qt/qtxml:5 + libav? ( >=media-video/libav-11:0=[encode] ) + !libav? ( >=media-video/ffmpeg-2.8:0=[encode] )" +DEPEND="${RDEPEND}" + +DOCS=( authors.txt ) +PATCHES=( "${DISTDIR}"/${PN}-${MY_PV}-{ffmpeg-3.0,libav11}.patch ) + +S="${WORKDIR}/ffDiaporama" + +src_prepare() { + echo "SUBDIRS += ../ffDiaporama_rsc" >> ffDiaporama.pro || die + if use texturemate; then + echo "SUBDIRS += ../ffDiaporama_texturemate" >> ffDiaporama.pro || die + fi + default_src_prepare +} + +src_configure() { + eqmake5 QMAKE_CFLAGS_ISYSTEM= +} + +src_install() { + emake INSTALL_ROOT="${D}" install + if use openclipart; then + dosym ../../clipart/openclipart /usr/share/ffDiaporama/clipart/openclipart + fi +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + xdg_desktop_database_update + xdg_mimeinfo_database_update + gnome2_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_mimeinfo_database_update + gnome2_icon_cache_update +} |