blob: b70d596ab73f9fcc0e3c14dda13f0b433624e135 (
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
|
# New ports collection makefile for: p5-Apache-Peek
# Date created: 24-Jul-2000
# Whom: Leo Kim <leo@florida.sarang.net>
#
# $FreeBSD$
#
PORTNAME= Apache-Peek
PORTVERSION= 1.01
CATEGORIES= www perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR=Apache
PKGNAMEPREFIX= p5-
MAINTAINER= ports@FreeBSD.org
COMMENT= A data debugging tool for the XS programmer (under mod_perl)
.if defined(WITH_MODPERL2)
BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Apache2/mod_perl.pm:${PORTSDIR}/www/mod_perl2 \
${SITE_PERL}/Apache2/Test.pm:${PORTSDIR}/www/p5-Apache-Test
MOD_PERL= 2
.else
BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/mod_perl.pm:${PORTSDIR}/www/mod_perl \
${SITE_PERL}/Apache/Test.pm:${PORTSDIR}/www/p5-Apache-Test
MOD_PERL= 1
.endif
RUN_DEPENDS= ${BUILD_DEPENDS}
PERL_CONFIGURE= YES
CONFIGURE_ARGS= -httpd ${LOCALBASE}/sbin/httpd
MAN3= Apache::Peek.3
.include <bsd.port.mk>
|