head	1.10;
access;
symbols
	RELEASE_8_3_0:1.8
	RELEASE_9_0_0:1.8
	RELEASE_7_4_0:1.7
	RELEASE_8_2_0:1.7
	RELEASE_6_EOL:1.7
	RELEASE_8_1_0:1.7
	RELEASE_7_3_0:1.5
	RELEASE_8_0_0:1.5
	RELEASE_7_2_0:1.1
	RELEASE_7_1_0:1.1
	RELEASE_6_4_0:1.1
	RELEASE_5_EOL:1.1
	RELEASE_7_0_0:1.1
	RELEASE_6_3_0:1.1
	PRE_XORG_7:1.1
	RELEASE_4_EOL:1.1;
locks; strict;
comment	@# @;


1.10
date	2012.11.17.06.02.41;	author svnexp;	state Exp;
branches;
next	1.9;

1.9
date	2012.08.18.14.29.08;	author ohauer;	state Exp;
branches;
next	1.8;

1.8
date	2011.08.20.17.27.46;	author ohauer;	state Exp;
branches;
next	1.7;

1.7
date	2010.06.07.06.01.56;	author pgollucci;	state Exp;
branches;
next	1.6;

1.6
date	2010.05.25.20.17.35;	author pgollucci;	state Exp;
branches;
next	1.5;

1.5
date	2009.09.05.04.44.21;	author pgollucci;	state Exp;
branches;
next	1.4;

1.4
date	2009.08.16.08.14.47;	author linimon;	state Exp;
branches;
next	1.3;

1.3
date	2009.05.21.20.45.32;	author pgollucci;	state Exp;
branches;
next	1.2;

1.2
date	2009.04.24.22.21.13;	author pgollucci;	state Exp;
branches;
next	1.1;

1.1
date	2007.01.22.07.50.40;	author miwi;	state Exp;
branches;
next	;


desc
@@


1.10
log
@Switch exporter over
@
text
@# New ports collection Makefile for:	mod_proxy_xml
#
# Date created:		10/01/2007
# Whom:			Dominic Marks <dom@@goodforbusiness.co.uk>
#
# $FreeBSD: head/www/mod_proxy_xml/Makefile 302724 2012-08-18 14:29:08Z ohauer $
#

PORTNAME=	mod_proxy_xml
PORTVERSION=	0.1
PORTREVISION=	1
CATEGORIES=	www
MASTER_SITES=	http://apache.webthing.com/svn/apache/filters/xmlns/
PKGNAMEPREFIX=	${APACHE_PKGNAMEPREFIX}
DISTFILES=	xmlns.h mod_proxy_xml.c

MAINTAINER=	apache@@FreeBSD.org
COMMENT=	Apache module for rewriting URI references in XML

MAKE_JOBS_SAFE=	yes

WRKSRC=	${WRKDIR}

USE_GNOME=	libxml2
USE_APACHE=	22+

AP_FAST_BUILD=	yes
AP_GENPLIST=	yes
AP_INC=	${LOCALBASE}/include/libxml2
AP_LIB=	${LOCALBASE}/lib -lxml2

pre-fetch:
	@@${MKDIR} ${WRKDIR}/

post-fetch:
	@@${CP} ${DISTDIR}/xmlns.h ${DISTDIR}/mod_proxy_xml.c ${WRKDIR}/

do-extract:
	@@${DO_NADA}

.include <bsd.port.mk>
@


1.9
log
@SVN rev 302724 on 2012-08-18 14:29:08Z by ohauer

- remove www/apache20 and devel/apr0
- s/USE_APACHE= 20+/USE_APACHE= 22+/
- unify s/YES/yes/
- cleanup APACHE_VERSION <= 22 usage
- add entry to MOVED

with hat apache@@
@
text
@d6 1
a6 1
# $FreeBSD$
@


1.8
log
@ - bump PORTREVISION from ports if USE_APACHE=13+ or 20+ is defined
@
text
@d25 1
a25 1
USE_APACHE=	20+
@


1.7
log
@- Conver to AP_FAST_BUILD / AP_GENPLIST
@
text
@d11 1
d25 1
a25 1
USE_APACHE=	2.0+
@


1.6
log
@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)
@
text
@d19 3
a21 1
MAKE_JOBS_SAFE=  yes
d26 4
a29 5
XML2_INC=	${LOCALBASE}/include/libxml2
XML2_LIB=	${LOCALBASE}/lib

do-extract:
	@@${DO_NADA}
d32 1
a32 1
	@@${MKDIR} ${WRKDIR}
d35 1
a35 1
	@@${CP} ${DISTDIR}/xmlns.h ${DISTDIR}/mod_proxy_xml.c ${WRKDIR}
d37 2
a38 5
do-build:
	@@(cd ${WRKDIR} && ${APXS} -c -I ${XML2_INC} -L ${XML2_LIB} -lxml2 mod_proxy_xml.c)

do-install:
	@@(cd ${WRKDIR} && ${APXS} -A -i mod_proxy_xml.la)
@


1.5
log
@- pass to perl@@
@
text
@d13 1
@


1.4
log
@Reset dom@@helenmarks.co.uk due to maintainer-timeouts and no response
to email.

Hat:		portmgr
@
text
@d15 1
a15 1
MAINTAINER=	ports@@FreeBSD.org
@


1.3
log
@- Mark remaining mod_* ports MAKE_JOBS_SAFE=yes

PR:             ports/134611
Approved by:    pav (#bsdports)
@
text
@d15 1
a15 1
MAINTAINER=	dom@@helenmarks.co.uk
@


1.2
log
@- USE_APACHE -> 2.0+
- Fix plist with www/apache2*

PR:             ports/133617
Approved by:    maintainer timeout (2 weeks)
Submitted by:   me
@
text
@d18 2
@


1.1
log
@mod_proxy_xml is an output filter to rewrite links in a proxy
situation, to ensure that links work for users outside the proxy.
It serves the same purpose as Apache's ProxyPassReverse directive
does for HTTP headers, and is an essential component of a reverse
proxy.

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

PR:		ports/108053
Submitted by:	Dominic Marks <dom at goodforbusiness.co.uk>
@
text
@d19 1
a19 2
USE_APACHE=	yes
WITH_APACHE2=	yes
@

