Diff libnsgif-0.2.1-r3 with a libnsgif-9999

/usr/portage/media-libs/libnsgif/libnsgif-9999.ebuild 2023-10-09 14:52:31.688368406 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6
inherit netsurf
6
inherit git-r3 netsurf
7 7

  
8 8
DESCRIPTION="decoding library for the GIF image file format, written in C"
9 9
HOMEPAGE="https://www.netsurf-browser.org/projects/libnsgif/"
10
SRC_URI="https://download.netsurf-browser.org/libs/releases/${P}-src.tar.gz"
11 10

  
11
EGIT_REPO_URI="https://git.netsurf-browser.org/${PN}.git"
12 12
LICENSE="MIT"
13 13
SLOT="0"
14
KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv x86"
14
KEYWORDS=""
15 15
IUSE=""
16 16

  
17 17
BDEPEND="
18
	>=dev-util/netsurf-buildsystem-1.7-r1
18
	dev-util/netsurf-buildsystem
19 19
	virtual/pkgconfig
20 20
"
21 21

  
22 22
src_prepare() {
23 23
	default
24
	sed -e '1i#pragma GCC diagnostic ignored "-Wimplicit-fallthrough"' \
25
		-i src/lzw.c || die
26 24
}
27 25

  
28 26
_emake() {
Thank you!