diff --git a/media-libs/libresidfp/Manifest b/media-libs/libresidfp/Manifest index 6629aa665045d..44560aa2de73c 100644 --- a/media-libs/libresidfp/Manifest +++ b/media-libs/libresidfp/Manifest @@ -1 +1,2 @@ DIST libresidfp-1.0.2.tar.gz 533485 BLAKE2B a944dfe3f1f5bfa94687fabb9e22019364d613d7f8cf3e1426654cbe6de36aab45883d639f081d94d80523fa36528e631743d1b4f373668d5664fc0b6d2148ad SHA512 879cdb02c3b7372ca7037232a8d7a8c64921d0d318d990ae45fe1ecee5b7adfc311d45cde8e2901833921c7ed0838e1d77ee373d92be36984af1e4f9b63ae56e +DIST libresidfp-1.1.1.tar.gz 538828 BLAKE2B 1f880de2982c3f4c643d5311996e20e45a5b38a29a24024168800492405790b7d95df17fefd0705e659adebec341ff6b4d791558b0316ea30e4c212e7588174b SHA512 8d226addd91e199ef614724c690ee9a55bc0142f6379a8444fdcc0b1bf5c2994243781e368db065d61df24fd75110aa74aa7276456a0339a42ea853f37750dd6 diff --git a/media-libs/libresidfp/files/libresidfp-1.1.1-fix_typo.patch b/media-libs/libresidfp/files/libresidfp-1.1.1-fix_typo.patch new file mode 100644 index 0000000000000..f28ecb3fcb00b --- /dev/null +++ b/media-libs/libresidfp/files/libresidfp-1.1.1-fix_typo.patch @@ -0,0 +1,12 @@ +PR merged https://github.com/libsidplayfp/libresidfp/pull/41.patch +[PATCH] configure.ac: remove typo +--- a/configure ++++ b/configure +@@ -3897,7 +3897,6 @@ AM_BACKSLASH='\' + LIB_MAJOR=1 + LIB_MINOR=1 + LIB_LEVEL=1 +-NEWS.md + + + diff --git a/media-libs/libresidfp/libresidfp-1.1.1.ebuild b/media-libs/libresidfp/libresidfp-1.1.1.ebuild new file mode 100644 index 0000000000000..744935b47981e --- /dev/null +++ b/media-libs/libresidfp/libresidfp-1.1.1.ebuild @@ -0,0 +1,32 @@ +# Copyright 2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Library to software emulation of the MOS 6581/8580 SID chip" +HOMEPAGE="https://github.com/libsidplayfp/libresidfp" +SRC_URI="https://github.com/libsidplayfp/libresidfp/releases/download/v${PV}/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0/$(ver_cut 1-2)" +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~riscv ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +PATCHES=( + # PR merged + "${FILESDIR}"/${P}-fix_typo.patch +) + +src_configure() { + local myeconfargs=( + $(use_enable test tests) + ) + + econf "${myeconfargs[@]}" +} + +src_install() { + default + find "${ED}" -name '*.la' -delete || die +}