Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libsidplayfp/
Date: Thu, 22 Jul 2021 09:30:26
Message-Id: 1626946208.468a7bd43127e4e750272273f2ca53e06f013ad4.fordfrog@gentoo
1 commit: 468a7bd43127e4e750272273f2ca53e06f013ad4
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 22 09:30:08 2021 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 22 09:30:08 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=468a7bd4
7
8 media-libs/libsidplay: bump to 2.2.1
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 media-libs/libsidplayfp/Manifest | 1 +
14 media-libs/libsidplayfp/libsidplayfp-2.2.1.ebuild | 29 +++++++++++++++++++++++
15 2 files changed, 30 insertions(+)
16
17 diff --git a/media-libs/libsidplayfp/Manifest b/media-libs/libsidplayfp/Manifest
18 index 8ccecd9aa81..b480e0d68ac 100644
19 --- a/media-libs/libsidplayfp/Manifest
20 +++ b/media-libs/libsidplayfp/Manifest
21 @@ -1 +1,2 @@
22 DIST libsidplayfp-2.2.0.tar.gz 794840 BLAKE2B 1641808e5821f824186b0fd7108dde67ca476724dd4c554dbcca9acd2778c1384e9fbc016658c2c399dbe001100f56658b56234e23032a90aaa75a8faed92792 SHA512 29412410ba1690ad6c9e98f172a0cc49e5d1cb828329da152aa76472ef524932d8b2b35f48f831dbfad08d0c78be22440fd939a1e38b7046cf37fbd34555c683
23 +DIST libsidplayfp-2.2.1.tar.gz 793924 BLAKE2B a1f11cc4100f18bdd1732c704ac87093d5626627f3b6fc215292e43e63061a79ca8870c3e5a6ea945e24f40a4207d3173e7fed5e05ea52981784389bcfb2af29 SHA512 34a8f6abf6a60ea3fa774e5884736e6dfdff1de9290b656e4ae783e1e15d7b197b03bf400ca0018fd569cfc16a2e30ccb41d0008e800c30f895cd6e3432b048e
24
25 diff --git a/media-libs/libsidplayfp/libsidplayfp-2.2.1.ebuild b/media-libs/libsidplayfp/libsidplayfp-2.2.1.ebuild
26 new file mode 100644
27 index 00000000000..219eebf1978
28 --- /dev/null
29 +++ b/media-libs/libsidplayfp/libsidplayfp-2.2.1.ebuild
30 @@ -0,0 +1,29 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DESCRIPTION="Library for the sidplay2 fork with resid-fp"
37 +HOMEPAGE="https://sourceforge.net/projects/sidplay-residfp/"
38 +SRC_URI="mirror://sourceforge/sidplay-residfp/${PN}/$(ver_cut 1-2)/${P}.tar.gz"
39 +
40 +LICENSE="GPL-2"
41 +SLOT="0/6"
42 +KEYWORDS="~amd64 ~hppa ~x86"
43 +IUSE="static-libs"
44 +
45 +src_prepare() {
46 + default
47 + # fix automagic. warning: modifying .ac triggers maintainer mode.
48 + sed -i -e 's:doxygen:dIsAbLe&:' configure || die
49 +}
50 +
51 +src_configure() {
52 + econf \
53 + $(use_enable static-libs static)
54 +}
55 +
56 +src_install() {
57 + default
58 + find "${D}" -name '*.la' -delete || die
59 +}