diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2023-09-19 19:06:02 +0200 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2023-09-19 22:48:50 +0200 |
commit | b07d651b18d108872b4a2292d21e405d0863a3c9 (patch) | |
tree | be8ac4d0fa439563ba00a4dceaee2e204c468cc0 /gnustep-apps | |
parent | gnustep-apps/gshisen: EAPI8 bump, fix LICENSE (diff) | |
download | gentoo-b07d651b18d108872b4a2292d21e405d0863a3c9.tar.gz gentoo-b07d651b18d108872b4a2292d21e405d0863a3c9.tar.bz2 gentoo-b07d651b18d108872b4a2292d21e405d0863a3c9.zip |
gnustep-apps/preview: EAPI8 bump, fix HOMEPAGE
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
Diffstat (limited to 'gnustep-apps')
-rw-r--r-- | gnustep-apps/preview/preview-0.9-r1.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
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 +} |