summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2023-05-29 22:38:44 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2023-05-29 22:38:44 +0200
commit0f2b57c0826c917057c48add06eca02eb1fca5fc (patch)
treea655a5bfd232603647c23c7c389747f11489b9ef
parentmedia-libs/libao: Stabilize 1.2.2-r3 arm64, #907382 (diff)
downloadgentoo-0f2b57c0826c917057c48add06eca02eb1fca5fc.tar.gz
gentoo-0f2b57c0826c917057c48add06eca02eb1fca5fc.tar.bz2
gentoo-0f2b57c0826c917057c48add06eca02eb1fca5fc.zip
media-libs/libao: drop 1.2.2-r2
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--media-libs/libao/libao-1.2.2-r2.ebuild62
1 files changed, 0 insertions, 62 deletions
diff --git a/media-libs/libao/libao-1.2.2-r2.ebuild b/media-libs/libao/libao-1.2.2-r2.ebuild
deleted file mode 100644
index 3f2ef3ecbf45..000000000000
--- a/media-libs/libao/libao-1.2.2-r2.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools 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 ~loong ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~ppc-macos ~x64-macos"
-IUSE="alsa nas mmap pulseaudio sndio"
-
-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}] )
- sndio? ( media-sound/sndio:= )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=(
- "${FILESDIR}"/${P}-implicit.patch
- "${FILESDIR}"/${P}-automagic_sndio_oss.patch
-)
-
-src_prepare() {
- default
- sed -i "s:/lib:/$(get_libdir):g" ao.m4 || die
- eautoreconf
-}
-
-multilib_src_configure() {
- local myeconfargs=(
- --disable-arts
- --disable-esd
- --disable-static
- $(use_enable alsa alsa)
- $(use_enable mmap alsa-mmap)
- $(use_enable nas)
- $(use_enable pulseaudio pulse)
- $(use_enable sndio)
- --disable-oss # present only in overlays
- )
- 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
-}