diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-03-29 16:17:48 +0100 |
---|---|---|
committer | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2024-03-29 17:47:37 +0100 |
commit | 2c4131d8bd36b05cd8d52b667ceeb9e02e7e7633 (patch) | |
tree | ec33cb3db9b5f101e47a0251a34a7dc8c9f82638 /sci-geosciences/gpxlab | |
parent | dev-python/python-lsp-server: add 1.11.0 (diff) | |
download | gentoo-2c4131d8bd36b05cd8d52b667ceeb9e02e7e7633.tar.gz gentoo-2c4131d8bd36b05cd8d52b667ceeb9e02e7e7633.tar.bz2 gentoo-2c4131d8bd36b05cd8d52b667ceeb9e02e7e7633.zip |
sci-geosciences/gpxlab: EAPI8 bump, add missing die, remove unused eclass
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/35985
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
Diffstat (limited to 'sci-geosciences/gpxlab')
-rw-r--r-- | sci-geosciences/gpxlab/gpxlab-0.7.0-r1.ebuild (renamed from sci-geosciences/gpxlab/gpxlab-0.7.0.ebuild) | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/sci-geosciences/gpxlab/gpxlab-0.7.0.ebuild b/sci-geosciences/gpxlab/gpxlab-0.7.0-r1.ebuild index 46bc19a557dc..56fda8622ff6 100644 --- a/sci-geosciences/gpxlab/gpxlab-0.7.0.ebuild +++ b/sci-geosciences/gpxlab/gpxlab-0.7.0-r1.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 PLOCALES="fi ru" -inherit desktop plocale qmake-utils xdg +inherit plocale qmake-utils xdg MY_PN="GPXLab" MY_P="${MY_PN}-${PV}" @@ -12,10 +12,12 @@ MY_P="${MY_PN}-${PV}" DESCRIPTION="An application to display and manage GPS tracks" HOMEPAGE="https://github.com/BourgeoisLab/GPXLab" SRC_URI="https://github.com/BourgeoisLab/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_P}" + LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64" -IUSE="" + RDEPEND="dev-qt/qtcore:5 dev-qt/qtwidgets:5 dev-qt/qtgui:5 @@ -24,8 +26,6 @@ RDEPEND="dev-qt/qtcore:5 DEPEND="${RDEPEND}" BDEPEND="dev-qt/linguist-tools:5" -S="${WORKDIR}/${MY_P}" - PATCHES=( "${FILESDIR}"/${PN}-0.7.0.patch ) src_prepare() { @@ -34,9 +34,8 @@ src_prepare() { plocale_find_changes ${MY_PN}/locale "${PN}_" '.ts' rm_ts() { - sed -e "s|locale/${PN}_${1}.ts||" -i ${MY_PN}/${MY_PN}.pro + sed -e "s|locale/${PN}_${1}.ts||" -i ${MY_PN}/${MY_PN}.pro || die } - plocale_for_each_disabled_locale rm_ts } |