forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
frei0r-plugins-1.6.1.ebuild
65 lines (49 loc) · 1.27 KB
/
frei0r-plugins-1.6.1.ebuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils multilib
DESCRIPTION="A minimalistic plugin API for video effects"
HOMEPAGE="http://www.dyne.org/software/frei0r/"
SRC_URI="http://files.dyne.org/frei0r/releases/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~x86 ~amd64-fbsd ~x86-fbsd"
IUSE="doc +facedetect +scale0tilt"
RDEPEND="x11-libs/cairo
facedetect? ( >=media-libs/opencv-2.3.0:= )
scale0tilt? ( >=media-libs/gavl-1.2.0 )"
DEPEND="${RDEPEND}
virtual/pkgconfig
doc? ( app-doc/doxygen )"
DOCS=( AUTHORS.txt ChangeLog.txt README.txt TODO.txt )
src_prepare() {
cmake-utils_src_prepare
local f=CMakeLists.txt
sed -i \
-e '/set(CMAKE_C_FLAGS/d' \
-e "/LIBDIR.*frei0r-1/s:lib:$(get_libdir):" \
${f} || die
# https://bugs.gentoo.org/418243
sed -i \
-e '/set.*CMAKE_C_FLAGS/s:"): ${CMAKE_C_FLAGS}&:' \
src/filter/*/${f} || die
}
src_configure() {
local mycmakeargs=(
-DWITHOUT_OPENCV=$(usex !facedetect)
-DWITHOUT_GAVL=$(usex !scale0tilt)
)
cmake-utils_src_configure
}
src_compile() {
cmake-utils_src_compile
if use doc; then
pushd doc
doxygen || die
popd
fi
}
src_install() {
cmake-utils_src_install
use doc && dodoc -r doc/html
}