Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/ffdiaporama/
Date: Tue, 04 Jun 2019 22:00:26
Message-Id: 1559685117.a58f6e39aec913556246dbb222a9e19a9c21cae9.asturm@gentoo
1 commit: a58f6e39aec913556246dbb222a9e19a9c21cae9
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 4 21:51:57 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 4 21:51:57 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a58f6e39
7
8 media-video/ffdiaporama: Drop 2.2_pre20140701-r1
9
10 Package-Manager: Portage-2.3.67, Repoman-2.3.13
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 .../ffdiaporama-2.2_pre20140701-r1.ebuild | 80 ----------------------
14 1 file changed, 80 deletions(-)
15
16 diff --git a/media-video/ffdiaporama/ffdiaporama-2.2_pre20140701-r1.ebuild b/media-video/ffdiaporama/ffdiaporama-2.2_pre20140701-r1.ebuild
17 deleted file mode 100644
18 index 0a8509a3a0b..00000000000
19 --- a/media-video/ffdiaporama/ffdiaporama-2.2_pre20140701-r1.ebuild
20 +++ /dev/null
21 @@ -1,80 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit xdg-utils gnome2-utils qmake-utils
28 -
29 -MY_PV=${PV%_pre20140701}
30 -BIN_PV=${MY_PV}.devel.2014.0701
31 -RSC_PV=${MY_PV}.devel.2014.0503
32 -TMT_PV=1.0.2014.0125
33 -DESCRIPTION="Movie creator from photos and video clips"
34 -HOMEPAGE="http://ffdiaporama.tuxfamily.org"
35 -SRC_URI="http://download.tuxfamily.org/${PN}/Packages/Devel/${PN}_bin_${BIN_PV}.tar.gz
36 - http://download.tuxfamily.org/${PN}/Packages/Devel/${PN}_rsc_${RSC_PV}.tar.gz
37 - https://dev.gentoo.org/~jstein/dist/ffdiaporama-2.2-libav11.patch
38 - https://dev.gentoo.org/~jstein/dist/ffdiaporama-2.2-ffmpeg-3.0.patch
39 - texturemate? ( http://download.tuxfamily.org/${PN}/Packages/Stable/${PN}_texturemate_${TMT_PV}.tar.gz )"
40 -
41 -LICENSE="GPL-2
42 - texturemate? ( CC-BY-3.0 )"
43 -SLOT="0"
44 -KEYWORDS="amd64 x86"
45 -IUSE="libav openclipart texturemate"
46 -
47 -RDEPEND="
48 - media-gfx/exiv2
49 - media-libs/taglib
50 - openclipart? ( media-gfx/openclipart[svg,-gzip] )
51 - dev-qt/qtconcurrent:5
52 - dev-qt/qtcore:5
53 - dev-qt/qtgui:5
54 - dev-qt/qthelp:5
55 - dev-qt/qtmultimedia:5
56 - dev-qt/qtsql:5[sqlite]
57 - dev-qt/qtsvg:5
58 - dev-qt/qtxml:5
59 - libav? ( >=media-video/libav-11:0=[encode] )
60 - !libav? ( >=media-video/ffmpeg-2.8:0=[encode] )"
61 -DEPEND="${RDEPEND}"
62 -
63 -DOCS=( authors.txt )
64 -PATCHES=( "${DISTDIR}"/${PN}-${MY_PV}-{ffmpeg-3.0,libav11}.patch )
65 -
66 -S="${WORKDIR}/ffDiaporama"
67 -
68 -src_prepare() {
69 - echo "SUBDIRS += ../ffDiaporama_rsc" >> ffDiaporama.pro || die
70 - if use texturemate; then
71 - echo "SUBDIRS += ../ffDiaporama_texturemate" >> ffDiaporama.pro || die
72 - fi
73 - default_src_prepare
74 -}
75 -
76 -src_configure() {
77 - eqmake5 QMAKE_CFLAGS_ISYSTEM=
78 -}
79 -
80 -src_install() {
81 - emake INSTALL_ROOT="${D}" install
82 - if use openclipart; then
83 - dosym ../../clipart/openclipart /usr/share/ffDiaporama/clipart/openclipart
84 - fi
85 -}
86 -
87 -pkg_preinst() {
88 - gnome2_icon_savelist
89 -}
90 -
91 -pkg_postinst() {
92 - xdg_desktop_database_update
93 - xdg_mimeinfo_database_update
94 - gnome2_icon_cache_update
95 -}
96 -
97 -pkg_postrm() {
98 - xdg_desktop_database_update
99 - xdg_mimeinfo_database_update
100 - gnome2_icon_cache_update
101 -}