Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/frei0r-plugins/
Date: Mon, 29 Aug 2016 16:04:57
Message-Id: 1472486675.230cf9adddf268f7467989e2aec75bf9598f7995.aballier@gentoo
1 commit: 230cf9adddf268f7467989e2aec75bf9598f7995
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 29 16:04:30 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 29 16:04:35 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=230cf9ad
7
8 media-plugins/frei0r-plugins: bump to 1.5.0
9
10 Package-Manager: portage-2.3.0
11
12 media-plugins/frei0r-plugins/Manifest | 1 +
13 .../frei0r-plugins/frei0r-plugins-1.5.0.ebuild | 62 ++++++++++++++++++++++
14 2 files changed, 63 insertions(+)
15
16 diff --git a/media-plugins/frei0r-plugins/Manifest b/media-plugins/frei0r-plugins/Manifest
17 index c61cafb..10688df 100644
18 --- a/media-plugins/frei0r-plugins/Manifest
19 +++ b/media-plugins/frei0r-plugins/Manifest
20 @@ -1,2 +1,3 @@
21 DIST frei0r-plugins-1.3.tar.gz 1092809 SHA256 b25da901115aa7f960cf5e541057266fddf132a7521d628e6cb344c9f16c0236 SHA512 3fcbdb61b656db42b841df6485ca06e2fe2bb8ca16dc054f9154408f843c4170454f8b9fc619b49989f6da9990b67eb7ac6b548dd0fbfb560fdb0f2789346f90 WHIRLPOOL d79a14eae912bd9739b498c7e4d2949529f3e212835a337023bd9760bc9a1dbf239fb4e8cb7f038060d945932df725559fbf283c6362e2777d171126859eff05
22 DIST frei0r-plugins-1.4.tar.gz 1164909 SHA256 8470fcabde9f341b729be3be16385ffc8383d6f3328213907a43851b6e83be57 SHA512 48e5da48a8886242bc5f38911f943d28d507d802076f5fcd2b5c9adc29ed40cb37f30316d4f4c253d279f17eb00c6acad47a7be3aeeec0def7a4aca1130b34fa WHIRLPOOL 6245799e4c56e80ca75db0a75836912412b7b91d55719a5d1d76c27f11a1df0f3ca8d3106903b6535a250cd5579be981bf8b01373c2bca7db1cf2857e449eb5e
23 +DIST frei0r-plugins-1.5.0.tar.gz 1519006 SHA256 781cf84a6c2a9a3252f54d2967b57f6de75a31fc1684371e112638c981f72b60 SHA512 9be0384421ff5ac9000dcda9acefb5cb2b6dc05ea72d9771fae990cb5fad4424dcef8dd15c1e5031a89169f914af8c7a30e47934ad007a3bc0150f3c005bc6bf WHIRLPOOL c582118da0d832edd10bf3e4473edb5ff352d67d723d84381befda0cee7deaaeb5f200b5db49603055d620921669d9e0346a7654db2f12e8d922419e7456eaf3
24
25 diff --git a/media-plugins/frei0r-plugins/frei0r-plugins-1.5.0.ebuild b/media-plugins/frei0r-plugins/frei0r-plugins-1.5.0.ebuild
26 new file mode 100644
27 index 00000000..992ae73
28 --- /dev/null
29 +++ b/media-plugins/frei0r-plugins/frei0r-plugins-1.5.0.ebuild
30 @@ -0,0 +1,62 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=4
36 +inherit cmake-utils multilib
37 +
38 +DESCRIPTION="A minimalistic plugin API for video effects"
39 +HOMEPAGE="http://www.dyne.org/software/frei0r/"
40 +SRC_URI="http://files.dyne.org/frei0r/releases/${P}.tar.gz"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~amd64-fbsd ~x86-fbsd"
45 +IUSE="doc +facedetect +scale0tilt"
46 +
47 +RDEPEND="x11-libs/cairo
48 + facedetect? ( >=media-libs/opencv-2.3.0 )
49 + scale0tilt? ( >=media-libs/gavl-1.2.0 )"
50 +DEPEND="${RDEPEND}
51 + virtual/pkgconfig
52 + doc? ( app-doc/doxygen )"
53 +
54 +DOCS=( AUTHORS.txt ChangeLog.txt README.txt TODO.txt )
55 +
56 +src_prepare() {
57 + local f=CMakeLists.txt
58 +
59 + sed -i \
60 + -e '/set(CMAKE_C_FLAGS/d' \
61 + -e "/LIBDIR.*frei0r-1/s:lib:$(get_libdir):" \
62 + ${f} || die
63 +
64 + # https://bugs.gentoo.org/418243
65 + sed -i \
66 + -e '/set.*CMAKE_C_FLAGS/s:"): ${CMAKE_C_FLAGS}&:' \
67 + src/filter/*/${f} || die
68 +}
69 +
70 +src_configure() {
71 + local mycmakeargs=(
72 + $(cmake-utils_use "!facedetect" "WITHOUT_OPENCV" )
73 + $(cmake-utils_use "!scale0tilt" "WITHOUT_GAVL" )
74 + )
75 + cmake-utils_src_configure
76 +}
77 +
78 +src_compile() {
79 + cmake-utils_src_compile
80 +
81 + if use doc; then
82 + pushd doc
83 + doxygen || die
84 + popd
85 + fi
86 +}
87 +
88 +src_install() {
89 + cmake-utils_src_install
90 +
91 + use doc && dohtml -r doc/html
92 +}