2005-05-08 20:59:20 +02:00
|
|
|
# New ports collection makefile for: cgilib
|
|
|
|
# Date created: 8 May 2005
|
|
|
|
# Whom: Dmitry Sivachenko <demon@FreeBSD.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= cgilib
|
2010-05-19 16:42:52 +02:00
|
|
|
PORTVERSION= 0.7
|
2005-05-08 20:59:20 +02:00
|
|
|
CATEGORIES= devel www
|
2005-05-08 21:24:24 +02:00
|
|
|
MASTER_SITES= http://www.infodrom.org/projects/cgilib/download/ \
|
|
|
|
http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/pub/libs/
|
2005-05-08 20:59:20 +02:00
|
|
|
|
|
|
|
MAINTAINER= demon@FreeBSD.org
|
|
|
|
COMMENT= A library of procedures for developing CGI programs in C
|
|
|
|
|
- Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+
Thanks to all Helpers:
Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
ehaupt, nox, itetcu, flz, pav
PR: 116263
Tested on: pointyhat
Approved by: portmgr (pav)
2008-04-19 19:56:05 +02:00
|
|
|
USE_LDCONFIG= yes
|
2005-05-08 20:59:20 +02:00
|
|
|
|
|
|
|
MAKEFILE= ${FILESDIR}/Makefile.bsd
|
|
|
|
|
2008-05-19 17:18:46 +02:00
|
|
|
PLIST_FILES= include/cgi.h lib/libcgi.a lib/libcgi.so lib/libcgi.so.1
|
|
|
|
MAN3= cgiDebug.3 cgiFree.3 cgiFreeList.3 cgiGetCookie.3 cgiEscape.3 \
|
|
|
|
cgiGetFile.3 cgiGetFiles.3 cgiGetCookies.3 cgiGetValue.3 \
|
|
|
|
cgiGetVariables.3 cgiHeader.3 cgiInit.3 cgiRedirect.3 \
|
|
|
|
cgiSetHeader.3 cgiSetType.3
|
2005-05-08 20:59:20 +02:00
|
|
|
|
|
|
|
post-install:
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/cgi.h ${PREFIX}/include
|
|
|
|
${INSTALL_MAN} ${WRKSRC}/*.3 ${PREFIX}/man/man3
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|