commit:     0fff7ce673b1954555dade1402b12aca481cf074
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 21 20:48:48 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Aug 22 16:05:49 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fff7ce6

media-libs/libdca: 0.0.7 version bump, EAPI-7 bump

Closes: https://bugs.gentoo.org/678716
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 media-libs/libdca/Manifest            |  1 +
 media-libs/libdca/libdca-0.0.7.ebuild | 54 +++++++++++++++++++++++++++++++++++
 2 files changed, 55 insertions(+)

diff --git a/media-libs/libdca/Manifest b/media-libs/libdca/Manifest
index 71a08cd6401..529c4567cff 100644
--- a/media-libs/libdca/Manifest
+++ b/media-libs/libdca/Manifest
@@ -1,2 +1,3 @@
 DIST libdca-0.0.5-constant.patch.bz2 3424 BLAKE2B 
048d7afd856090b5f9d0db1d5894b78d037fa1c03086271342527a1bf04f41ed379b38fe6d72eb9bbf74a864c67710b5f9abe53177cdb2f4f53a8e7502d77c44
 SHA512 
37bd56b8c240f16a6ee86b04d44571345278f8b9dd395cbc307e9fb7e6c001487411d1b4775af19dc97f18fcaed63be97fafeb4fe504f0a76b87022ec792d23e
 DIST libdca-0.0.5.tar.bz2 393291 BLAKE2B 
093e941e8cd25ca52ae43ab16607f8ff3c5ebb95ffc4b29c3cb771b6bf9ba45da4cc8ebd83cd91ccd66b0dd981c32a6c77cb3e90f46093b64b9a483dd854ffb6
 SHA512 
d9f0ed34efeb3f27af8424fcb3e6df56744c6735854a65b5709c02b42b4513b9c4618dcc19eb44293afa051bd95616651bda5fc3b49dfabe975d0babfb1bc287
+DIST libdca-0.0.7.tar.bz2 158232 BLAKE2B 
943ef3845f6b73d3d7a2cc47fd3c59517544c156f46e1be42b7940e11a164d8c533ba0e1436ea7bee95467bb7fdce95bb390e2816ebe7d8e208821eb325cb9de
 SHA512 
dae15d77d066687c882833d5bed8d65a585c1fc0277b7276563c89ddd5a83b35389ec94cca445f38af28a9b01430b72647e9afd1b08f030959e711de1a08924a

diff --git a/media-libs/libdca/libdca-0.0.7.ebuild 
b/media-libs/libdca/libdca-0.0.7.ebuild
new file mode 100644
index 00000000000..0e794c3f210
--- /dev/null
+++ b/media-libs/libdca/libdca-0.0.7.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools flag-o-matic multilib-minimal
+
+DESCRIPTION="Library for decoding DTS Coherent Acoustics streams used in DVD"
+HOMEPAGE="https://www.videolan.org/developers/libdca.html";
+SRC_URI="https://www.videolan.org/pub/videolan/${PN}/${PV}/${P}.tar.bz2";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
+IUSE="debug oss"
+
+DOCS=( AUTHORS ChangeLog NEWS README TODO doc/${PN}.txt )
+
+PATCHES=(
+       "${FILESDIR}"/${PN}-0.0.5-cflags.patch
+       "${FILESDIR}"/${PN}-0.0.5-tests-optional.patch
+)
+
+src_prepare() {
+       default
+       eautoreconf
+}
+
+multilib_src_configure() {
+       append-lfs-flags #328875
+
+       local myeconfargs=(
+               --disable-static
+               $(use_enable debug)
+               $(use_enable oss)
+       )
+       ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
+
+       # Those are thrown away afterwards, don't build them in the first place
+       if [[ "${ABI}" != "${DEFAULT_ABI}" ]] ; then
+               sed -e 's/ libao src//' -i Makefile || die
+       fi
+}
+
+multilib_src_compile() {
+       emake OPT_CFLAGS=""
+}
+
+multilib_src_install() {
+       emake DESTDIR="${D}" install
+
+       find "${D}" -name '*.la' -type f -delete || die
+       rm "${D}"/usr/$(get_libdir)/libdts.a || die
+}

Reply via email to