129c62d7da
Changes: * FIX) qCgiRequestParseQueries() - quoted boundary patch. (by Hidai Kenichi) * NEW) qStrUnchar() - remove character from head and tail of the string. * NEW) qDecoderVersion() - get the version string of qDecoder library. * FIX) minor fixes related packaging.
27 lines
982 B
Makefile
27 lines
982 B
Makefile
# $NetBSD: Makefile,v 1.9 2008/11/27 21:15:36 minskim Exp $
|
|
#
|
|
|
|
DISTNAME= qDecoder-9.0.1
|
|
CATEGORIES= www
|
|
MASTER_SITES= ftp://ftp.qDecoder.org/pub/qDecoder/
|
|
|
|
MAINTAINER= jypak@users.sourceforge.net
|
|
HOMEPAGE= http://www.qDecoder.org/
|
|
COMMENT= Web Application Interface for C/C++ (CGI Library)
|
|
|
|
GNU_CONFIGURE= YES
|
|
USE_LIBTOOL= YES
|
|
INSTALLATION_DIRS= include lib share/doc/qDecoder share/doc/qDecoder/html \
|
|
share/examples/qDecoder share/examples/qDecoder/qDecoder-upload
|
|
|
|
post-install:
|
|
cd ${WRKSRC}; ${INSTALL_DATA} AUTHORS CHANGES COPYING \
|
|
qDecoder.jpg ${PREFIX}/share/doc/qDecoder
|
|
cd ${WRKSRC}/src; ${INSTALL_DATA} qDecoder.h ${PREFIX}/include
|
|
cd ${WRKSRC}/doc/html; ${INSTALL_DATA} * ${PREFIX}/share/doc/qDecoder/html
|
|
cd ${WRKSRC}/examples; ${INSTALL_DATA} *.c *.conf s*.in \
|
|
*.html ${PREFIX}/share/examples/qDecoder
|
|
cd ${WRKSRC}/examples/qDecoder-upload; ${INSTALL_DATA} *.html *.js \
|
|
${PREFIX}/share/examples/qDecoder/qDecoder-upload
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|