blob: 50daab2c671641887e0e972810a166f91ea20665 (
plain) (
blame)
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
|
# New ports collection makefile for: mod_accessCookie
# Date created: Apr 16 2004
# Whom: Clement Laforet <clement@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= mod_accessCookie
PORTVERSION= 0.4
CATEGORIES= www
MASTER_SITES= http://etweb.wkv.at/himself/Programming/
EXTRACT_SUFX= .tgz
MAINTAINER= apache@FreeBSD.org
COMMENT= Supply access control based cookies stored in a MySQL database
MAKE_JOBS_SAFE= yes
USE_MYSQL= YES
USE_APACHE= 13
AP_FAST_BUILD= YES
AP_GENPLIST= YES
AP_INC+= ${LOCALBASE}/include/mysql
AP_LIB+= ${LOCALBASE}/lib/mysql -lmysqlclient
PORTDOCS= README
DEPRECATED= upstream is gone
EXPIRATION_DATE= 2011-01-02
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for f in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|