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-plugins/frei0r-plugins/
Date: Thu, 04 Oct 2018 19:46:42
Message-Id: 1538682340.16e7ced40f201908b35cedb69961f534c1988323.asturm@gentoo
1 commit: 16e7ced40f201908b35cedb69961f534c1988323
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 4 19:45:40 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 4 19:45:40 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16e7ced4
7
8 media-plugins/frei0r-plugins: Drop old
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11 Package-Manager: Portage-2.3.50, Repoman-2.3.11
12
13 media-plugins/frei0r-plugins/Manifest | 2 -
14 .../frei0r-plugins/frei0r-plugins-1.5.0.ebuild | 65 ----------------------
15 .../frei0r-plugins/frei0r-plugins-1.6.0.ebuild | 65 ----------------------
16 3 files changed, 132 deletions(-)
17
18 diff --git a/media-plugins/frei0r-plugins/Manifest b/media-plugins/frei0r-plugins/Manifest
19 index da63e8c8bd7..c172fc28be6 100644
20 --- a/media-plugins/frei0r-plugins/Manifest
21 +++ b/media-plugins/frei0r-plugins/Manifest
22 @@ -1,3 +1 @@
23 -DIST frei0r-plugins-1.5.0.tar.gz 1519006 BLAKE2B 6b47190c2104616536796ee40d9779d8df55fee233983864e9fcbba157b9d242bab73ab25ea6ccb3784cfb3150fb83f57daf3d0621877ac1af5a33caa18328d9 SHA512 9be0384421ff5ac9000dcda9acefb5cb2b6dc05ea72d9771fae990cb5fad4424dcef8dd15c1e5031a89169f914af8c7a30e47934ad007a3bc0150f3c005bc6bf
24 -DIST frei0r-plugins-1.6.0.tar.gz 1090145 BLAKE2B 8c6bc2ff55109601d5a78f580eca97c846d8aff1660c8118a95d5057e84398713a873d7159cd982a806266f3d55f3cd912ebaa37fd5fa150082ec3a4ea92b2bc SHA512 0736c3e874d9406777e9dd1d7010e6ddd87c656df6d803d2dc689e1d6ee0d053aaaab5991484b58d142f14fe52f8dc51a31d2a6604f06d567fbb3414cb62645d
25 DIST frei0r-plugins-1.6.1.tar.gz 1103969 BLAKE2B febcfc0a5918834e38c2aad2016c0b72f3fed731732e482ae8f9564bb5c2e0825ce050149f6728a8263d6caef11810b33ee3edfb697b0f8a212ae996e0085f45 SHA512 843790389e6de83817d1c3744a91d3365864bb0c22cf6598707ccba5ec8933f6209434011cde1303e16edd89f6cde2f22aa1fb6eca3548d892a2c77332c44aac
26
27 diff --git a/media-plugins/frei0r-plugins/frei0r-plugins-1.5.0.ebuild b/media-plugins/frei0r-plugins/frei0r-plugins-1.5.0.ebuild
28 deleted file mode 100644
29 index 46c0dd3169a..00000000000
30 --- a/media-plugins/frei0r-plugins/frei0r-plugins-1.5.0.ebuild
31 +++ /dev/null
32 @@ -1,65 +0,0 @@
33 -# Copyright 1999-2018 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -
38 -inherit cmake-utils multilib
39 -
40 -DESCRIPTION="A minimalistic plugin API for video effects"
41 -HOMEPAGE="https://www.dyne.org/software/frei0r/"
42 -SRC_URI="https://files.dyne.org/frei0r/releases/${P}.tar.gz"
43 -
44 -LICENSE="GPL-2"
45 -SLOT="0"
46 -KEYWORDS="amd64 ~arm hppa ppc x86 ~amd64-fbsd ~x86-fbsd"
47 -IUSE="doc +facedetect +scale0tilt"
48 -
49 -RDEPEND="x11-libs/cairo
50 - facedetect? ( >=media-libs/opencv-2.3.0:= )
51 - scale0tilt? ( >=media-libs/gavl-1.2.0 )"
52 -DEPEND="${RDEPEND}
53 - virtual/pkgconfig
54 - doc? ( app-doc/doxygen )"
55 -
56 -DOCS=( AUTHORS.txt ChangeLog.txt README.txt TODO.txt )
57 -
58 -src_prepare() {
59 - cmake-utils_src_prepare
60 -
61 - local f=CMakeLists.txt
62 -
63 - sed -i \
64 - -e '/set(CMAKE_C_FLAGS/d' \
65 - -e "/LIBDIR.*frei0r-1/s:lib:$(get_libdir):" \
66 - ${f} || die
67 -
68 - # https://bugs.gentoo.org/418243
69 - sed -i \
70 - -e '/set.*CMAKE_C_FLAGS/s:"): ${CMAKE_C_FLAGS}&:' \
71 - src/filter/*/${f} || die
72 -}
73 -
74 -src_configure() {
75 - local mycmakeargs=(
76 - -DWITHOUT_OPENCV=$(usex !facedetect)
77 - -DWITHOUT_GAVL=$(usex !scale0tilt)
78 - )
79 -
80 - cmake-utils_src_configure
81 -}
82 -
83 -src_compile() {
84 - cmake-utils_src_compile
85 -
86 - if use doc; then
87 - pushd doc
88 - doxygen || die
89 - popd
90 - fi
91 -}
92 -
93 -src_install() {
94 - cmake-utils_src_install
95 -
96 - use doc && dodoc -r doc/html
97 -}
98
99 diff --git a/media-plugins/frei0r-plugins/frei0r-plugins-1.6.0.ebuild b/media-plugins/frei0r-plugins/frei0r-plugins-1.6.0.ebuild
100 deleted file mode 100644
101 index 59c5f9f4674..00000000000
102 --- a/media-plugins/frei0r-plugins/frei0r-plugins-1.6.0.ebuild
103 +++ /dev/null
104 @@ -1,65 +0,0 @@
105 -# Copyright 1999-2018 Gentoo Foundation
106 -# Distributed under the terms of the GNU General Public License v2
107 -
108 -EAPI=6
109 -
110 -inherit cmake-utils multilib
111 -
112 -DESCRIPTION="A minimalistic plugin API for video effects"
113 -HOMEPAGE="https://www.dyne.org/software/frei0r/"
114 -SRC_URI="https://files.dyne.org/frei0r/releases/${P}.tar.gz"
115 -
116 -LICENSE="GPL-2"
117 -SLOT="0"
118 -KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86 ~amd64-fbsd ~x86-fbsd"
119 -IUSE="doc +facedetect +scale0tilt"
120 -
121 -RDEPEND="x11-libs/cairo
122 - facedetect? ( >=media-libs/opencv-2.3.0:= )
123 - scale0tilt? ( >=media-libs/gavl-1.2.0 )"
124 -DEPEND="${RDEPEND}
125 - virtual/pkgconfig
126 - doc? ( app-doc/doxygen )"
127 -
128 -DOCS=( AUTHORS.txt ChangeLog.txt README.txt TODO.txt )
129 -
130 -src_prepare() {
131 - cmake-utils_src_prepare
132 -
133 - local f=CMakeLists.txt
134 -
135 - sed -i \
136 - -e '/set(CMAKE_C_FLAGS/d' \
137 - -e "/LIBDIR.*frei0r-1/s:lib:$(get_libdir):" \
138 - ${f} || die
139 -
140 - # https://bugs.gentoo.org/418243
141 - sed -i \
142 - -e '/set.*CMAKE_C_FLAGS/s:"): ${CMAKE_C_FLAGS}&:' \
143 - src/filter/*/${f} || die
144 -}
145 -
146 -src_configure() {
147 - local mycmakeargs=(
148 - -DWITHOUT_OPENCV=$(usex !facedetect)
149 - -DWITHOUT_GAVL=$(usex !scale0tilt)
150 - )
151 -
152 - cmake-utils_src_configure
153 -}
154 -
155 -src_compile() {
156 - cmake-utils_src_compile
157 -
158 - if use doc; then
159 - pushd doc
160 - doxygen || die
161 - popd
162 - fi
163 -}
164 -
165 -src_install() {
166 - cmake-utils_src_install
167 -
168 - use doc && dodoc -r doc/html
169 -}