public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/webvfx/
Date: Mon,  3 Feb 2020 15:51:04 +0000 (UTC)	[thread overview]
Message-ID: <1580745034.cac7b7c50ef102c8bb8f3f212e91000acd373524.asturm@gentoo> (raw)

commit:     cac7b7c50ef102c8bb8f3f212e91000acd373524
Author:     reagentoo <reagentoo <AT> gmail <DOT> com>
AuthorDate: Mon Jan 20 08:08:25 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Feb  3 15:50:34 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cac7b7c5

media-libs/webvfx: new package

- dependency library for media-video/shotcut

Closes: https://bugs.gentoo.org/703576
Signed-off-by: Dmitry Baranov <reagentoo <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/14393
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 media-libs/webvfx/Manifest            |  1 +
 media-libs/webvfx/metadata.xml        | 18 ++++++++++
 media-libs/webvfx/webvfx-1.1.0.ebuild | 62 +++++++++++++++++++++++++++++++++++
 3 files changed, 81 insertions(+)

diff --git a/media-libs/webvfx/Manifest b/media-libs/webvfx/Manifest
new file mode 100644
index 00000000000..70d207c06ff
--- /dev/null
+++ b/media-libs/webvfx/Manifest
@@ -0,0 +1 @@
+DIST webvfx-1.1.0.txz 1163312 BLAKE2B a948c967ee8a21f91086b76ac2737a855d6a6a0c576471d9844a7587ee45c8f42553b57b8f5e989dae696924e67c341317c541eef87f28e9a49ff25e8e0aed29 SHA512 f88726ef8ae779f238fe6b784bc53ef47ef67a8d7b524f2c465fdf5de57f37bd388d81ac52b0a7abc30a1c836f801a8b9df0ef183e2507b229dd6431d38c8768

diff --git a/media-libs/webvfx/metadata.xml b/media-libs/webvfx/metadata.xml
new file mode 100644
index 00000000000..3ca5303fe87
--- /dev/null
+++ b/media-libs/webvfx/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>reagentoo@gmail.com</email>
+		<name>Dmitry Baranov</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">mltframework/webvfx</remote-id>
+	</upstream>
+	<use>
+		<flag name="doc">Install doxygen developer documentation</flag>
+	</use>
+</pkgmetadata>

diff --git a/media-libs/webvfx/webvfx-1.1.0.ebuild b/media-libs/webvfx/webvfx-1.1.0.ebuild
new file mode 100644
index 00000000000..7850e11afc0
--- /dev/null
+++ b/media-libs/webvfx/webvfx-1.1.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic qmake-utils toolchain-funcs
+
+DESCRIPTION="Video effects library based on web technologies"
+HOMEPAGE="https://github.com/mltframework/webvfx/"
+SRC_URI="https://github.com/mltframework/${PN}/releases/download/1.1.0/${P}.txz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+BDEPEND="
+	doc? ( app-doc/doxygen )
+"
+RDEPEND="
+	dev-qt/qtcore:5
+	dev-qt/qtdeclarative:5
+	dev-qt/qtgui:5
+	dev-qt/qtnetwork:5
+	dev-qt/qtopengl:5
+	dev-qt/qtquickcontrols:5[widgets]
+	dev-qt/qtwebkit:5
+	dev-qt/qtwidgets:5
+	media-libs/mlt
+"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+	default
+
+	find -name "*.pro" -exec \
+		sed -i -e "s/\(system.*\)pkg-config/\1$(tc-getPKG_CONFIG)/" {} + || die
+
+	sed -i -e "s/\(target.*path.*PREFIX.*\)lib/\1$(get_libdir)/" \
+		webvfx/webvfx.pro || die
+
+	sed -i -e "s/PROJECT_NUMBER=\`.*\`/PROJECT_NUMBER=${PV}/" \
+		all.pro || die
+}
+
+src_configure() {
+	append-cxxflags -Wno-deprecated-declarations
+
+	eqmake5 PREFIX="${EPREFIX}/usr"
+}
+
+src_compile() {
+	emake
+	use doc && emake doxydoc
+}
+
+src_install() {
+	emake INSTALL_ROOT="${D}" install
+
+	use doc && local HTML_DOCS=( doxydoc/. )
+	einstalldocs
+}


             reply	other threads:[~2020-02-03 15:51 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-03 15:51 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-09-19  8:23 [gentoo-commits] repo/gentoo:master commit in: media-libs/webvfx/ Pacho Ramos
2020-09-06 16:46 Andreas Sturmlechner
2020-07-11  8:25 Joonas Niilola
2020-07-11  8:18 Joonas Niilola
2020-07-11  8:18 Joonas Niilola
2020-02-03 15:51 Andreas Sturmlechner

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=1580745034.cac7b7c50ef102c8bb8f3f212e91000acd373524.asturm@gentoo \
    --to=asturm@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