diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2017-10-12 17:42:09 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2017-10-12 17:42:09 +0100 |
commit | 12d78242dec4f785d0a0bfb1c00eee2d8996c53b (patch) | |
tree | 0e7146574ec8dc5e4e1ebe328c68a50a48f170ca /media-libs | |
parent | 6e0dec7ba4f6c5793a3d0b85952efa7ec57afa65 (diff) |
gentoo resync : 12.10.2017 (fix rsync script)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/faac/faac-1.29.7.4.ebuild | 55 | ||||
-rw-r--r-- | media-libs/liblo/liblo-0.26.ebuild | 34 | ||||
-rw-r--r-- | media-libs/liblo/liblo-0.28.ebuild | 40 |
3 files changed, 0 insertions, 129 deletions
diff --git a/media-libs/faac/faac-1.29.7.4.ebuild b/media-libs/faac/faac-1.29.7.4.ebuild deleted file mode 100644 index cd62caf3d01c..000000000000 --- a/media-libs/faac/faac-1.29.7.4.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# 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/liblo/liblo-0.26.ebuild b/media-libs/liblo/liblo-0.26.ebuild deleted file mode 100644 index 5aadd0c651a7..000000000000 --- a/media-libs/liblo/liblo-0.26.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 -inherit eutils - -DESCRIPTION="Lightweight OSC (Open Sound Control) implementation" -HOMEPAGE="http://plugin.org.uk/liblo" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 x86 ~ppc-macos" -IUSE="doc ipv6 static-libs" - -RESTRICT="test" - -RDEPEND="" -DEPEND="doc? ( app-doc/doxygen )" - -DOCS="AUTHORS ChangeLog NEWS README TODO" - -src_configure() { - use doc || export ac_cv_prog_HAVE_DOXYGEN=false - - econf \ - $(use_enable static-libs static) \ - $(use_enable ipv6) -} - -src_install() { - default - prune_libtool_files -} diff --git a/media-libs/liblo/liblo-0.28.ebuild b/media-libs/liblo/liblo-0.28.ebuild deleted file mode 100644 index 0a5d5b548d3e..000000000000 --- a/media-libs/liblo/liblo-0.28.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils autotools - -DESCRIPTION="Lightweight OSC (Open Sound Control) implementation" -HOMEPAGE="http://plugin.org.uk/liblo" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~ppc-macos" -IUSE="doc ipv6 static-libs" - -RESTRICT="test" - -DEPEND="doc? ( app-doc/doxygen )" - -src_prepare() { - # don't build examples by default - sed -i '/^SUBDIRS =/s/examples//' Makefile.am || die - - eautoreconf -} - -src_configure() { - use doc || export ac_cv_prog_HAVE_DOXYGEN=false - - # switching threads on/off breaks ABI, bugs #473282, #473286 and #473356 - econf \ - $(use_enable static-libs static) \ - $(use_enable ipv6) \ - --enable-threads -} - -src_install() { - default - prune_libtool_files -} |