commit: b07d651b18d108872b4a2292d21e405d0863a3c9 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at> AuthorDate: Tue Sep 19 17:06:02 2023 +0000 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org> CommitDate: Tue Sep 19 20:48:50 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b07d651b
gnustep-apps/preview: EAPI8 bump, fix HOMEPAGE Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at> Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org> gnustep-apps/preview/preview-0.9-r1.ebuild | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnustep-apps/preview/preview-0.9-r1.ebuild b/gnustep-apps/preview/preview-0.9-r1.ebuild new file mode 100644 index 000000000000..727f32123ad6 --- /dev/null +++ b/gnustep-apps/preview/preview-0.9-r1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnustep-2 + +DESCRIPTION="Simple image viewer" +HOMEPAGE="https://salsa.debian.org/gnustep-team/preview.app" +SRC_URI="mirror://gentoo//${P/p/P}.tar.gz" +S="${WORKDIR}/${PN/p/P}" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +PATCHES=( + # Fix compilation, patch from debian + "${FILESDIR}"/${PN}-0.8.5-compilation-errors.patch +) + +src_prepare() { + default + sed -e 's/sel_eq(/sel_isEqual(/' -i Document.m || die +}
