643bf74329
Apache Rivet is a system for creating dynamic web content via a programming language integrated with Apache Web Server. It is designed to be fast, powerful and extensible, consume few system resources, be easy to learn, and to provide the user with a platform that can also be used for other programming tasks outside the web (GUI's, system administration tasks, text processing, database manipulation, XML, and so on). In order to meet these goals, the Tcl programming language has been chosen to combine with the Apache Web Server.
28 lines
732 B
Makefile
28 lines
732 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2004/12/27 23:49:49 minskim Exp $
|
|
|
|
DISTNAME= rivet_0.4.0-1
|
|
PKGNAME= ap-rivet-0.4.0.1
|
|
CATEGORIES= www
|
|
MASTER_SITES= ${MASTER_SITE_APACHE:=tcl/rivet/}
|
|
|
|
MAINTAINER= minskim@NetBSD.org
|
|
HOMEPAGE= http://tcl.apache.org/rivet/
|
|
COMMENT= System for creating dynamic web content via Tcl
|
|
|
|
WRKSRC= ${WRKDIR}/tcl-rivet/src
|
|
HAS_CONFIGURE= yes
|
|
USE_BUILDLINK3= yes
|
|
|
|
CONFIGURE_SCRIPT= ./configure.tcl
|
|
CONFIGURE_ARGS+= -prefix ${PREFIX}/lib \
|
|
-with-apxs ${APXS} \
|
|
-with-tclconfig ${BUILDLINK_PREFIX.tcl}/lib/tclConfig.sh
|
|
CONFIGURE_ENV+= LANG=C
|
|
|
|
.include "../../lang/tcl/buildlink3.mk"
|
|
.include "../../www/apache/buildlink3.mk"
|
|
|
|
do-install:
|
|
cd ${WRKSRC}; ./make.tcl install
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|