You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-geosciences/gpxlab/gpxlab-0.7.0.ebuild

52 lines
1.0 KiB

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PLOCALES="fi ru"
inherit desktop qmake-utils l10n xdg
MY_PN="GPXLab"
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"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="dev-qt/qtwidgets:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
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() {
default
l10n_find_plocales_changes ${MY_PN}/locale "${PN}_" '.ts'
rm_ts() {
sed -e "s|locale/${PN}_${1}.ts||" -i ${MY_PN}/${MY_PN}.pro
}
l10n_for_each_disabled_locale_do rm_ts
}
src_compile() {
lrelease ${MY_PN}.pro
eqmake5 ${MY_PN}.pro
emake
}
src_install() {
emake INSTALL_ROOT="${D}" install
dodoc README.md CHANGELOG.md
}