diff options
author | Sam James <sam@gentoo.org> | 2021-01-07 01:21:15 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-01-07 01:21:15 +0000 |
commit | a67f65d838add58073530736acbbbd915e2ebe81 (patch) | |
tree | f3f5643a39072eadade9e3fecdee5291d49b42f8 /media-libs/alure | |
parent | sci-libs/arpack: cleanup old (diff) | |
download | gentoo-a67f65d838add58073530736acbbbd915e2ebe81.tar.gz gentoo-a67f65d838add58073530736acbbbd915e2ebe81.tar.bz2 gentoo-a67f65d838add58073530736acbbbd915e2ebe81.zip |
media-libs/alure: cleanup old
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-libs/alure')
-rw-r--r-- | media-libs/alure/alure-1.2-r1.ebuild | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/media-libs/alure/alure-1.2-r1.ebuild b/media-libs/alure/alure-1.2-r1.ebuild deleted file mode 100644 index 3053fbc78e10..000000000000 --- a/media-libs/alure/alure-1.2-r1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="The OpenAL Utility Toolkit" -HOMEPAGE="https://kcat.strangesoft.net/alure.html" -SRC_URI="https://kcat.strangesoft.net/alure-releases/${P}.tar.bz2" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~ppc ~ppc64 x86" -IUSE="dumb examples flac fluidsynth mp3 sndfile static-libs vorbis" - -RDEPEND=" - >=media-libs/openal-1.1 - dumb? ( =media-libs/dumb-0.9*:= ) - flac? ( media-libs/flac ) - fluidsynth? ( >=media-sound/fluidsynth-1.1.1:= ) - mp3? ( media-sound/mpg123 ) - sndfile? ( media-libs/libsndfile ) - vorbis? ( media-libs/libvorbis )" -DEPEND="${RDEPEND}" - -PATCHES=( "${FILESDIR}/${P}-include-unistd.patch" ) - -src_prepare() { - cmake_src_prepare - - sed -i -e "/DESTINATION/s:doc/alure:doc/${PF}:" CMakeLists.txt || die -} - -src_configure() { - # FIXME: libmodplug/sndfile.h from libmodplug conflict with sndfile.h from libsndfile - local mycmakeargs=( - -DMODPLUG=OFF - -DDUMB=$(usex dumb) - -DBUILD_EXAMPLES=$(usex examples) - -DFLAC=$(usex flac) - -DFLUIDSYNTH=$(usex fluidsynth) - -DMPG123=$(usex mp3) - -DSNDFILE=$(usex sndfile) - -DBUILD_STATIC=$(usex static-libs) - -DVORBIS=$(usex vorbis) - ) - - cmake_src_configure -} |