mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
3e4ed01146
- 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)
35 lines
873 B
Makefile
35 lines
873 B
Makefile
# New ports collection makefile for: cgihtml
|
|
# Date created: 3 Nov 1997
|
|
# Whom: Ian Vaudrey <i.vaudrey@bigfoot.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cgihtml
|
|
PORTVERSION= 1.69
|
|
PORTREVISION= 2
|
|
CATEGORIES= www devel
|
|
MASTER_SITES= http://www.eekim.com/software/cgihtml/ \
|
|
ftp://www.eekim.com/pub/users/eekim/cgihtml/ \
|
|
ftp://hcs.harvard.edu/pub/web/tools/cgihtml/
|
|
|
|
MAINTAINER= roam@FreeBSD.org
|
|
COMMENT= Library that simplifies the task of writing CGI programs in C
|
|
|
|
USE_LDCONFIG= yes
|
|
|
|
post-extract:
|
|
@${MV} ${WRKSRC}/Makefile ${WRKSRC}/Makefile.dist
|
|
@${CP} ${FILESDIR}/Makefile ${WRKSRC}
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/cgihtml/html
|
|
.for file in CHANGES CREDITS
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/cgihtml
|
|
.endfor
|
|
${INSTALL_DATA} ${WRKSRC}/docs/*.html ${PREFIX}/share/doc/cgihtml/html
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|