422bce3414
my ports in the past 3 weeks while ports were broken on any 10.x machines, which means I'm unable to maintain them. So let people know that there's no available support for them until things are back to normal (which also means that anyone with spare time will be able to fix them without getting approval).
37 lines
808 B
Makefile
37 lines
808 B
Makefile
# New ports collection makefile for: mod_proctitle
|
|
# Date created: 15 April 2007
|
|
# Whom: stas
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mod_proctitle
|
|
PORTVERSION= 0.4.1
|
|
PORTREVISION= 0
|
|
CATEGORIES= www
|
|
MASTER_SITES= ftp://ftp.springdaemons.com/soft/
|
|
PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Set httpd process titles to reflect currently processed request
|
|
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
USE_APACHE= 20+
|
|
GNU_CONFIGURE= yes
|
|
USE_BZIP2= yes
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
PLIST_FILES= ${APACHEMODDIR}/${PORTNAME}.so
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.if ${APACHE_VERSION} == 20
|
|
CFLAGS+= -I${LOCALBASE}/include/apr-0
|
|
.else
|
|
CFLAGS+= -I${LOCALBASE}/include/apr-1
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/.libs/mod_proctitle.so \
|
|
${PREFIX}/${APACHEMODDIR}/
|
|
|
|
.include <bsd.port.post.mk>
|