Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libao/
Date: Fri, 31 Jul 2020 14:45:46
Message-Id: 1596206506.ed2862b7ea2fc1623ba2a5bb1322da6a77385d28.asturm@gentoo
1 commit: ed2862b7ea2fc1623ba2a5bb1322da6a77385d28
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 31 14:41:46 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 31 14:41:46 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed2862b7
7
8 media-libs/libao: Drop 1.2.2 (r0)
9
10 Package-Manager: Portage-3.0.1, Repoman-2.3.23
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-libs/libao/libao-1.2.2.ebuild | 53 -------------------------------------
14 1 file changed, 53 deletions(-)
15
16 diff --git a/media-libs/libao/libao-1.2.2.ebuild b/media-libs/libao/libao-1.2.2.ebuild
17 deleted file mode 100644
18 index 2571b49101e..00000000000
19 --- a/media-libs/libao/libao-1.2.2.ebuild
20 +++ /dev/null
21 @@ -1,53 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit autotools libtool multilib multilib-minimal
28 -
29 -DESCRIPTION="The Audio Output library"
30 -HOMEPAGE="https://www.xiph.org/ao/"
31 -#SRC_URI="https://downloads.xiph.org/releases/ao/${P}.tar.gz"
32 -#SRC_URI="https://git.xiph.org/?p=libao.git;a=snapshot;h=refs/tags/${PV};sf=tgz -> ${P}.tar.gz"
33 -SRC_URI="https://github.com/xiph/libao/archive/${PV}.tar.gz -> ${P}.tar.gz"
34 -
35 -LICENSE="GPL-2"
36 -SLOT="0"
37 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
38 -IUSE="alsa nas mmap pulseaudio static-libs"
39 -
40 -RDEPEND="
41 - alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] )
42 - nas? ( >=media-libs/nas-1.9.4[${MULTILIB_USEDEP}] )
43 - pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[${MULTILIB_USEDEP}] )
44 -"
45 -DEPEND="${RDEPEND}
46 - virtual/pkgconfig"
47 -
48 -src_prepare() {
49 - default
50 - sed -i "s:/lib:/$(get_libdir):g" ao.m4 || die
51 - eautoreconf
52 -}
53 -
54 -multilib_src_configure() {
55 - local myeconfargs=(
56 - --disable-arts
57 - --disable-esd
58 - $(use_enable alsa alsa)
59 - $(use_enable mmap alsa-mmap)
60 - $(use_enable nas)
61 - $(use_enable pulseaudio pulse)
62 - $(use_enable static-libs static)
63 - )
64 - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
65 -}
66 -
67 -multilib_src_install() {
68 - emake DESTDIR="${D}" docdir="${EPREFIX}/usr/share/doc/${PF}/html" install
69 -}
70 -
71 -multilib_src_install_all() {
72 - dodoc AUTHORS CHANGES README TODO
73 - find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
74 -}