6b91e24918
packaging changes: - remove patch fragment applied upstream - add a request to clarify and upstream the sun patch - update comments about why things are or are not included. Add a note to consider gtk3. - disable geoclue, oauth, and zip, pending decision on defaults and options (magic and mapnik remain disabled) - remove perl dependencies, apparently no longer preesent upstream - depend on libbzip2 - depend on png (was already indirect) - depend on nettle (MD5 for thumbnail cache) upstream changes: == New features since 1.6.2 == * KMZ Map File Support * Apply Button for Layer Properties * Support More GPX Fields * Updated Default Map: Mapbox Outdoors * GeoClue Support for Automatic Location * Faster GPX File Loading * Waypoint / EXIF GPS Image Direction Support * Support More Garmin Waypoint Symbols * Support Garmin Device GPX Point Limits * Windows GPSD Client * Support 'External' GPX File Layers in .vik Files * Usage of HTTPS addresses * Support OAuth for OSM * Support High Resolution Displays * Track+Route Split+Join Tools * Calculation of Eddington Number * Calendar Display * Can Select a Result from the Online Search Results * Reproducible Builds * 64bit Windows Build only * Travis Build + CI * Consistent Licensing of GPL2+ * Many Internal Improvements + Fixes (bug fixes)
79 lines
2.5 KiB
Makefile
79 lines
2.5 KiB
Makefile
# $NetBSD: Makefile,v 1.96 2019/01/22 15:28:45 gdt Exp $
|
|
#
|
|
|
|
VERSION= 1.7
|
|
DISTNAME= viking-${VERSION}
|
|
CATEGORIES= geography
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=viking/}${VERSION}/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= gdt@NetBSD.org
|
|
HOMEPAGE= https://sourceforge.net/projects/viking/
|
|
COMMENT= Viking manages GPS data, supports OpenStreetMap and geocaching
|
|
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
# viking says it "will" use c++11, and mapnik (not yet included) needs
|
|
# c++11.
|
|
USE_LANGUAGES= c c++
|
|
|
|
USE_TOOLS+= gmake intltool msgfmt pkg-config
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
TEST_TARGET= check
|
|
|
|
# For each option, "\todo RESOLVE" means: Decide to make default, or
|
|
# to turn off, or to make an option, and explain why.
|
|
|
|
# \todo RESOLVE
|
|
CONFIGURE_ARGS+= --disable-geoclue
|
|
|
|
# \todo RESOLVE
|
|
CONFIGURE_ARGS+= --disable-magic
|
|
|
|
# \todo RESOLVE
|
|
CONFIGURE_ARGS+= --disable-mapnik
|
|
# \todo README says icu is required. However, it seems to be
|
|
# dependency of mapnik, not necessarily actually used by viking.
|
|
|
|
# \todo RESOLVE
|
|
CONFIGURE_ARGS+= --disable-oauth
|
|
|
|
# \todo RESOLVE
|
|
CONFIGURE_ARGS+= --disable-zip
|
|
#.include "../../archivers/libzip/buildlink3.mk"
|
|
|
|
# Perhaps optionize use of gpsd (remove bl3, add this).
|
|
# CONFIGURE_ARGS+= --disable-realtime-gps-tracking
|
|
|
|
# Building docs fails with a unicode error.
|
|
# old: Building docs fails because mapnik being optional is not respected.
|
|
# \todo Resolve.
|
|
#CONFIGURE_ARGS+= --enable-gtk-doc
|
|
#.include "../../textproc/gtk-doc/buildlink3.mk"
|
|
|
|
# According to upstream, gpsbabel is merely recommended. gpsbabel
|
|
# depends on qt, and is thus really large. Users can install it and
|
|
# use it at runtime, so don't depend on it at build time.
|
|
#DEPENDS+= gpsbabel-[0-9]*:../../geography/gpsbabel
|
|
|
|
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
|
|
|
|
.include "../../archivers/bzip2/buildlink3.mk"
|
|
.include "../../databases/sqlite3/buildlink3.mk"
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../graphics/libexif/buildlink3.mk"
|
|
.include "../../graphics/gexiv2/buildlink3.mk"
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
.include "../../geography/gpsd/buildlink3.mk"
|
|
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
|
|
.include "../../mk/omf-scrollkeeper.mk"
|
|
# Avoids internal MD5, and betterintegration with thumbmail cache.
|
|
.include "../../security/nettle/buildlink3.mk"
|
|
# gnome-doc-utils is needed even if not building documentation
|
|
.include "../../textproc/gnome-doc-utils/buildlink3.mk"
|
|
.include "../../www/curl/buildlink3.mk"
|
|
# \todo Consider gtk3, perhaps as an option.
|
|
.include "../../x11/gtk2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|