blob: 6089b757380c7813f50dd102aa68505de443f58d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# 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/qtcore:5
dev-qt/qtwidgets:5
dev-qt/qtgui:5
dev-qt/qtprintsupport:5
dev-qt/qtnetwork: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
}
|