7d650f022d
Disable gps option by default. The configure script does not recognize pkgsrc's version of ImageMagick, which breaks the option.
17 lines
514 B
Makefile
17 lines
514 B
Makefile
# $NetBSD: options.mk,v 1.4 2019/12/28 12:43:47 wiz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.kismet
|
|
PKG_SUPPORTED_OPTIONS= gps
|
|
PKG_SUGGESTED_OPTIONS=
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mgps)
|
|
BROKEN= "configure does not recognize ImageMagick"
|
|
PLIST_SRC+= PLIST.gps
|
|
DEPENDS+= wget>=1.9.1:../../net/wget
|
|
.include "../../devel/gmp/buildlink3.mk"
|
|
.include "../../graphics/ImageMagick6/buildlink3.mk"
|
|
.include "../../textproc/expat/buildlink3.mk"
|
|
.include "../../x11/libX11/buildlink3.mk"
|
|
.endif
|