aee94bd218
(GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, and Windows and supports numerous vector, raster, and database formats and functionalities. Quantum GIS provides a continously growing number of capabilities provided by core functions and plugins. You can visualize, manage, edit, analyse data, and compose printable maps. Get a first impression with some screenshots and a more detailed feature list.
20 lines
558 B
Makefile
20 lines
558 B
Makefile
# $NetBSD: options.mk,v 1.1.1.1 2010/08/27 11:42:58 adam Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.qgis
|
|
PKG_SUPPORTED_OPTIONS= python
|
|
PKG_SUGGESTED_OPTIONS+= python
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= python
|
|
|
|
.if empty(PKG_OPTIONS:Mpython)
|
|
CMAKE_ARGS+= -DWITH_BINDINGS:BOOL=FALSE
|
|
.else
|
|
CMAKE_ARGS+= -DWITH_BINDINGS:BOOL=TRUE
|
|
CMAKE_ARGS+= -DSIP_BINARY_PATH:PATH=${BUILDLINK_PREFIX.py-sip}/bin
|
|
PLIST.python= yes
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../x11/py-qt4/buildlink3.mk"
|
|
.include "../../x11/py-sip/buildlink3.mk"
|
|
.endif
|