diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2015-09-10 01:19:03 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2015-09-10 01:19:03 +0300 |
commit | 9179b7edfb2331cbf88705886d4127ddcf6b4248 (patch) | |
tree | 97a6515fd987d31a11b0a3b02eb591628ea1185e | |
parent | 14a675b1bed78ad3df654c57fbcc620d20289616 (diff) |
libdca live ebuild
-rw-r--r-- | media-libs/libdca/libdca-scm.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/media-libs/libdca/libdca-scm.ebuild b/media-libs/libdca/libdca-scm.ebuild new file mode 100644 index 0000000..00630ff --- /dev/null +++ b/media-libs/libdca/libdca-scm.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit autotools eutils flag-o-matic multilib multilib-minimal subversion + +DESCRIPTION="library for decoding DTS Coherent Acoustics streams used in DVD" +HOMEPAGE="http://www.videolan.org/developers/libdca.html" +SRC_URI="" + +ESVN_REPO_URI="svn://svn.videolan.org/libdca/trunk" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="debug oss static-libs" + +RDEPEND="!media-libs/libdts + abi_x86_32? ( !<=app-emulation/emul-linux-x86-medialibs-20130224-r3 + !app-emulation/emul-linux-x86-medialibs[-abi_x86_32(-)] )" +DEPEND="${RDEPEND}" + +DOCS=( AUTHORS ChangeLog NEWS README TODO doc/${PN}.txt ) + +src_prepare() { + epatch "${FILESDIR}"/${P}-cflags.patch \ + "${FILESDIR}"/${P}-tests-optional.patch \ + + eautoreconf +} + +multilib_src_configure() { + append-lfs-flags #328875 + + ECONF_SOURCE="${S}" econf \ + --disable-dependency-tracking \ + $(use_enable debug) \ + $(use_enable static-libs static) \ + $(use_enable oss) + + # Those are thrown away afterwards, don't build them in the first place + if [ "${ABI}" != "${DEFAULT_ABI}" ] ; then + sed -i -e 's/ libao src//' Makefile || die + fi +} + +multilib_src_compile() { + emake OPT_CFLAGS="" || die +} + +multilib_src_install() { + emake DESTDIR="${D}" install || die + + find "${ED}" -name '*.la' -exec rm -f '{}' + + rm -f "${ED}"/usr/$(get_libdir)/libdts.a +} |