blob: 3e75027c56ebf02bd7ee7886071051cd4c422aa1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# ex:ts=8
# Ports collection makefile for: libqrencode
# Date created: Dec 14, 2006
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= libqrencode
PORTVERSION= 3.1.1
PORTREVISION= 1
CATEGORIES= graphics
MASTER_SITES= http://megaui.net/fukuchi/works/qrencode/
DISTNAME= qrencode-${PORTVERSION}
MAINTAINER= vanilla@FreeBSD.org
COMMENT= A C library for encoding data in a QR Code symbol
LIB_DEPENDS= png.6:${PORTSDIR}/graphics/png
USE_GNOME= gnomehack pkgconfig
GNU_CONFIGURE= yes
LDFLAGS+= -L${LOCALBASE}/lib
CFLAGS+= -I${LOCALBASE}/include
USE_LDCONFIG= yes
MAN1= qrencode.1
PLIST_FILES= bin/qrencode \
include/qrencode.h \
lib/libqrencode.la \
lib/libqrencode.so \
lib/libqrencode.so.3 \
libdata/pkgconfig/libqrencode.pc
post-patch:
@${REINPLACE_CMD} -e 's,libpng12,libpng,' ${WRKSRC}/configure
.include <bsd.port.mk>
|