blob: 871a52bc9be02ef5a7bcafc359e54c2fdeafb7e5 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/qlandkartegt/qlandkartegt-1.4.2.ebuild,v 1.3 2013/03/02 23:22:10 hwoarang Exp $
EAPI=4
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-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="dbus dmtx exif gps +gpsbabel +gpx-extensions mikrokopter opengl +rmap"
RDEPEND="
>=sci-libs/gdal-1.8
>=sci-libs/proj-4.7
sys-libs/zlib
dev-qt/qtgui:4[dbus?]
dev-qt/qtscript:4
dev-qt/qtsql:4[sqlite]
dev-qt/qtwebkit:4
dmtx? ( media-libs/libdmtx )
exif? ( media-libs/libexif )
gps? ( >=sci-geosciences/gpsd-2.90 )
gpsbabel? ( sci-geosciences/gpsbabel )
opengl? ( dev-qt/qtopengl:4 )
"
DEPEND="${RDEPEND}"
src_configure() {
local mycmakeargs=(
$(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 opengl WITH_OPENGL)
$(cmake-utils_use opengl PLOT_3D)
$(cmake-utils_use rmap RMAP)
)
cmake-utils_src_configure
}
|