Diff nitrogen-1.6.1-r2 with a nitrogen-99999

/usr/portage/x11-misc/nitrogen/nitrogen-99999.ebuild 2023-10-09 14:52:35.940368513 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2021 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=8
4
EAPI=7
5 5

  
6
inherit autotools flag-o-matic xdg-utils
6
inherit autotools flag-o-matic git-r3 xdg-utils
7 7

  
8 8
DESCRIPTION="A background browser and setter for X"
9 9
HOMEPAGE="https://github.com/l3ib/nitrogen"
10
SRC_URI="https://github.com/l3ib/nitrogen/releases/download/${PV}/${P}.tar.gz"
11
KEYWORDS="amd64 ~ppc x86"
10
EGIT_REPO_URI="https://github.com/l3ib/${PN}"
12 11

  
13 12
LICENSE="GPL-2"
14 13
SLOT="0"
......
27 26
	xinerama? ( x11-base/xorg-proto )
28 27
"
29 28

  
30
PATCHES=(
31
	"${FILESDIR}/${P}-fix-appdata-install-location.patch" # https://github.com/l3ib/nitrogen/pull/156
32
)
33

  
34 29
src_prepare() {
35 30
	default
36
	mv data/nitrogen.{appdata,metainfo}.xml || die
37 31

  
38 32
	sed -i -e '/^UPDATE_DESKTOP/s#=.*#= :#g' data/Makefile.am || die
39 33

  
Thank you!