Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/sdl-sound/
Date: Wed, 02 Oct 2019 22:22:56
Message-Id: 1570054945.0e856edefbd36efffc141a2174e75db9afe1f204.chewi@gentoo
1 commit: 0e856edefbd36efffc141a2174e75db9afe1f204
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 2 22:22:25 2019 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 2 22:22:25 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e856ede
7
8 media-libs/sdl-sound: Drop old 1.0.3-r1
9
10 Bug: https://bugs.gentoo.org/688732
11 Package-Manager: Portage-2.3.76, Repoman-2.3.17
12 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
13
14 media-libs/sdl-sound/sdl-sound-1.0.3-r1.ebuild | 62 --------------------------
15 1 file changed, 62 deletions(-)
16
17 diff --git a/media-libs/sdl-sound/sdl-sound-1.0.3-r1.ebuild b/media-libs/sdl-sound/sdl-sound-1.0.3-r1.ebuild
18 deleted file mode 100644
19 index ac7df0c6202..00000000000
20 --- a/media-libs/sdl-sound/sdl-sound-1.0.3-r1.ebuild
21 +++ /dev/null
22 @@ -1,62 +0,0 @@
23 -# Copyright 1999-2015 Gentoo Foundation
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=5
27 -inherit autotools eutils multilib-minimal
28 -
29 -MY_P="${P/sdl-/SDL_}"
30 -DESCRIPTION="A library that handles the decoding of sound file formats"
31 -HOMEPAGE="http://icculus.org/SDL_sound/"
32 -SRC_URI="http://icculus.org/SDL_sound/downloads/${MY_P}.tar.gz"
33 -
34 -LICENSE="LGPL-2.1"
35 -SLOT="0"
36 -KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 sparc x86 ~x86-fbsd ~x64-macos"
37 -IUSE="flac mikmod modplug mp3 mpeg physfs speex static-libs vorbis"
38 -
39 -RDEPEND="
40 - >=media-libs/libsdl-1.2.15-r4[${MULTILIB_USEDEP}]
41 - flac? ( >=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}] )
42 - mikmod? ( >=media-libs/libmikmod-3.2.0[${MULTILIB_USEDEP}] )
43 - modplug? ( >=media-libs/libmodplug-0.8.8.4-r1[${MULTILIB_USEDEP}] )
44 - vorbis? ( >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}] )
45 - speex? ( >=media-libs/speex-1.2_rc1-r1[${MULTILIB_USEDEP}] >=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}] )
46 - physfs? ( >=dev-games/physfs-2.0.3-r1[${MULTILIB_USEDEP}] )
47 - mpeg? ( >=media-libs/smpeg-0.4.4-r10[${MULTILIB_USEDEP}] )"
48 -DEPEND="${RDEPEND}
49 - virtual/pkgconfig"
50 -
51 -S=${WORKDIR}/${MY_P}
52 -
53 -src_prepare() {
54 - epatch "${FILESDIR}"/${P}-{underlinking,automake-1.13}.patch
55 - mv configure.in configure.ac || die
56 - eautoreconf
57 -}
58 -
59 -multilib_src_configure() {
60 - ECONF_SOURCE="${S}" econf \
61 - --disable-dependency-tracking \
62 - --enable-midi \
63 - $(use_enable mpeg smpeg) \
64 - $(use_enable mp3 mpglib) \
65 - $(use_enable flac) \
66 - $(use_enable speex) \
67 - $(use_enable static-libs static) \
68 - $(use_enable mikmod) \
69 - $(use_enable modplug) \
70 - $(use_enable physfs) \
71 - $(use_enable vorbis ogg)
72 -}
73 -
74 -multilib_src_install() {
75 - emake DESTDIR="${D}" install
76 -}
77 -
78 -multilib_src_install_all() {
79 - dodoc CHANGELOG CREDITS README TODO
80 - if ! use static-libs ; then
81 - find "${D}" -type f -name '*.la' -exec rm {} + \
82 - || die "la removal failed"
83 - fi
84 -}