blob: f3a8d006871a479e3eac638a25ecea7b4a600435 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
MY_P=${P/g/G}
inherit qmake-utils
DESCRIPTION="Qt-Frontend to load and convert gps tracks with gpsbabel"
HOMEPAGE="http://gebabbel.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}-Src.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="
dev-qt/qtcore:4
dev-qt/qtgui:4[accessibility]
"
RDEPEND="${DEPEND}
sci-geosciences/gpsbabel
"
DOCS=( CHANGELOG CREDITS )
PATCHES=( "${FILESDIR}"/${PN}-0.3-gcc45.patch )
S=${WORKDIR}/${MY_P}
src_prepare() {
default
# do not mess with cflags
sed \
-e "/QMAKE_CXXFLAGS/s:=.*$:= ${CXXFLAGS}:g" \
-i *.pro || die
}
src_configure() {
eqmake4 Gebabbel.pro
}
src_install() {
dobin bin/${PN}
einstalldocs
}
|