1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-04 01:48:54 +00:00
freebsd-ports/www/mod_log_sql/Makefile
Philip M. Gollucci 335f8cb35d Mk/bsd.apache.mk can not sufficiently alter things before Mk/bsd.options.mk
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)
2010-05-25 20:17:37 +00:00

58 lines
2.0 KiB
Makefile

# New ports collection makefile for: apache mod_log_sql
# Date created: 2001/11/22
# Whom: lev@serebryakov.spb.ru
#
# $FreeBSD$
PORTNAME= mod_log_sql
PORTVERSION= 1.18
PORTREVISION= 3
CATEGORIES= www databases
MASTER_SITES= http://www.outoforder.cc/downloads/${PORTNAME}/
PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
MAINTAINER= lev@FreeBSD.org
COMMENT= Allows Apache to log to a MySQL database
MAKE_JOBS_SAFE= yes
WRKSRC= ${WRKDIR}/${PORTNAME}
USE_MYSQL= yes
USE_BZIP2= yes
USE_GMAKE= yes
USE_APACHE= 1.3
ALL_TARGET= dso
INSTALL_TARGET= dsoinstall
PORTDOCS= LICENSE CHANGELOG create_tables.sql make_combined_log.pl \
documentation.ps documentation.txt README FreeBSD-readme.txt \
HTML
do-configure:
@${REINPLACE_CMD} "s|^APACHEINSTALLED = .*\$$|APACHEINSTALLED = ${LOCALBASE}|" ${WRKSRC}/Makefile
@${REINPLACE_CMD} "s|^APACHEHEADERS = .*\$$|APACHEHEADERS = ${LOCALBASE}/include/apache|" ${WRKSRC}/Makefile
@${REINPLACE_CMD} "s|^APXS = .*\$$|APXS = ${APXS}|" ${WRKSRC}/Makefile
@${REINPLACE_CMD} "s|^MYSQLLIBRARIES = .*\$$|MYSQLLIBRARIES = ${LOCALBASE}/lib/mysql|" ${WRKSRC}/Makefile
@${REINPLACE_CMD} "s|^MYSQLHEADERS = .*\$$|MYSQLHEADERS = ${LOCALBASE}/include/mysql|" ${WRKSRC}/Makefile
@${REINPLACE_CMD} "s|sql_log_module|log_sql_module|g" ${WRKSRC}/${PORTNAME}.c
post-install:
${APXS} -e -a -n log_sql ${LOCALBASE}/${APACHEMODDIR}/${PORTNAME}.so
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}/
@${MKDIR} ${DOCSDIR}/HTML/
@${INSTALL_DATA} ${FILESDIR}/FreeBSD-readme.txt ${DOCSDIR}/
@${INSTALL_DATA} ${WRKSRC}/LICENSE ${DOCSDIR}/
@${INSTALL_DATA} ${WRKSRC}/CHANGELOG ${DOCSDIR}/
@${INSTALL_DATA} ${WRKSRC}/create_tables.sql ${DOCSDIR}/
@${INSTALL_DATA} ${WRKSRC}/Documentation/documentation.ps ${DOCSDIR}/
@${INSTALL_DATA} ${WRKSRC}/Documentation/documentation.txt ${DOCSDIR}/
@${INSTALL_DATA} ${WRKSRC}/Documentation/README ${DOCSDIR}/
@${INSTALL_DATA} ${WRKSRC}/Documentation/HTML/* ${DOCSDIR}/HTML/
@${INSTALL_SCRIPT} ${WRKSRC}/make_combined_log.pl ${DOCSDIR}/
.endif
.include <bsd.port.mk>