blob: f5ee2ef2aca091f21870a814bff4ae0331891f5b (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit cmake-utils
DESCRIPTION="View and upload map files, track and waypoint data to your Garmin GPS device"
HOMEPAGE="http://www.qlandkarte.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="dbus dmtx exif gps +gpsbabel +gpx-extensions mikrokopter +rmap qt4 qt5"
REQUIRED_USE="^^ ( qt4 qt5 )"
RDEPEND="
>=sci-libs/gdal-1.8
>=sci-libs/proj-4.7
sys-libs/zlib
qt4? (
dev-qt/qtgui:4
dev-qt/qtopengl:4
dev-qt/qtscript:4
dev-qt/qtsql:4[sqlite]
dev-qt/qtwebkit:4
dbus? ( dev-qt/qtdbus:4 )
)
qt5? (
dev-qt/qtgui:5
dev-qt/qtmultimedia:5
dev-qt/qtopengl:5
dev-qt/qtserialport:5
dev-qt/qtscript:5
dev-qt/qtsql:5[sqlite]
dev-qt/qtwebkit:5
dbus? ( dev-qt/qtdbus:5 )
)
dmtx? ( media-libs/libdmtx )
exif? ( media-libs/libexif )
gps? ( >=sci-geosciences/gpsd-2.90 )
gpsbabel? ( sci-geosciences/gpsbabel )
virtual/glu
"
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}"/${P}-deprecated.patch
"${FILESDIR}"/${P}-includes.patch
)
src_configure() {
local mycmakeargs=(
$(cmake-utils_use qt5 QK_QT5_PORT)
$(cmake-utils_use dbus DBUS)
$(cmake-utils_use dmtx WITH_DMTX)
$(cmake-utils_use exif WITH_EXIF)
$(cmake-utils_use gps WITH_GPSD)
$(cmake-utils_use gpx-extensions GPX_EXTENSIONS)
$(cmake-utils_use mikrokopter MIKROKOPTER)
$(cmake-utils_use rmap RMAP)
)
cmake-utils_src_configure
}
src_install() {
sed \
-e 's:\(Geography;\):\1Education;:g' \
-i ./qlandkartegt.desktop || die
cmake-utils_src_install
}
pkg_postinst() {
elog "OSM and Opencyclemap internal definitions were dropped upstream"
elog "Add it through File -> Load Online Map"
elog "or add a tsm definition (http://wiki.openstreetmap.org/wiki/MapQuest#Tile_URLs)"
}
|