Skip to content

Commit

Permalink
media-libs/faac: Bump to version 1.29.7.4
Browse files Browse the repository at this point in the history
Package-Manager: Portage-2.3.8, Repoman-2.3.3
  • Loading branch information
Lars Wendler committed Sep 5, 2017
1 parent b6d91bb commit f5991cf
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
1 change: 1 addition & 0 deletions media-libs/faac/Manifest
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
DIST faac-1.28.tar.gz 678891 SHA256 c5141199f4cfb17d749c36ba8cfe4b25f838da67c22f0fec40228b6b9c3d19df SHA512 0ef721ad28835e95cad41afc0cb6130e1ebb634cb6dd4b40f649bc2269b7bb5bf2887f6d8f023c74628d521f8bdf55b4dd070f972ecff162a5fe0384e026235b WHIRLPOOL fe56f3c2b40670f03e0c1880b253d7f0cc6e318c0b407f4e57fb7eaeac8692c6de9829402e670ddc0f397396935131ade0f8dadfc89b88fcdedecbf404e1b54e
DIST faac-1.29.6.2.tar.gz 494674 SHA256 8beffc640893c765719721354ea915286f914e3e0de265afc2fa730255126692 SHA512 0065def77e90c2343bc57e5b2e78987806ff8ef03a8f600bc5ceaa1ddecd4ffd0f23839498e311e7e6f25517fbcd6d86c6b8f2fe2daf14f81b05097968e4005d WHIRLPOOL e343e045d53b19d1ec0c3ba63c78c6c7edce3f757d2bfebe952242ba62b6a3018e9bb21a03a19797e1201e005cbba7645a36a90dc9dde2d9bc7939536bc020ee
DIST faac-1.29.7.3.tar.gz 497155 SHA256 39a8c2b622b6374362a5e5d2481fdef208f732f4ba4b84038a2c20029e39beb6 SHA512 265aff7d02ec4a9fcc96831ad4f4da943f0bbfc0b08975ad8bd6fca420b1747edb1231f9f29a1dc483e82050351ac5fa464e06b4d03feeb7e8a226b4ea892e0f WHIRLPOOL 3277e058804f6a16d5a11ccfd380269e80eec78d3ca8530ca306481ec15d132dcc8912bf7cbd427470d295fc14a4c8da308ecc1e4ceae9cfade546a0ef61b953
DIST faac-1.29.7.4.tar.gz 488685 SHA256 374e0a2c166e4c67cc049e6b76b0158ba881156b9c428142104340fb7fcf6abc SHA512 b9f812cf4075ce7ad11833dff19bf6a8ebed5a0d73e0472b1d9798e2764b43e19a55689a6ec0fca86742bb3f62ca1bde21747386816d3d4c45f08e3c558b69d4 WHIRLPOOL 027f919f85d354f7991e778377dafcbad517d45b6599a1fded0a814a4578162e6f21019b58826cbf2a6767d15f3994a68ad2d11b44c006e77880c139e64792d1
55 changes: 55 additions & 0 deletions media-libs/faac/faac-1.29.7.4.ebuild
Original file line number Diff line number Diff line change
@@ -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
}

0 comments on commit f5991cf

Please sign in to comment.