public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/faac/
Date: Tue, 15 Aug 2017 10:03:52 +0000 (UTC)	[thread overview]
Message-ID: <1502791425.169d507f08df43fb629ff55d1a449ea8235d5e51.polynomial-c@gentoo> (raw)

commit:     169d507f08df43fb629ff55d1a449ea8235d5e51
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 15 10:02:54 2017 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Aug 15 10:03:45 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=169d507f

media-libs/faac: Bump to version 1.29.4

Package-Manager: Portage-2.3.7, Repoman-2.3.3

 media-libs/faac/Manifest           |  1 +
 media-libs/faac/faac-1.29.4.ebuild | 55 ++++++++++++++++++++++++++++++++++++++
 media-libs/faac/metadata.xml       |  3 +++
 3 files changed, 59 insertions(+)

diff --git a/media-libs/faac/Manifest b/media-libs/faac/Manifest
index 14a640f5754..2de796f234b 100644
--- a/media-libs/faac/Manifest
+++ b/media-libs/faac/Manifest
@@ -1,3 +1,4 @@
 DIST faac-1.28.tar.gz 678891 SHA256 c5141199f4cfb17d749c36ba8cfe4b25f838da67c22f0fec40228b6b9c3d19df SHA512 0ef721ad28835e95cad41afc0cb6130e1ebb634cb6dd4b40f649bc2269b7bb5bf2887f6d8f023c74628d521f8bdf55b4dd070f972ecff162a5fe0384e026235b WHIRLPOOL fe56f3c2b40670f03e0c1880b253d7f0cc6e318c0b407f4e57fb7eaeac8692c6de9829402e670ddc0f397396935131ade0f8dadfc89b88fcdedecbf404e1b54e
 DIST faac-1.29.2.tar.gz 228886 SHA256 c7c46b2b98e99e1597233039f7dd3923f2f9aa91d7d84bcac10d73614a369c63 SHA512 ddcb546b24aa3daf1c0cf0b07597924e32bd86badf4409d715880281062cd9559edee55e27eaf138a41f4a4d15925241c3041965cbc100a6a19a8f62633d1599 WHIRLPOOL 6a3c0cf9f385e384e056d2e1db3825cc66a118fd3ba4fff47664e655b928d19b5fb50b414ea6bd7f6202f71aefc8f63de0ca0f4620ec53bce86e2c5c5a3657e7
 DIST faac-1.29.3.tar.gz 224353 SHA256 cef2897843baf366983ad29f471cd1c4dcc95762b86d283a925514bcc5cf5a3f SHA512 8c25d6127c90e37bb6ae4ce72ba4dbdd9c9999b9c76de58bba61c106fa33ed9c545462589a97be4bd5bcbd2849a55b7d0fe3ed494b5d92ffee001bba2a3c7b61 WHIRLPOOL da4f898b8ba94956f71372f553a405042a63bc8295af3df2de7a11eece329bf81371a04e1547cda1658ebbd1fd1ccb8d645b118e36bd48592e6f99dd03492189
+DIST faac-1.29.4.tar.gz 493035 SHA256 0481d0500bc9ac7c851d0942f2c1a61c81144e1d43ebe402db39aa153d3a7416 SHA512 0e2aa631d6f9fb029b5298c456ffc598a9f77b9d47b60e908c8724fdebec9af295827bbf0954b4eedbbf512dad7698cd6fde62ef9a367763217042cd504e02f5 WHIRLPOOL 173da68d92349d584c07b1b909d6fb11d20f1f7941eacad20d6e5ba2fb87676663e34708bdc31afa8045e29b9581c0fcef2d5cdbcb36415a60aaba04a5b85705

diff --git a/media-libs/faac/faac-1.29.4.ebuild b/media-libs/faac/faac-1.29.4.ebuild
new file mode 100644
index 00000000000..cd62caf3d01
--- /dev/null
+++ b/media-libs/faac/faac-1.29.4.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+# eutils for einstalldocs
+inherit autotools epatch epunt-cxx eutils ltprune multilib-minimal
+
+DESCRIPTION="Free MPEG-4 audio codecs by AudioCoding.com"
+HOMEPAGE="http://www.audiocoding.com"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="LGPL-2.1 MPEG-4"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+IUSE="digitalradio static-libs"
+
+RDEPEND=""
+DEPEND="${RDEPEND}"
+DOCS=( AUTHORS ChangeLog NEWS README TODO )
+
+src_prepare() {
+	default
+
+	sed -i -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' configure.ac || die #466984
+
+	eautoreconf
+	epunt_cxx
+}
+
+multilib_src_configure() {
+	local myconf=(
+		$(use_enable digitalradio drm)
+		$(use_enable static-libs static)
+	)
+
+	ECONF_SOURCE="${S}" econf ${myconf[@]}
+
+	# do not build the frontend for non default abis
+	if [ "${ABI}" != "${DEFAULT_ABI}" ] ; then
+		sed -i -e 's/frontend//' Makefile || die
+	fi
+}
+
+multilib_src_install() {
+	emake DESTDIR="${D}" install
+	prune_libtool_files
+}
+
+multilib_src_install_all() {
+	einstalldocs
+	docinto html
+	dodoc docs/*.html
+	insinto /usr/share/doc/${PF}/pdf
+	doins docs/libfaac.pdf
+}

diff --git a/media-libs/faac/metadata.xml b/media-libs/faac/metadata.xml
index 76160dab072..1f862763fa1 100644
--- a/media-libs/faac/metadata.xml
+++ b/media-libs/faac/metadata.xml
@@ -5,6 +5,9 @@
 		<email>sound@gentoo.org</email>
 		<name>Gentoo Sound project</name>
 	</maintainer>
+	<use>
+		<flag name="digitalradio">Digital Radio Mondiale (warning: disables other decoders)</flag>
+	</use>
 	<upstream>
 		<remote-id type="sourceforge">faac</remote-id>
 	</upstream>


             reply	other threads:[~2017-08-15 10:03 UTC|newest]

Thread overview: 48+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-15 10:03 Lars Wendler [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-12-05  5:30 [gentoo-commits] repo/gentoo:master commit in: media-libs/faac/ WANG Xuerui
2021-08-25  0:10 Marek Szuba
2021-01-08  9:52 Miroslav Šulc
2021-01-08  9:52 Miroslav Šulc
2021-01-07 16:52 Sam James
2021-01-03  1:26 Sam James
2020-12-31 11:22 Sergei Trofimovich
2020-12-31  3:26 Sam James
2020-12-31  3:26 Sam James
2020-12-30  2:20 Sam James
2020-07-02 23:52 Lars Wendler
2019-12-23 15:25 David Seifert
2019-05-15 13:54 Aaron Bauman
2018-10-02 12:11 Andreas Sturmlechner
2018-10-02 12:11 Andreas Sturmlechner
2018-10-02 10:58 Tobias Klausmann
2018-09-24 18:17 Markus Meier
2018-09-21  7:41 Agostino Sarubbo
2018-09-19 19:51 Sergei Trofimovich
2018-09-19 17:35 Thomas Deutschmann
2018-09-18 17:15 Matt Turner
2018-09-18 17:15 Matt Turner
2017-11-21 15:09 Lars Wendler
2017-11-06 15:29 Lars Wendler
2017-11-06 15:29 Lars Wendler
2017-10-25  7:47 Lars Wendler
2017-10-19  8:19 Jeroen Roovers
2017-10-17 10:37 Lars Wendler
2017-10-17 10:37 Lars Wendler
2017-10-11  7:47 Lars Wendler
2017-10-11  7:47 Lars Wendler
2017-10-03 20:59 Lars Wendler
2017-10-03 20:59 Lars Wendler
2017-09-05 22:03 Lars Wendler
2017-09-05 22:03 Lars Wendler
2017-08-29 23:32 Lars Wendler
2017-08-29 23:32 Lars Wendler
2017-08-22 14:49 Lars Wendler
2017-08-21  8:31 Lars Wendler
2017-08-21  8:31 Lars Wendler
2017-08-15 10:03 Lars Wendler
2017-07-24  8:48 Lars Wendler
2017-07-20  9:35 Lars Wendler
2017-07-20  9:35 Lars Wendler
2017-06-19 20:07 Alexis Ballier
2017-04-14 17:03 Michał Górny
2017-04-14 16:28 Michał Górny

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=1502791425.169d507f08df43fb629ff55d1a449ea8235d5e51.polynomial-c@gentoo \
    --to=polynomial-c@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