sci-geosciences/gpxsee: bump to 13.45

Signed-off-by: Andrey Grozin <grozin@gentoo.org>
This commit is contained in:
Andrey Grozin
2025-07-14 10:46:25 +07:00
parent c2abae94b0
commit c948cc165d
2 changed files with 57 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
DIST gpxsee-13.33.tar.gz 5557400 BLAKE2B b1aaf16567ab4f35120cf5dd43f9c29136f8dfe04ba85d4876ed135a5f84ebf3626aac9cb1c63cd7b732245a6fbb76bcedb3255d6157796a7a68c938f1da8d1e SHA512 9ae1c59ca9e3b1ceb36fb1923da7f599c6c3f11be05d789629a0a425c11a634cf5a98f78390fb5b0838f7da4e96cce807fe146d0125671d3567b17cbbf1ae9cb
DIST gpxsee-13.41.tar.gz 5877946 BLAKE2B ee88d3d89868c28347227419a7629df8dffab04592d7c5d9fd4c80bc5c348739b7aa9f56d20fcd3ea1ddf12208279d0670deaad974688b04331c1f213cdad97c SHA512 1ca187740030ddcef42a48722352353dd273e4dc5c5f066094a283d750854d74eb02d020b465eb444411f6f3f0001453763411b15c3f24674049ef4821756a61
DIST gpxsee-13.44.tar.gz 5905021 BLAKE2B 6500bdaec866b564aec617e763c13df9b03ecc4afe36d09d02237f2a277fb1e80eb8553eb88a4c2cdc3e5da97bfd16b8c7916702f7ad41c646ccf468ca5b1ae5 SHA512 90185ef657e44b18117cfadb447fd315cebb8c75115b3b707c5798f218e3ae5b09cd0d1160d2ff0cf0e6ee65ae23199bdb7a986ffd022bd091ba0f8d3ac8705b
DIST gpxsee-13.45.tar.gz 5914049 BLAKE2B 485a4d1122554aa5db2ef368cf9616d67cda6c82f0cae12825ff7875ff7f70c1f5461de929b4e467231e57a6cce9166046b775e21cc01a22d0ad80526c41248b SHA512 e832038fc8d03b616a739c575e889eecfe01365cfe4665e3de624738cf6707e84ac7debf2be2e8bb6310a667ea279e1a8e44eba2033496638c3ed91ef80a7636

View File

@@ -0,0 +1,56 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PN="GPXSee"
PLOCALES="ca cs da de en eo es fi fr hu it ko lv nb pl pt_BR ru sv tr uk zh_CN"
inherit plocale qmake-utils xdg optfeature
DESCRIPTION="Viewer and analyzer that supports gpx, tcx, kml, fit, igc and nmea files"
HOMEPAGE="https://www.gpxsee.org/ https://github.com/tumic0/GPXSee"
SRC_URI="https://github.com/tumic0/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
RDEPEND="
dev-qt/qtbase:6=[concurrent,gui,network,opengl,sql,widgets]
dev-qt/qtpositioning:6
dev-qt/qtsvg:6
"
DEPEND="${RDEPEND}
dev-qt/qtserialport:6
"
BDEPEND="dev-qt/qttools:6[linguist]"
PATCHES=( "${FILESDIR}"/${PN}-7.33.patch )
src_prepare() {
default
plocale_find_changes lang "${PN}_" '.ts'
rm_ts() {
sed -e "s|lang/gpxsee_${1}.ts||" -i gpxsee.pro
}
plocale_for_each_disabled_locale rm_ts
}
src_configure() {
$(qt6_get_bindir)/lrelease gpxsee.pro || die "lrelease failed"
eqmake6 gpxsee.pro
}
src_install() {
emake INSTALL_ROOT="${D}" install
dodoc README.md
}
pkg_postinst() {
xdg_pkg_postinst
optfeature "OpenFreeMap support" dev-qt/qtpbfimageplugin
}