1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-20 04:02:27 +00:00
freebsd-ports/www/mod_xmlns/Makefile
Martin Wilke d095bc77c6 mod_xmlns adds XML Namespace support to Apache, and may form the basis
of XML-driven publishing systems. It runs as an output filter, so it
works automatically with any content generator.

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

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

41 lines
802 B
Makefile

# New ports collection Makefile for: mod_xmlns
#
# Date created: 10/01/2007
# Whom: Dominic Marks <dom@goodforbusiness.co.uk>
#
# $FreeBSD$
#
PORTNAME= mod_xmlns
PORTVERSION= 0.97
CATEGORIES= www
MASTER_SITES= http://apache.webthing.com/svn/apache/filters/xmlns/
DISTFILES= xmlns.h mod_xmlns.c
MAINTAINER= dom@helenmarks.co.uk
COMMENT= Apache module for XML namespaces
USE_GNOME= libxml2
USE_APACHE= yes
WITH_APACHE2= yes
XML2_INC= ${LOCALBASE}/include/libxml2
XML2_LIB= ${LOCALBASE}/lib
do-extract:
@${DO_NADA}
pre-fetch:
@${MKDIR} ${WRKDIR}
post-fetch:
@${CP} ${DISTDIR}/xmlns.h ${DISTDIR}/mod_xmlns.c ${WRKDIR}
do-build:
@(cd ${WRKDIR} && ${APXS} -c -I ${XML2_INC} -L ${XML2_LIB} -lxml2 mod_xmlns.c)
do-install:
@(cd ${WRKDIR} && ${APXS} -A -i mod_xmlns.la)
.include <bsd.port.mk>