diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-07-31 16:41:46 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-07-31 16:41:46 +0200 |
commit | ed2862b7ea2fc1623ba2a5bb1322da6a77385d28 (patch) | |
tree | 17c49a2f46937f127cfcf339910827c47a1ac863 /media-libs/libao | |
parent | dev-ros/rospy_tutorials: add missing test dep (diff) | |
download | gentoo-ed2862b7ea2fc1623ba2a5bb1322da6a77385d28.tar.gz gentoo-ed2862b7ea2fc1623ba2a5bb1322da6a77385d28.tar.bz2 gentoo-ed2862b7ea2fc1623ba2a5bb1322da6a77385d28.zip |
media-libs/libao: Drop 1.2.2 (r0)
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-libs/libao')
-rw-r--r-- | media-libs/libao/libao-1.2.2.ebuild | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/media-libs/libao/libao-1.2.2.ebuild b/media-libs/libao/libao-1.2.2.ebuild deleted file mode 100644 index 2571b49101e0..000000000000 --- a/media-libs/libao/libao-1.2.2.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools libtool multilib multilib-minimal - -DESCRIPTION="The Audio Output library" -HOMEPAGE="https://www.xiph.org/ao/" -#SRC_URI="https://downloads.xiph.org/releases/ao/${P}.tar.gz" -#SRC_URI="https://git.xiph.org/?p=libao.git;a=snapshot;h=refs/tags/${PV};sf=tgz -> ${P}.tar.gz" -SRC_URI="https://github.com/xiph/libao/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" -IUSE="alsa nas mmap pulseaudio static-libs" - -RDEPEND=" - alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] ) - nas? ( >=media-libs/nas-1.9.4[${MULTILIB_USEDEP}] ) - pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[${MULTILIB_USEDEP}] ) -" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_prepare() { - default - sed -i "s:/lib:/$(get_libdir):g" ao.m4 || die - eautoreconf -} - -multilib_src_configure() { - local myeconfargs=( - --disable-arts - --disable-esd - $(use_enable alsa alsa) - $(use_enable mmap alsa-mmap) - $(use_enable nas) - $(use_enable pulseaudio pulse) - $(use_enable static-libs static) - ) - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" -} - -multilib_src_install() { - emake DESTDIR="${D}" docdir="${EPREFIX}/usr/share/doc/${PF}/html" install -} - -multilib_src_install_all() { - dodoc AUTHORS CHANGES README TODO - find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die -} |