commit:     844b8c05ddfbacb2bcb05fe1774dc5c5b3a1f238
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 26 21:00:32 2022 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Mon Sep 26 21:00:32 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=844b8c05

media-libs/libopenmpt: Version bump to 0.6.6

Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 media-libs/libopenmpt/Manifest                |  1 +
 media-libs/libopenmpt/libopenmpt-0.6.6.ebuild | 61 +++++++++++++++++++++++++++
 2 files changed, 62 insertions(+)

diff --git a/media-libs/libopenmpt/Manifest b/media-libs/libopenmpt/Manifest
index 8133eac34cd8..39680ed66e5a 100644
--- a/media-libs/libopenmpt/Manifest
+++ b/media-libs/libopenmpt/Manifest
@@ -1,3 +1,4 @@
 DIST libopenmpt-0.5.14+release.autotools.tar.gz 1446898 BLAKE2B 
ab6ff8db2e19d859fecca882aea3e569b58d96d5055ec0dd42494a7eb38fefa9c8b88f4700d354de71346c71c6d9a96327db1c2b7b48e227928dcba0ce7347d6
 SHA512 
8897549c18afb57c5bf54f4dd8a1d80983829bca958052d76cda1315ef4a37f4201575817b7cedfe17a44ee79051a52aa35b26a51b554091e92c9d2dcf5924a3
 DIST libopenmpt-0.6.4+release.autotools.tar.gz 1547663 BLAKE2B 
f1c7254146437ce3ca646049c05fe4ae0575012724584a7b2cfce7dfdacf7987eb5403b0634d1961e1b7b176adfbbcbb23a9966d874e489ebcf01524a020750d
 SHA512 
7306ddbe030b8e82ad24fc85083d13d7ca680870f4dbe7215399719cd63ee9ed9e5c4c6229e9f17fb5a2005e86b21ceed0dab158d3f0b73c606579654434421f
 DIST libopenmpt-0.6.5+release.autotools.tar.gz 1549710 BLAKE2B 
f04c3df0322f336bd9e90edbbac4fd0532a41fc1ff17c11a20371946bd9ccdc50c0f8adbf92858516d453213dc04bcc07c08a72739458966aba5dfe37a955b8a
 SHA512 
eb59ddb22fa07f216c76138c022187c76065be56d51520ed0dcf6f77638aaf832a803f63a398ca8d47bd368aee24dd425242017136c299fade6fd98b9d7b628c
+DIST libopenmpt-0.6.6+release.autotools.tar.gz 1554516 BLAKE2B 
21e2fc4252431235608a52d3a321e26eae5d45f2328ff3e3604d84c537d72e07d72346c504901b000af04dfc52b1dd91c79f576be4331ea8685e534a174b61cd
 SHA512 
b634c556f13dc51d1008f4216936a9b7cab25a6fb0d5218da0b692ec848de21905ed1981223ac9ecdebea9ce6c5376e91ff92e1655dd0be491fce0114e3230bf

diff --git a/media-libs/libopenmpt/libopenmpt-0.6.6.ebuild 
b/media-libs/libopenmpt/libopenmpt-0.6.6.ebuild
new file mode 100644
index 000000000000..31433906b65f
--- /dev/null
+++ b/media-libs/libopenmpt/libopenmpt-0.6.6.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit multilib-minimal
+
+MY_P="libopenmpt-${PV}+release.autotools"
+DESCRIPTION="Library to decode tracked music files (modules)"
+HOMEPAGE="https://lib.openmpt.org/libopenmpt/";
+SRC_URI="https://lib.openmpt.org/files/libopenmpt/src/${MY_P}.tar.gz";
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~riscv ~x86"
+IUSE="examples mp3 ogg static-libs test vorbis zlib"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+       mp3? ( media-sound/mpg123[${MULTILIB_USEDEP}] )
+       ogg? ( media-libs/libogg[${MULTILIB_USEDEP}] )
+       vorbis? ( media-libs/libvorbis[${MULTILIB_USEDEP}] )
+       zlib? ( sys-libs/zlib[${MULTILIB_USEDEP}] )
+"
+
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+S="${WORKDIR}/${MY_P}"
+ECONF_SOURCE="${S}"
+
+multilib_src_configure() {
+       # A lot of these optional dependencies relate to openmpt123, which
+       # we package separately, so we disable them here.
+       econf \
+               $(use_enable static-libs static) \
+               --disable-openmpt123 \
+               --disable-examples \
+               $(use_enable test tests) \
+               --disable-doxygen-doc \
+               $(use_with zlib) \
+               $(use_with mp3 mpg123) \
+               $(use_with ogg) \
+               $(use_with vorbis) \
+               $(use_with vorbis vorbisfile) \
+               --without-pulseaudio \
+               --without-portaudio \
+               --without-portaudiocpp \
+               --without-sdl2 \
+               --without-sndfile \
+               --without-flac
+}
+
+multilib_src_install_all() {
+       rm -f \
+               "${ED}"/usr/*/*.la \
+               "${ED}"/usr/share/doc/${P}/LICENSE || die
+
+       if ! use examples; then
+               rm -r "${ED}"/usr/share/doc/${P}/examples || die
+       fi
+}

Reply via email to