From: "Alexis Ballier" <aballier@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/frei0r-plugins/
Date: Wed, 28 Jun 2017 11:19:24 +0000 (UTC) [thread overview]
Message-ID: <1498648734.3701f4f7f33e9a686bf00e292f64a7d7738abc3f.aballier@gentoo> (raw)
commit: 3701f4f7f33e9a686bf00e292f64a7d7738abc3f
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 28 11:18:54 2017 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed Jun 28 11:18:54 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3701f4f7
media-plugins/frei0r-plugins: bump to 1.6.1
Package-Manager: Portage-2.3.6, Repoman-2.3.2
media-plugins/frei0r-plugins/Manifest | 1 +
.../frei0r-plugins/frei0r-plugins-1.6.1.ebuild | 65 ++++++++++++++++++++++
2 files changed, 66 insertions(+)
diff --git a/media-plugins/frei0r-plugins/Manifest b/media-plugins/frei0r-plugins/Manifest
index 82273b1119b..8b69c3b32b3 100644
--- a/media-plugins/frei0r-plugins/Manifest
+++ b/media-plugins/frei0r-plugins/Manifest
@@ -1,2 +1,3 @@
DIST frei0r-plugins-1.5.0.tar.gz 1519006 SHA256 781cf84a6c2a9a3252f54d2967b57f6de75a31fc1684371e112638c981f72b60 SHA512 9be0384421ff5ac9000dcda9acefb5cb2b6dc05ea72d9771fae990cb5fad4424dcef8dd15c1e5031a89169f914af8c7a30e47934ad007a3bc0150f3c005bc6bf WHIRLPOOL c582118da0d832edd10bf3e4473edb5ff352d67d723d84381befda0cee7deaaeb5f200b5db49603055d620921669d9e0346a7654db2f12e8d922419e7456eaf3
DIST frei0r-plugins-1.6.0.tar.gz 1090145 SHA256 ab2d7254f3a822944252f6c85453eeb8b38fd9368e087034c8d47d68fe6e36fe SHA512 0736c3e874d9406777e9dd1d7010e6ddd87c656df6d803d2dc689e1d6ee0d053aaaab5991484b58d142f14fe52f8dc51a31d2a6604f06d567fbb3414cb62645d WHIRLPOOL eecbf00dc9cfc9929b6a550e39a0e938b096a221b7b30213e616528c3c3a1a8bf78cd4765a5d40d03196fe1a00040d089490ed35aa6a9fab5b33333b728e7420
+DIST frei0r-plugins-1.6.1.tar.gz 1103969 SHA256 e0c24630961195d9bd65aa8d43732469e8248e8918faa942cfb881769d11515e SHA512 843790389e6de83817d1c3744a91d3365864bb0c22cf6598707ccba5ec8933f6209434011cde1303e16edd89f6cde2f22aa1fb6eca3548d892a2c77332c44aac WHIRLPOOL 4b05f48d2ee0cdab6af16a2c3ff656e1bf764ad495214ea6653b20b9df6a1104ca40c86f25abddd7b4a1c3f015294986022a3026c824c67b7d099b0bedf2e5cc
diff --git a/media-plugins/frei0r-plugins/frei0r-plugins-1.6.1.ebuild b/media-plugins/frei0r-plugins/frei0r-plugins-1.6.1.ebuild
new file mode 100644
index 00000000000..6c92b93da41
--- /dev/null
+++ b/media-plugins/frei0r-plugins/frei0r-plugins-1.6.1.ebuild
@@ -0,0 +1,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 ~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
+}
next reply other threads:[~2017-06-28 11:19 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-28 11:19 Alexis Ballier [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-19 3:47 [gentoo-commits] repo/gentoo:master commit in: media-plugins/frei0r-plugins/ Matt Jolly
2023-06-13 18:04 Arthur Zamarin
2023-06-13 18:03 Arthur Zamarin
2023-03-04 6:13 Arthur Zamarin
2023-03-04 5:49 Arthur Zamarin
2022-12-03 4:47 WANG Xuerui
2022-11-10 15:17 Alexis Ballier
2022-08-19 8:14 Andreas Sturmlechner
2022-08-19 5:52 Andreas Sturmlechner
2022-08-17 15:39 Sam James
2022-08-17 14:30 Sam James
2022-08-17 14:29 Sam James
2022-02-20 1:07 Sam James
2021-08-24 21:02 Marek Szuba
2021-02-14 20:30 Andreas Sturmlechner
2021-02-14 20:30 Andreas Sturmlechner
2021-01-03 19:40 Sam James
2021-01-01 5:46 Sam James
2021-01-01 3:13 Sam James
2020-01-26 10:26 Georgy Yakovlev
2018-10-04 19:46 Andreas Sturmlechner
2018-10-04 19:46 Andreas Sturmlechner
2018-07-21 15:08 Mikle Kolyada
2018-07-20 22:40 Thomas Deutschmann
2018-05-13 19:20 Aaron Bauman
2017-07-11 8:41 Alexis Ballier
2017-06-01 9:09 Alexis Ballier
2017-05-26 12:54 Alexis Ballier
2017-04-17 9:26 Alexis Ballier
2017-02-12 18:03 Johannes Huber
2017-02-12 17:01 Agostino Sarubbo
2017-02-04 11:47 Jeroen Roovers
2017-01-31 11:43 Agostino Sarubbo
2017-01-31 9:13 Agostino Sarubbo
2017-01-30 15:01 Johannes Huber
2016-08-29 16:04 Alexis Ballier
2015-11-05 15:51 Alexis Ballier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1498648734.3701f4f7f33e9a686bf00e292f64a7d7738abc3f.aballier@gentoo \
--to=aballier@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox