pkgsrc/converters/qrencode/options.mk
rodent a18cc9f996 Update to latest release. Use options framework to all user to build a
statically linked package. Buildlink pthread. Simplify HOMEPAGE. USE .bz2
distfile. From NEWS:

Version 3.4.2 (2013.3.1)
------------------------
* Bug fix release. (Thanks to chisj, vlad417, Petr and Viona)

Release Note:
Micro QR Code encoder had a bug that caused incorrect output (issue #25). Now
the bug has been fixed. Memory leak bug (#24) and insufficient string splitting
bug have been fixed.
2013-06-09 13:48:50 +00:00

13 lines
324 B
Makefile

# $NetBSD: options.mk,v 1.1 2013/06/09 13:48:50 rodent Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.qrencode
PKG_SUPPORTED_OPTIONS= static
PKG_SUGGESTED_OPTIONS+= # blank
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mstatic)
CONFIGURE_ARGS+= --enable-static=yes
.else
CONFIGURE_ARGS+= --enable-static=no
.endif