diff options
author | Anna Vyalkova <cyber+gentoo@sysrq.in> | 2022-02-19 19:33:00 +0500 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-02-20 01:02:36 +0000 |
commit | 95eb103649422aac003018f55f76b8a606f1850e (patch) | |
tree | ea819bc2cdf1be7e1dc9a83e102aacc92a938522 /media-plugins/frei0r-plugins | |
parent | sys-auth/polkit: add musl patch to 0.120_p20220127 (diff) | |
download | gentoo-95eb103649422aac003018f55f76b8a606f1850e.tar.gz gentoo-95eb103649422aac003018f55f76b8a606f1850e.tar.bz2 gentoo-95eb103649422aac003018f55f76b8a606f1850e.zip |
media-plugins/frei0r-plugins: fix CMake flags not being passed
Other changes:
* update EAPI 7 -> 8
* use docs.eclass
* remove pkgconfig build dependency (it's a rdep of cmake)
Closes: https://bugs.gentoo.org/833768
Signed-off-by: Anna Vyalkova <cyber+gentoo@sysrq.in>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-plugins/frei0r-plugins')
-rw-r--r-- | media-plugins/frei0r-plugins/frei0r-plugins-1.7.0-r2.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/media-plugins/frei0r-plugins/frei0r-plugins-1.7.0-r2.ebuild b/media-plugins/frei0r-plugins/frei0r-plugins-1.7.0-r2.ebuild new file mode 100644 index 000000000000..1b3d854afda5 --- /dev/null +++ b/media-plugins/frei0r-plugins/frei0r-plugins-1.7.0-r2.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DOCS_BUILDER="doxygen" +DOCS_DIR="doc" +inherit cmake-multilib docs + +DESCRIPTION="A minimalistic plugin API for video effects" +HOMEPAGE="https://www.dyne.org/software/frei0r/" +SRC_URI="https://files.dyne.org/frei0r/releases/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86" +IUSE="doc +facedetect +scale0tilt" + +RDEPEND="x11-libs/cairo[${MULTILIB_USEDEP}] + facedetect? ( >=media-libs/opencv-2.3.0:=[contribdnn,features2d,${MULTILIB_USEDEP}] ) + scale0tilt? ( >=media-libs/gavl-1.2.0[${MULTILIB_USEDEP}] )" +DEPEND="${RDEPEND}" + +DOCS=( AUTHORS.txt ChangeLog.txt README.txt TODO.txt ) +PATCHES=( "${FILESDIR}/ocv4.patch" ) + +src_prepare() { + cmake_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-multilib_src_configure +} + +src_compile() { + cmake-multilib_src_compile + use doc && docs_compile +} |