37 lines
673 B
Makefile
37 lines
673 B
Makefile
|
# New ports collection Makefile for: mod_line_edit
|
||
|
#
|
||
|
# Date created: 10/01/2007
|
||
|
# Whom: Dominic Marks <dom@goodforbusiness.co.uk>
|
||
|
#
|
||
|
# $FreeBSD$
|
||
|
#
|
||
|
|
||
|
PORTNAME= mod_line_edit
|
||
|
PORTVERSION= 1.0.0
|
||
|
CATEGORIES= www
|
||
|
MASTER_SITES= http://apache.webthing.com/mod_line_edit/
|
||
|
DISTFILES= mod_line_edit.c
|
||
|
|
||
|
MAINTAINER= dom@helenmarks.co.uk
|
||
|
COMMENT= Apache module for simple text rewriting
|
||
|
|
||
|
USE_APACHE= yes
|
||
|
WITH_APACHE2= yes
|
||
|
|
||
|
do-extract:
|
||
|
@${DO_NADA}
|
||
|
|
||
|
pre-fetch:
|
||
|
@${MKDIR} ${WRKDIR}
|
||
|
|
||
|
post-fetch:
|
||
|
@${CP} ${DISTDIR}/mod_line_edit.c ${WRKDIR}
|
||
|
|
||
|
do-build:
|
||
|
@(cd ${WRKDIR} && ${APXS} -c mod_line_edit.c)
|
||
|
|
||
|
do-install:
|
||
|
@(cd ${WRKDIR} && ${APXS} -A -i mod_line_edit.la)
|
||
|
|
||
|
.include <bsd.port.mk>
|