forked from Lainports/freebsd-ports
33 lines
671 B
Makefile
33 lines
671 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: xmlwrapp
|
|
# Date created: Jan 14, 2003
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xmlwrapp
|
|
PORTVERSION= 0.4.1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://pmade.org/pjones/software/xmlwrapp/download/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A modern style C++ library for working with XML data
|
|
|
|
LIB_DEPENDS= xml2.5:${PORTSDIR}/textproc/libxml2
|
|
|
|
USE_PERL5_BUILD= yes
|
|
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_SCRIPT= configure.pl
|
|
INSTALLS_SHLIB= yes
|
|
|
|
.if defined(WITH_XSLT)
|
|
LIB_DEPENDS+= xslt.1:${PORTSDIR}/textproc/libxslt
|
|
PLIST_SUB+= XSLT=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-xslt
|
|
PLIST_SUB+= XSLT="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|