Gentoo Archives: gentoo-commits

From: Johannes Huber <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/alure/
Date: Thu, 02 Mar 2017 16:20:22
Message-Id: 1488471605.f9943ce68d444ffcc4d19f3756fcf6ae1549d592.johu@gentoo
1 commit: f9943ce68d444ffcc4d19f3756fcf6ae1549d592
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 2 16:20:05 2017 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 2 16:20:05 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9943ce6
7
8 media-libs/alure: Remove 1.2
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 media-libs/alure/alure-1.2.ebuild | 45 ---------------------------------------
13 1 file changed, 45 deletions(-)
14
15 diff --git a/media-libs/alure/alure-1.2.ebuild b/media-libs/alure/alure-1.2.ebuild
16 deleted file mode 100644
17 index 104edbbb337..00000000000
18 --- a/media-libs/alure/alure-1.2.ebuild
19 +++ /dev/null
20 @@ -1,45 +0,0 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=4
25 -inherit cmake-utils eutils
26 -
27 -DESCRIPTION="The OpenAL Utility Toolkit"
28 -HOMEPAGE="http://kcat.strangesoft.net/alure.html"
29 -SRC_URI="http://kcat.strangesoft.net/alure-releases/${P}.tar.bz2"
30 -
31 -LICENSE="MIT"
32 -SLOT="0"
33 -KEYWORDS="amd64 ~ppc ~ppc64 x86"
34 -IUSE="dumb examples flac fluidsynth mp3 sndfile static-libs vorbis"
35 -
36 -RDEPEND=">=media-libs/openal-1.1
37 - dumb? ( media-libs/dumb )
38 - flac? ( media-libs/flac )
39 - fluidsynth? ( >=media-sound/fluidsynth-1.1.1 )
40 - mp3? ( media-sound/mpg123 )
41 - sndfile? ( media-libs/libsndfile )
42 - vorbis? ( media-libs/libvorbis )"
43 -DEPEND="${RDEPEND}"
44 -
45 -src_prepare() {
46 - epatch "${FILESDIR}/${P}-include-unistd.patch"
47 - sed -i -e "/DESTINATION/s:doc/alure:doc/${PF}:" CMakeLists.txt || die
48 -}
49 -
50 -src_configure() {
51 - # FIXME: libmodplug/sndfile.h from libmodplug conflict with sndfile.h from libsndfile
52 - local mycmakeargs=(
53 - $(cmake-utils_use dumb)
54 - $(cmake-utils_use_build examples)
55 - $(cmake-utils_use flac)
56 - $(cmake-utils_use fluidsynth)
57 - -DMODPLUG=OFF
58 - $(cmake-utils_use mp3 MPG123)
59 - $(cmake-utils_use sndfile)
60 - $(cmake-utils_use_build static-libs STATIC)
61 - $(cmake-utils_use vorbis)
62 - )
63 -
64 - cmake-utils_src_configure
65 -}