pkgsrc/converters/qrencode/Makefile
ryoon 4d749ff380 Update to 3.2.0
* Remove obsolete patches.

Changelog:
Version 3.2.0 (2011.11.26)
------------------------
* "--dpi" (or "-d") option has been added to qrencode. This option set DPI
  information in an output PNG image. (Thanks to David Dahl)
* New option "--enable-thread-safety" has been added to the configure script
  that makes the library thread-safe. It is enabled by default.
* QRcode_encodeData(), QRcode_encodeDataMQR, QRcode_encodeDataStructured() have
  been added for binary data encoding including '\0'.
* Typo and bug fixes.
* Experimental Micro QR Code support has been added.
* "--micro" (or "-M") option for Micro QR Code has been added to qrencode.
  (experimental)

Release Note:
Binary data including '\0' is now supported. To encode a binary data, give "-8"
option to qrencode, and let qrencode obtain data via standard input like
"qrencode -8 -o output.png < binary". "--dpi" and "-d" are also added to embed
DPI information to PNG file.

A bug in the mask pattern evaluation routine has been fixed. In some cases,
libqrencode may generate a different symbol from the one that was generated by
the prior libqrencode because of this bug fix, but the embedded data are not
affected. The symbols generated by the old libqrencode are valid.

Experimental support of Micro QR Code encoder has been added. Some functions
(QRcode_*MQR()) have been added to the library. The command line tool generates
Micro QR Code when "--micro" or "-M" is given.
2011-12-13 21:44:36 +00:00

29 lines
694 B
Makefile

# $NetBSD: Makefile,v 1.7 2011/12/13 21:44:36 ryoon Exp $
#
DISTNAME= qrencode-3.2.0
CATEGORIES= converters
MASTER_SITES= http://fukuchi.org/works/qrencode/
MAINTAINER= alaric@kitten-technologies.co.uk
HOMEPAGE= http://fukuchi.org/works/qrencode/index.en.html
COMMENT= QR Code generator
LICENSE= gnu-lgpl-v2.1
PKG_DESTDIR_SUPPORT= user-destdir
GNU_CONFIGURE= yes
USE_TOOLS+= pkg-config
USE_LANGUAGES= c c++
USE_LIBTOOL= yes
MAKE_JOBS_SAFE= no
# The tests are not actually installed anyway, and at least
# one of these tests requires SDL.
CONFIGURE_ARGS+= --without-tests
PKGCONFIG_OVERRIDE+= libqrencode.pc.in
.include "../../graphics/png/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"