diff options
author | ijliao <ijliao@FreeBSD.org> | 2006-12-14 02:53:29 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2006-12-14 02:53:29 +0000 |
commit | 9a79f1438639374b1a4b47d3d1151cb535319ef4 (patch) | |
tree | 11260c3eec91c4f0ae56c7712c22a16f9d26192e /graphics/libqrencode/Makefile | |
parent | b1f5c38cd372c7d3cf995eea984d3878a07ecf26 (diff) | |
download | FreeBSD-ports-9a79f1438639374b1a4b47d3d1151cb535319ef4.zip FreeBSD-ports-9a79f1438639374b1a4b47d3d1151cb535319ef4.tar.gz |
add libqrencode 1.0.0
A C library for encoding data in a QR Code symbol
Diffstat (limited to 'graphics/libqrencode/Makefile')
-rw-r--r-- | graphics/libqrencode/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/graphics/libqrencode/Makefile b/graphics/libqrencode/Makefile new file mode 100644 index 0000000..3c472f3 --- /dev/null +++ b/graphics/libqrencode/Makefile @@ -0,0 +1,33 @@ +# ex:ts=8 +# Ports collection makefile for: libqrencode +# Date created: Dec 14, 2006 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= libqrencode +PORTVERSION= 1.0.0 +CATEGORIES= graphics +MASTER_SITES= http://megaui.net/fukuchi/works/qrencode/ +DISTNAME= qrencode-${PORTVERSION} + +MAINTAINER= ijliao@FreeBSD.org +COMMENT= A C library for encoding data in a QR Code symbol + +LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png + +USE_SDL= sdl +USE_GNOME= gnometarget gnomehack +GNU_CONFIGURE= yes +CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib" +CFLAGS+= -I${LOCALBASE}/include +USE_LDCONFIG= yes + +PLIST_FILES= bin/qrencode \ + include/qrencode.h \ + lib/libqrencode.so \ + lib/libqrencode.so.1 \ + libdata/pkgconfig/libqrencode.pc + +.include <bsd.port.mk> |