blob: 3f9e9c23476127d833eb9063cec09338c945d0cc (
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
39
40
41
42
43
|
# New ports collection makefile for: Apache-AuthCookie
# Date created: Sun Dec 31 19:55:36 2000
# Whom: will
#
# $FreeBSD$
#
PORTNAME= Apache-AuthCookie
PORTVERSION= 3.18
PORTREVISION= 1
CATEGORIES= www perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
MAINTAINER= perl@FreeBSD.org
COMMENT= A perl module to provide custom forms for reauthentication
USE_APACHE= 13+
.include <bsd.port.pre.mk>
.if defined(WITH_MODPERL2) || ${APACHE_VERSION} > 13
BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/mod_perl2.pm:${PORTSDIR}/www/mod_perl2
RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/mod_perl2.pm:${PORTSDIR}/www/mod_perl2
.else
BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/mod_perl.pm:${PORTSDIR}/www/mod_perl \
p5-Apache-Test>=1.35:${PORTSDIR}/www/p5-Apache-Test
RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/mod_perl.pm:${PORTSDIR}/www/mod_perl
.endif
CURUSER?= `whoami`
CURGRP?= `groups | ${AWK} '{print $$1}'`
TESTPORT?= 8228
PERL_CONFIGURE= yes
CONFIGURE_ENV+= APACHE="${HTTPD}" \
TESTUSER="${CURUSER}" \
TESTGRP="${CURGRP}" \
TESTPORT="${TESTPORT}"
MAN3= Apache2::AuthCookie.3 Apache::AuthCookie.3 \
Apache::AuthCookie::FAQ.3 Apache::AuthCookie::Util.3
.include <bsd.port.post.mk>
|