blob: 87c2068f5a175b75c07a9f62f20abf0a8004ae61 (
plain)
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
|
# $NetBSD: Makefile,v 1.18 2020/03/20 11:58:35 nia Exp $
DISTNAME= cgi.tcl
PKGNAME= tcl-cgi-1.3.0
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_BACKUP}
MAINTAINER= bouyer@NetBSD.org
HOMEPAGE= http://expect.sourceforge.net/cgi.tcl/index.html
COMMENT= Library of Tcl procedures to assist in writing CGI scripts
DEPENDS+= tcl>=8.3.2:../../lang/tcl
WRKSRC= ${WRKDIR}/cgi.tcl-1.3
DIST_SUBDIR= ${PKGNAME_NOREV}
GNU_CONFIGURE= yes
INSTALLATION_DIRS= share/doc/tcl/cgi-tcl share/examples/tcl/cgi-tcl
post-install:
${INSTALL_DATA} ${WRKSRC}/doc/* ${DESTDIR}${PREFIX}/share/doc/tcl/cgi-tcl
${INSTALL_DATA} ${WRKSRC}/example/* ${DESTDIR}${PREFIX}/share/examples/tcl/cgi-tcl
.include "../../mk/bsd.pkg.mk"
|