1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-14 03:10:47 +00:00
freebsd-ports/www/mod_line_edit/Makefile
Martin Wilke 6d29e03fa5 mod_line_edit is a general-purpose filter for text documents. It
operates as a simple on-the-fly line editor, applying
search-and-replace rules defined in a configuration or .htaccess
file.

WWW: http://apache.webthing.com/mod_line_edit/

PR:		ports/108053
Submitted by:	Dominic Marks <dom at goodforbusiness.co.uk>
2007-01-22 07:48:39 +00:00

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>