From: "Alexis Ballier" <aballier@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/kvazaar/
Date: Mon, 18 Jan 2016 15:13:41 +0000 (UTC) [thread overview]
Message-ID: <1453130014.7b4560e017ba5383287a0ce4623decf7c4033d80.aballier@gentoo> (raw)
commit: 7b4560e017ba5383287a0ce4623decf7c4033d80
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 18 15:13:26 2016 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Jan 18 15:13:34 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b4560e0
media-libs/kvazaar: update live ebuild and bump to 0.8.2
Package-Manager: portage-2.2.26
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
media-libs/kvazaar/Manifest | 1 +
.../{kvazaar-9999.ebuild => kvazaar-0.8.2.ebuild} | 32 +++++++---------------
media-libs/kvazaar/kvazaar-9999.ebuild | 32 +++++++---------------
3 files changed, 21 insertions(+), 44 deletions(-)
diff --git a/media-libs/kvazaar/Manifest b/media-libs/kvazaar/Manifest
index f3675dd..e901045 100644
--- a/media-libs/kvazaar/Manifest
+++ b/media-libs/kvazaar/Manifest
@@ -1,2 +1,3 @@
DIST kvazaar-0.7.1.tar.gz 288339 SHA256 c3693f801f0e717b1dcab3494d3e18a1687861af1a2c33b8878b2f70bcf18164 SHA512 a7d0a68e4b898f7dbb4175ab8a005d88786f522e185c1814a36a48395d34398880fc18e6baeebe4fef0ea97829e937df2ec9f547e05a9a1b2fdb74e260390e2a WHIRLPOOL ad640f5cf4c8238c7fbda3d126e1d7d37b3619a3eb000737eabf75b464fbf37cbc1de11c643725fb8cfbbfe8aa21df12d2c7b7aed0df29f7d8774256e78818a0
DIST kvazaar-0.7.2.tar.gz 293147 SHA256 623e955d1dbf4f469a57c540537e977f3cead2abcb43d640e2fa0f568168cede SHA512 db06bed953cbe69f2388adfeeecdd150f36a436199e9627a06c26e4fee740255d47757522a3216c2aaca6233fbff0bf64ab5fa6ac6a26cf5af88bfd07c7d78a0 WHIRLPOOL 371379ed6c30c6db3c729e0cfded3f300157a62255b9865f4f45666354f1e2e35cad2e869600de662745251f044f7852dcb8e08e820f4d41f3e7efea13ccb645
+DIST kvazaar-0.8.2.tar.gz 422425 SHA256 1b9354a639ab6c902e974780b39112b5e75477205611f88b54562c895182b945 SHA512 e5089ae28b467c19e854dcf53ac48d14aa01b5f6a72d7a11e66e146c7b9cc11068377a9021f03a697dcf66a66dd42180d2bab24d62c00ee4e2763c5d93754a85 WHIRLPOOL 54c9de8df2b35a2192ba56680d7edc047b1cccc0682875b5a5f6dacec5e67daf8137576d4fc9f86139a54ce82dd29355cfce3fd66589961eb09fe329f64dd15c
diff --git a/media-libs/kvazaar/kvazaar-9999.ebuild b/media-libs/kvazaar/kvazaar-0.8.2.ebuild
similarity index 54%
copy from media-libs/kvazaar/kvazaar-9999.ebuild
copy to media-libs/kvazaar/kvazaar-0.8.2.ebuild
index 425dd69..972f429 100644
--- a/media-libs/kvazaar/kvazaar-9999.ebuild
+++ b/media-libs/kvazaar/kvazaar-0.8.2.ebuild
@@ -11,7 +11,7 @@ if [ "${PV#9999}" != "${PV}" ] ; then
EGIT_REPO_URI="https://github.com/ultravideo/kvazaar"
fi
-inherit multilib multilib-minimal toolchain-funcs ${SCM}
+inherit multilib autotools multilib-minimal toolchain-funcs ${SCM}
DESCRIPTION="An open-source HEVC encoder"
HOMEPAGE="http://ultravideo.cs.tut.fi/ https://github.com/ultravideo/kvazaar"
@@ -22,12 +22,12 @@ if [ "${PV#9999}" = "${PV}" ] ; then
fi
LICENSE="LGPL-2.1"
-SLOT="0"
+# subslot = libkvazaar major
+SLOT="0/3"
IUSE="cpu_flags_x86_avx2 static-libs"
DEPEND=""
RDEPEND="${DEPEND}"
-S="${WORKDIR}/${P}/src"
ASM_DEP=">=dev-lang/yasm-1.2.0"
DEPEND="${DEPEND}
@@ -35,29 +35,17 @@ DEPEND="${DEPEND}
abi_x86_64? ( ${ASM_DEP} )"
src_prepare() {
- multilib_copy_sources
+ eautoreconf
}
multilib_src_compile() {
- tc-export CC
- 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)
+ ECONF_SOURCE="${S}" \
+ econf \
+ --docdir "/usr/share/doc/${PF}" \
+ $(use_enable static-libs static) \
+ $(use_enable cpu_flags_x86_avx2 asm)
}
multilib_src_install_all() {
- dodoc "${WORKDIR}/${P}/README.md" "${WORKDIR}/${P}/CREDITS" "${WORKDIR}/${P}/doc/"*.txt
+ find "${ED}" -name '*.la' -delete
}
diff --git a/media-libs/kvazaar/kvazaar-9999.ebuild b/media-libs/kvazaar/kvazaar-9999.ebuild
index 425dd69..972f429 100644
--- a/media-libs/kvazaar/kvazaar-9999.ebuild
+++ b/media-libs/kvazaar/kvazaar-9999.ebuild
@@ -11,7 +11,7 @@ if [ "${PV#9999}" != "${PV}" ] ; then
EGIT_REPO_URI="https://github.com/ultravideo/kvazaar"
fi
-inherit multilib multilib-minimal toolchain-funcs ${SCM}
+inherit multilib autotools multilib-minimal toolchain-funcs ${SCM}
DESCRIPTION="An open-source HEVC encoder"
HOMEPAGE="http://ultravideo.cs.tut.fi/ https://github.com/ultravideo/kvazaar"
@@ -22,12 +22,12 @@ if [ "${PV#9999}" = "${PV}" ] ; then
fi
LICENSE="LGPL-2.1"
-SLOT="0"
+# subslot = libkvazaar major
+SLOT="0/3"
IUSE="cpu_flags_x86_avx2 static-libs"
DEPEND=""
RDEPEND="${DEPEND}"
-S="${WORKDIR}/${P}/src"
ASM_DEP=">=dev-lang/yasm-1.2.0"
DEPEND="${DEPEND}
@@ -35,29 +35,17 @@ DEPEND="${DEPEND}
abi_x86_64? ( ${ASM_DEP} )"
src_prepare() {
- multilib_copy_sources
+ eautoreconf
}
multilib_src_compile() {
- tc-export CC
- 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)
+ ECONF_SOURCE="${S}" \
+ econf \
+ --docdir "/usr/share/doc/${PF}" \
+ $(use_enable static-libs static) \
+ $(use_enable cpu_flags_x86_avx2 asm)
}
multilib_src_install_all() {
- dodoc "${WORKDIR}/${P}/README.md" "${WORKDIR}/${P}/CREDITS" "${WORKDIR}/${P}/doc/"*.txt
+ find "${ED}" -name '*.la' -delete
}
next reply other threads:[~2016-01-18 15:14 UTC|newest]
Thread overview: 85+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-18 15:13 Alexis Ballier [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-25 20:42 [gentoo-commits] repo/gentoo:master commit in: media-libs/kvazaar/ Sam James
2024-11-23 17:21 Michał Górny
2024-11-23 15:05 Michał Górny
2024-11-23 14:25 Sam James
2024-04-07 23:37 Sam James
2024-04-07 23:35 Sam James
2024-03-12 4:29 Ionen Wolkens
2024-03-11 16:17 Viorel Munteanu
2024-03-08 20:02 Sam James
2023-12-22 5:14 Ionen Wolkens
2023-12-02 17:26 Arthur Zamarin
2023-12-01 19:13 Arthur Zamarin
2023-06-01 16:42 Arthur Zamarin
2023-06-01 16:41 Arthur Zamarin
2023-04-08 6:47 Viorel Munteanu
2023-04-05 13:32 WANG Xuerui
2023-04-05 13:32 WANG Xuerui
2023-03-26 16:22 Arthur Zamarin
2023-03-20 13:57 Yixun Lan
2023-03-20 5:36 Sam James
2022-12-02 18:44 WANG Xuerui
2022-11-12 17:48 Matt Turner
2022-11-12 16:09 Arthur Zamarin
2022-11-12 16:07 Arthur Zamarin
2022-11-12 16:06 Arthur Zamarin
2022-11-12 16:06 Arthur Zamarin
2022-09-05 3:56 Sam James
2022-09-03 5:27 Sam James
2022-03-15 13:27 Alexis Ballier
2021-08-24 14:33 Marek Szuba
2021-05-17 21:02 Sergei Trofimovich
2021-05-13 17:02 Sam James
2021-05-13 17:01 Sam James
2021-05-13 17:01 Sam James
2021-05-13 16:58 Sam James
2021-05-13 16:58 Sam James
2021-05-13 16:39 Sam James
2020-08-31 9:10 Alexis Ballier
2020-04-14 7:28 Sergei Trofimovich
2019-02-12 21:03 Sergei Trofimovich
2019-02-04 20:16 Markus Meier
2019-01-30 13:20 Tobias Klausmann
2019-01-17 21:32 Mikle Kolyada
2019-01-13 10:01 Sergei Trofimovich
2019-01-04 0:02 Thomas Deutschmann
2019-01-03 15:03 Sergei Trofimovich
2019-01-03 14:58 Sergei Trofimovich
2018-12-04 14:08 Craig Andrews
2018-11-30 22:45 Andreas Sturmlechner
2018-11-30 22:45 Andreas Sturmlechner
2018-11-30 22:45 Andreas Sturmlechner
2018-04-16 19:03 Sergei Trofimovich
2018-03-25 23:29 Sergei Trofimovich
2018-03-06 22:35 Sergei Trofimovich
2018-03-06 22:35 Sergei Trofimovich
2017-11-30 13:57 Alexis Ballier
2017-07-15 5:03 Markus Meier
2017-07-04 15:49 Agostino Sarubbo
2017-07-04 10:17 Agostino Sarubbo
2017-07-01 20:58 Sergei Trofimovich
2017-06-16 9:44 Alexis Ballier
2017-06-10 20:14 Sergei Trofimovich
2017-06-10 20:14 Sergei Trofimovich
2017-04-05 14:07 Tobias Klausmann
2017-03-10 12:08 Alexis Ballier
2017-03-02 15:52 Tobias Klausmann
2017-02-23 12:35 Michael Weber
2017-02-22 13:24 Michael Weber
2017-02-22 13:19 Jeroen Roovers
2017-02-18 8:51 Jeroen Roovers
2017-02-17 17:28 Markus Meier
2017-02-15 15:56 Agostino Sarubbo
2017-02-15 15:05 Agostino Sarubbo
2016-10-15 11:47 Pacho Ramos
2016-10-15 11:47 Pacho Ramos
2016-10-15 11:47 Pacho Ramos
2016-10-15 9:42 Alexis Ballier
2016-10-15 5:17 Jeroen Roovers
2016-10-03 9:04 Alexis Ballier
2016-07-26 10:51 Chí-Thanh Christopher Nguyễn
2016-07-26 9:27 Alexis Ballier
2016-01-29 19:41 Alexis Ballier
2015-11-13 9:11 Alexis Ballier
2015-10-30 12:40 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=1453130014.7b4560e017ba5383287a0ce4623decf7c4033d80.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