blob: f15646eaddd7a18f09a82f7136f1410d23a7384f (
plain)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..11} )
inherit cmake python-single-r1 toolchain-funcs virtualx
DESCRIPTION="Video editing library used by OpenShot"
HOMEPAGE="https://www.openshot.org/"
SRC_URI="https://github.com/OpenShot/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0/21"
KEYWORDS="~amd64 ~x86"
IUSE="babl doc examples +imagemagick +opencv +python test"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
RESTRICT="!test? ( test )"
RDEPEND="dev-libs/jsoncpp:0=
dev-libs/protobuf:=
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtmultimedia:5[widgets]
dev-qt/qtsvg:5
>=media-libs/libopenshot-audio-0.3.0:0=
media-video/ffmpeg:0=[encode,x264,xvid,vpx,mp3,theora,vorbis]
net-libs/cppzmq
net-libs/zeromq
babl? ( media-libs/babl )
imagemagick? ( >=media-gfx/imagemagick-7:0=[cxx] )
opencv? ( >=media-libs/opencv-4.5.2:=[contrib,contribdnn] )
python? ( ${PYTHON_DEPS} )"
DEPEND="${RDEPEND}"
BDEPEND="doc? ( app-doc/doxygen )
python? ( dev-lang/swig )
test? (
dev-cpp/catch:0
dev-libs/unittest++
)"
pkg_pretend() {
[[ ${MERGE_TYPE} != binary ]] && tc-check-openmp
}
pkg_setup() {
[[ ${MERGE_TYPE} != binary ]] && tc-check-openmp
use python && python-single-r1_pkg_setup
}
src_prepare() {
cmake_src_prepare
# https://github.com/OpenShot/libopenshot/issues/17
use test || cmake_comment_add_subdirectory tests
}
src_configure() {
local mycmakeargs=(
-DDISABLE_BUNDLED_JSONCPP=ON
-DENABLE_MAGICK=$(usex imagemagick)
-DENABLE_OPENCV=$(usex opencv)
-DENABLE_RUBY=OFF # TODO: add ruby support
-DENABLE_PYTHON=$(usex python)
-DBUILD_TESTING=$(usex test)
-DENABLE_LIB_DOCS=$(usex doc)
-DUSE_SYSTEM_JSONCPP=ON
# Resvg not packaged yet
-DCMAKE_DISABLE_FIND_PACKAGE_Resvg=ON
$(cmake_use_find_package imagemagick ImageMagick)
$(cmake_use_find_package babl babl)
)
use python && mycmakeargs+=(
-DPYTHON_EXECUTABLE="${PYTHON}"
-DPYTHON_INCLUDE_DIR="$(python_get_includedir)"
-DPYTHON_LIBRARY="$(python_get_library_path)"
)
cmake_src_configure
}
src_compile() {
cmake_src_compile
use doc && cmake_build doc
}
src_test() {
# https://github.com/OpenShot/libopenshot/issues/922 exclude broken test
virtx cmake_src_test -E '(Caption:caption effect)' || die
}
src_install() {
local DOCS=( AUTHORS README.md doc/HW-ACCEL.md )
use examples && DOCS+=( examples/ )
use doc && local HTML_DOCS=( "${BUILD_DIR}"/doc/html/. )
cmake_src_install
use python && python_optimize
}
|