Diff gnustep-back-art-0.28.0 with a gnustep-back-art-0.29.0

/usr/portage/gnustep-base/gnustep-back-art/gnustep-back-art-0.29.0.ebuild 2023-10-09 14:52:31.168368392 +0300
1 1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=6
4
EAPI=8
5

  
5 6
inherit gnustep-base
6 7

  
7
DESCRIPTION="libart_lgpl back-end component for the GNUstep GUI Library"
8
DESCRIPTION="Libart_lgpl back-end component for the GNUstep GUI Library"
8 9
HOMEPAGE="https://gnustep.github.io"
9 10
SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-back-${PV}.tar.gz"
11
S="${WORKDIR}/gnustep-back-${PV}"
10 12

  
11
LICENSE="LGPL-2.1"
13
LICENSE="LGPL-2.1+"
12 14
SLOT="0"
13
KEYWORDS="~alpha amd64 ppc sparc x86 ~amd64-linux ~x86-linux"
15
KEYWORDS="~alpha amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
14 16
IUSE="opengl xim"
15 17

  
16 18
RDEPEND="${GNUSTEP_CORE_DEPEND}
......
34 36
	!gnustep-base/gnustep-back-xlib"
35 37
DEPEND="${RDEPEND}"
36 38

  
37
S=${WORKDIR}/gnustep-back-${PV}
39
src_prepare() {
40
	default
41
	# do not compress man pages
42
	sed -i '/which gzip/,/&& gzip/d' Tools/GNUmakefile.postamble || die
43
}
38 44

  
39 45
src_configure() {
40 46
	egnustep_env
......
68 74
src_install() {
69 75
	gnustep-base_src_install
70 76

  
71
	mkdir -p "${D}/${GNUSTEP_SYSTEM_LIBRARY}/Fonts"
72
	cp -pPR Fonts/*.nfont "${D}/${GNUSTEP_SYSTEM_LIBRARY}/Fonts"
77
	mkdir -p "${D}/${GNUSTEP_SYSTEM_LIBRARY}/Fonts" || die
78
	cp -pPR Fonts/*.nfont "${D}/${GNUSTEP_SYSTEM_LIBRARY}/Fonts" || die
73 79
}
74 80

  
75 81
gnustep_config_script() {
Thank you!