blob: f37236b7da7ecabcfe6e39b99671c4830f7b4458 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# $NetBSD: Makefile,v 1.5 2002/02/05 04:46:31 jmc Exp $
#
DISTNAME= mod_aolserver-1.1
PKGNAME= ap-aolserver-1.1
CATEGORIES= www
MASTER_SITES= # none
MAINTAINER= cjones@netbsd.org
HOMEPAGE= http://www.arsdigita.com/acs-repository/one-version?version_id=601
COMMENT= Module that emulates AOLServer in Apache
DEPENDS+= postgresql-lib>=7.0:../../databases/postgresql-lib
DEPENDS+= libmm>=1.1.3:../../devel/libmm
DEPENDS+= tcl>=8.3:../../lang/tcl
DEPENDS+= apache{,6}-1.3.*:../../www/apache
HAS_CONFIGURE= # yes
GNU_CONFIGURE= # yes
CONFIGURE_ARGS+= --with-database=postgres --with-mm=${PREFIX}
CONFIGURE_ENV+= CPPFLAGS="-I${PREFIX}/include/pgsql -I${PREFIX}/include/httpd"
MESSAGE_SUBST+= PREFIX=${PREFIX}
do-fetch:
@if [ ! -f ${DISTDIR}/${DISTFILES} ] ; then \
${ECHO} "Please fetch ${DISTFILES} into ${DISTDIR}" ; \
${ECHO} "from ${HOMEPAGE} ." ; \
exit 1 ; \
fi
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/mod_aolserver
${INSTALL_DATA} ${FILESDIR}/README ${FILESDIR}/nsd.tcl.sample \
${WRKSRC}/tcl_modules/nsd.ini.sample \
${PREFIX}/share/examples/mod_aolserver
.include "../../mk/bsd.pkg.mk"
|