Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/alure/
Date: Thu, 07 Jan 2021 01:24:10
Message-Id: 1609982475.a67f65d838add58073530736acbbbd915e2ebe81.sam@gentoo
1 commit: a67f65d838add58073530736acbbbd915e2ebe81
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 7 01:21:15 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 7 01:21:15 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a67f65d8
7
8 media-libs/alure: cleanup old
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 media-libs/alure/alure-1.2-r1.ebuild | 50 ------------------------------------
14 1 file changed, 50 deletions(-)
15
16 diff --git a/media-libs/alure/alure-1.2-r1.ebuild b/media-libs/alure/alure-1.2-r1.ebuild
17 deleted file mode 100644
18 index 3053fbc78e1..00000000000
19 --- a/media-libs/alure/alure-1.2-r1.ebuild
20 +++ /dev/null
21 @@ -1,50 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit cmake
28 -
29 -DESCRIPTION="The OpenAL Utility Toolkit"
30 -HOMEPAGE="https://kcat.strangesoft.net/alure.html"
31 -SRC_URI="https://kcat.strangesoft.net/alure-releases/${P}.tar.bz2"
32 -
33 -LICENSE="MIT"
34 -SLOT="0"
35 -KEYWORDS="amd64 ~ppc ~ppc64 x86"
36 -IUSE="dumb examples flac fluidsynth mp3 sndfile static-libs vorbis"
37 -
38 -RDEPEND="
39 - >=media-libs/openal-1.1
40 - dumb? ( =media-libs/dumb-0.9*:= )
41 - flac? ( media-libs/flac )
42 - fluidsynth? ( >=media-sound/fluidsynth-1.1.1:= )
43 - mp3? ( media-sound/mpg123 )
44 - sndfile? ( media-libs/libsndfile )
45 - vorbis? ( media-libs/libvorbis )"
46 -DEPEND="${RDEPEND}"
47 -
48 -PATCHES=( "${FILESDIR}/${P}-include-unistd.patch" )
49 -
50 -src_prepare() {
51 - cmake_src_prepare
52 -
53 - sed -i -e "/DESTINATION/s:doc/alure:doc/${PF}:" CMakeLists.txt || die
54 -}
55 -
56 -src_configure() {
57 - # FIXME: libmodplug/sndfile.h from libmodplug conflict with sndfile.h from libsndfile
58 - local mycmakeargs=(
59 - -DMODPLUG=OFF
60 - -DDUMB=$(usex dumb)
61 - -DBUILD_EXAMPLES=$(usex examples)
62 - -DFLAC=$(usex flac)
63 - -DFLUIDSYNTH=$(usex fluidsynth)
64 - -DMPG123=$(usex mp3)
65 - -DSNDFILE=$(usex sndfile)
66 - -DBUILD_STATIC=$(usex static-libs)
67 - -DVORBIS=$(usex vorbis)
68 - )
69 -
70 - cmake_src_configure
71 -}