mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
335f8cb35d
in Mk/bsd.ports.mk due to ordering in Mk/bsd.port.mk. This causes OPTIONSFILE to be incorrectly set during some make phases as a result of the recent PKGNAMEPREFIX for apache ports. 'Revert' some of the PKGNAMEPREFIX changes for apXX-. - Must be manually requested in tbe port Makefile either by a) AP_FAST_BUILD=yes b) PKGNAMEPREFIX=${APACHE_PKGNAMEPREFIX} - Going forward, we will only do this for ports where WITH_APACHE is NOT optional, but required. mod_* ports are a good fit. 141 ports are mod_ ports 80 of those use AP_FAST_BUILD and thus are auto hooked by this patch [a]. 61 remaining are then patched to mirror the other $lang frameworks [b]. PR: ports/146956 Reported by: Hans F. Nordhaug <Hans.F.Nordhaug@hiMolde.no>, several Discussed with: pav, itectu on #bsdports Tested by: P6 TB run Approved by: portmgr (pav)
37 lines
790 B
Makefile
37 lines
790 B
Makefile
# New ports collection makefile for: mod_proctitle
|
|
# Date created: 15 April 2007
|
|
# Whom: stas
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mod_proctitle
|
|
PORTVERSION= 0.3
|
|
CATEGORIES= www
|
|
MASTER_SITES= ftp://ftp.springdaemons.com/soft/
|
|
PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= stas@FreeBSD.org
|
|
COMMENT= Set httpd process titles to reflect currently processed request
|
|
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
USE_APACHE= 2.0+
|
|
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>
|