Diff nemo-fileroller-4.4.0 with a nemo-fileroller-5.6.1
/usr/portage/gnome-extra/nemo-fileroller/nemo-fileroller-5.6.1.ebuild 2023-10-09 14:52:31.164368392 +0300 | ||
---|---|---|
1 |
# Copyright 1999-2016 Gentoo Foundation |
|
1 |
# Copyright 1999-2023 Gentoo Authors |
|
2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
# $Id$ |
|
4 | 3 | |
5 |
EAPI=5 |
|
4 |
EAPI=7 |
|
6 | 5 | |
7 |
inherit eutils |
|
6 |
inherit meson |
|
8 | 7 | |
9 |
DESCRIPTION="File Roller integration for Nemo" |
|
10 |
HOMEPAGE="https://github.com/linuxmint/nemo-extensions" |
|
11 |
SRC_URI="https://github.com/linuxmint/nemo-extensions/archive/${PV}.tar.gz" |
|
12 |
S="${WORKDIR}/nemo-extensions-${PV}/${PN}" |
|
8 |
DESCRIPTION="Nemo file-roller integration" |
|
9 |
HOMEPAGE="https://projects.linuxmint.com/cinnamon/ https://github.com/linuxmint/nemo-extensions" |
|
10 |
SRC_URI="https://github.com/linuxmint/nemo-extensions/archive/nemo-fileroller-5.6.1.tar.gz -> nemo-extensions-5.6.1.tar.gz" |
|
13 | 11 | |
14 |
LICENSE="GPL-2" |
|
12 |
LICENSE="GPL-2+" |
|
15 | 13 |
SLOT="0" |
16 |
KEYWORDS="amd64 x86" |
|
17 |
IUSE="doc" |
|
14 |
KEYWORDS="amd64 ~arm64 ~riscv x86" |
|
18 | 15 | |
19 |
DEPEND="app-arch/file-roller |
|
20 |
>=gnome-extra/nemo-${PV}" |
|
21 |
RDEPEND="${DEPEND}" |
|
22 | ||
23 |
src_prepare() { |
|
24 |
if [[ ! -e configure ]] ; then |
|
25 |
./autogen.sh || die |
|
26 |
fi |
|
27 |
} |
|
16 |
DEPEND=" |
|
17 |
>=dev-libs/glib-2.14.0 |
|
18 |
>=gnome-extra/nemo-2.0.0 |
|
19 |
" |
|
20 |
RDEPEND=" |
|
21 |
${DEPEND} |
|
22 |
app-arch/file-roller |
|
23 |
" |
|
24 | ||
25 |
S="${WORKDIR}/nemo-extensions-nemo-fileroller-5.6.1/${PN}" |