public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Alexis Ballier" <aballier@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/kvazaar/
Date: Fri, 30 Oct 2015 12:40:25 +0000 (UTC)	[thread overview]
Message-ID: <1446208816.793cfe55265a87c421c00665900c5d8e0c1b421d.aballier@gentoo> (raw)

commit:     793cfe55265a87c421c00665900c5d8e0c1b421d
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 30 12:39:54 2015 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Oct 30 12:40:16 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=793cfe55

media-libs/kvazaar: Initial import. Ebuild by me.

Package-Manager: portage-2.2.23

 media-libs/kvazaar/Manifest             |  1 +
 media-libs/kvazaar/kvazaar-0.7.1.ebuild | 62 +++++++++++++++++++++++++++++++++
 media-libs/kvazaar/kvazaar-9999.ebuild  | 62 +++++++++++++++++++++++++++++++++
 media-libs/kvazaar/metadata.xml         |  8 +++++
 4 files changed, 133 insertions(+)

diff --git a/media-libs/kvazaar/Manifest b/media-libs/kvazaar/Manifest
new file mode 100644
index 0000000..23e738f
--- /dev/null
+++ b/media-libs/kvazaar/Manifest
@@ -0,0 +1 @@
+DIST kvazaar-0.7.1.tar.gz 288339 SHA256 c3693f801f0e717b1dcab3494d3e18a1687861af1a2c33b8878b2f70bcf18164 SHA512 a7d0a68e4b898f7dbb4175ab8a005d88786f522e185c1814a36a48395d34398880fc18e6baeebe4fef0ea97829e937df2ec9f547e05a9a1b2fdb74e260390e2a WHIRLPOOL ad640f5cf4c8238c7fbda3d126e1d7d37b3619a3eb000737eabf75b464fbf37cbc1de11c643725fb8cfbbfe8aa21df12d2c7b7aed0df29f7d8774256e78818a0

diff --git a/media-libs/kvazaar/kvazaar-0.7.1.ebuild b/media-libs/kvazaar/kvazaar-0.7.1.ebuild
new file mode 100644
index 0000000..50c477d
--- /dev/null
+++ b/media-libs/kvazaar/kvazaar-0.7.1.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+SCM=""
+
+if [ "${PV#9999}" != "${PV}" ] ; then
+	SCM="git-r3"
+	EGIT_REPO_URI="https://github.com/ultravideo/kvazaar"
+fi
+
+inherit multilib multilib-minimal ${SCM}
+
+DESCRIPTION="An open-source HEVC encoder"
+HOMEPAGE="http://ultravideo.cs.tut.fi/ https://github.com/ultravideo/kvazaar"
+
+if [ "${PV#9999}" = "${PV}" ] ; then
+	SRC_URI="https://github.com/ultravideo/kvazaar/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+IUSE="cpu_flags_x86_avx2 static-libs"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+S="${WORKDIR}/${P}/src"
+
+ASM_DEP=">=dev-lang/yasm-1.2.0"
+DEPEND="${DEPEND}
+	abi_x86_32? ( ${ASM_DEP} )
+	abi_x86_64? ( ${ASM_DEP} )"
+
+src_prepare() {
+	multilib_copy_sources
+}
+
+multilib_src_compile() {
+	emake \
+		ARCH="${CHOST%%-*}" \
+		$(usex cpu_flags_x86_avx2 "" "KVZ_DISABLE_AVX2=true") \
+		lib-shared \
+		$(usex static-libs "lib-static" "") \
+		$(multilib_is_native_abi && echo cli)
+}
+
+multilib_src_install() {
+	emake \
+		DESTDIR="${D}" \
+		PREFIX="${EPREFIX}/usr" \
+		LIBDIR="${EPREFIX}/usr/$(get_libdir)" \
+		install-pc install-lib \
+		$(usex static-libs "install-static" "") \
+		$(multilib_is_native_abi && echo install-prog)
+}
+
+multilib_src_install_all() {
+	dodoc "${WORKDIR}/${P}/README.md" "${WORKDIR}/${P}/CREDITS" "${WORKDIR}/${P}/doc/"*.txt
+}

diff --git a/media-libs/kvazaar/kvazaar-9999.ebuild b/media-libs/kvazaar/kvazaar-9999.ebuild
new file mode 100644
index 0000000..50c477d
--- /dev/null
+++ b/media-libs/kvazaar/kvazaar-9999.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+SCM=""
+
+if [ "${PV#9999}" != "${PV}" ] ; then
+	SCM="git-r3"
+	EGIT_REPO_URI="https://github.com/ultravideo/kvazaar"
+fi
+
+inherit multilib multilib-minimal ${SCM}
+
+DESCRIPTION="An open-source HEVC encoder"
+HOMEPAGE="http://ultravideo.cs.tut.fi/ https://github.com/ultravideo/kvazaar"
+
+if [ "${PV#9999}" = "${PV}" ] ; then
+	SRC_URI="https://github.com/ultravideo/kvazaar/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+IUSE="cpu_flags_x86_avx2 static-libs"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+S="${WORKDIR}/${P}/src"
+
+ASM_DEP=">=dev-lang/yasm-1.2.0"
+DEPEND="${DEPEND}
+	abi_x86_32? ( ${ASM_DEP} )
+	abi_x86_64? ( ${ASM_DEP} )"
+
+src_prepare() {
+	multilib_copy_sources
+}
+
+multilib_src_compile() {
+	emake \
+		ARCH="${CHOST%%-*}" \
+		$(usex cpu_flags_x86_avx2 "" "KVZ_DISABLE_AVX2=true") \
+		lib-shared \
+		$(usex static-libs "lib-static" "") \
+		$(multilib_is_native_abi && echo cli)
+}
+
+multilib_src_install() {
+	emake \
+		DESTDIR="${D}" \
+		PREFIX="${EPREFIX}/usr" \
+		LIBDIR="${EPREFIX}/usr/$(get_libdir)" \
+		install-pc install-lib \
+		$(usex static-libs "install-static" "") \
+		$(multilib_is_native_abi && echo install-prog)
+}
+
+multilib_src_install_all() {
+	dodoc "${WORKDIR}/${P}/README.md" "${WORKDIR}/${P}/CREDITS" "${WORKDIR}/${P}/doc/"*.txt
+}

diff --git a/media-libs/kvazaar/metadata.xml b/media-libs/kvazaar/metadata.xml
new file mode 100644
index 0000000..c572c7d
--- /dev/null
+++ b/media-libs/kvazaar/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <herd>video</herd>
+  <maintainer>
+    <email>media-video@gentoo.org</email>
+  </maintainer>
+</pkgmetadata>


             reply	other threads:[~2015-10-30 12:40 UTC|newest]

Thread overview: 85+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-30 12:40 Alexis Ballier [this message]
  -- strict thread matches above, loose matches on Subject: below --
2015-11-13  9:11 [gentoo-commits] repo/gentoo:master commit in: media-libs/kvazaar/ Alexis Ballier
2016-01-18 15:13 Alexis Ballier
2016-01-29 19:41 Alexis Ballier
2016-07-26  9:27 Alexis Ballier
2016-07-26 10:51 Chí-Thanh Christopher Nguyễn
2016-10-03  9:04 Alexis Ballier
2016-10-15  5:17 Jeroen Roovers
2016-10-15  9:42 Alexis Ballier
2016-10-15 11:47 Pacho Ramos
2016-10-15 11:47 Pacho Ramos
2016-10-15 11:47 Pacho Ramos
2017-02-15 15:05 Agostino Sarubbo
2017-02-15 15:56 Agostino Sarubbo
2017-02-17 17:28 Markus Meier
2017-02-18  8:51 Jeroen Roovers
2017-02-22 13:19 Jeroen Roovers
2017-02-22 13:24 Michael Weber
2017-02-23 12:35 Michael Weber
2017-03-02 15:52 Tobias Klausmann
2017-03-10 12:08 Alexis Ballier
2017-04-05 14:07 Tobias Klausmann
2017-06-10 20:14 Sergei Trofimovich
2017-06-10 20:14 Sergei Trofimovich
2017-06-16  9:44 Alexis Ballier
2017-07-01 20:58 Sergei Trofimovich
2017-07-04 10:17 Agostino Sarubbo
2017-07-04 15:49 Agostino Sarubbo
2017-07-15  5:03 Markus Meier
2017-11-30 13:57 Alexis Ballier
2018-03-06 22:35 Sergei Trofimovich
2018-03-06 22:35 Sergei Trofimovich
2018-03-25 23:29 Sergei Trofimovich
2018-04-16 19:03 Sergei Trofimovich
2018-11-30 22:45 Andreas Sturmlechner
2018-11-30 22:45 Andreas Sturmlechner
2018-11-30 22:45 Andreas Sturmlechner
2018-12-04 14:08 Craig Andrews
2019-01-03 14:58 Sergei Trofimovich
2019-01-03 15:03 Sergei Trofimovich
2019-01-04  0:02 Thomas Deutschmann
2019-01-13 10:01 Sergei Trofimovich
2019-01-17 21:32 Mikle Kolyada
2019-01-30 13:20 Tobias Klausmann
2019-02-04 20:16 Markus Meier
2019-02-12 21:03 Sergei Trofimovich
2020-04-14  7:28 Sergei Trofimovich
2020-08-31  9:10 Alexis Ballier
2021-05-13 16:39 Sam James
2021-05-13 16:58 Sam James
2021-05-13 16:58 Sam James
2021-05-13 17:01 Sam James
2021-05-13 17:01 Sam James
2021-05-13 17:02 Sam James
2021-05-17 21:02 Sergei Trofimovich
2021-08-24 14:33 Marek Szuba
2022-03-15 13:27 Alexis Ballier
2022-09-03  5:27 Sam James
2022-09-05  3:56 Sam James
2022-11-12 16:06 Arthur Zamarin
2022-11-12 16:06 Arthur Zamarin
2022-11-12 16:07 Arthur Zamarin
2022-11-12 16:09 Arthur Zamarin
2022-11-12 17:48 Matt Turner
2022-12-02 18:44 WANG Xuerui
2023-03-20  5:36 Sam James
2023-03-20 13:57 Yixun Lan
2023-03-26 16:22 Arthur Zamarin
2023-04-05 13:32 WANG Xuerui
2023-04-05 13:32 WANG Xuerui
2023-04-08  6:47 Viorel Munteanu
2023-06-01 16:41 Arthur Zamarin
2023-06-01 16:42 Arthur Zamarin
2023-12-01 19:13 Arthur Zamarin
2023-12-02 17:26 Arthur Zamarin
2023-12-22  5:14 Ionen Wolkens
2024-03-08 20:02 Sam James
2024-03-11 16:17 Viorel Munteanu
2024-03-12  4:29 Ionen Wolkens
2024-04-07 23:35 Sam James
2024-04-07 23:37 Sam James
2024-11-23 14:25 Sam James
2024-11-23 15:05 Michał Górny
2024-11-23 17:21 Michał Górny
2024-11-25 20:42 Sam James

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=1446208816.793cfe55265a87c421c00665900c5d8e0c1b421d.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