freebsd-ports/textproc/libxml2/Makefile

74 lines
1.8 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: libxml2
1999-01-31 20:06:21 +01:00
# Date created: 28 September 1998
# Whom: Yukihiro Nakai <Nakai@technologist.com>
#
1999-08-31 04:11:56 +02:00
# $FreeBSD$
#
# WITH_THREADS enable pthread support (WILL BREAK OTHER PORTS!)
# WITHOUT_SCHEMA disable XML schema support
# WITH_MEM_DEBUG enable memory debugging (DEVELOPERS ONLY!)
# WITH_XMLLINT_HIST enable history for xmllint
# WITH_THREAD_ALLOC enable per-thread memory (DEVELOPERS ONLY!)
#
PORTNAME= libxml2
2005-09-13 00:56:01 +02:00
PORTVERSION= 2.6.22
2005-09-05 00:54:24 +02:00
PORTREVISION?= 0
CATEGORIES?= textproc gnome
1999-01-27 09:31:54 +01:00
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/${PORTNAME}/2.6
2002-03-11 20:03:53 +01:00
DIST_SUBDIR= gnome2
MAINTAINER?= gnome@FreeBSD.org
COMMENT?= XML parser library for GNOME
2002-03-11 20:03:53 +01:00
USE_BZIP2= yes
USE_GMAKE= yes
USE_ICONV= yes
USE_AUTOTOOLS= libtool:15
USE_GNOME?= gnomehack gnometarget pkgconfig
INSTALLS_SHLIB= yes
2002-07-07 06:34:45 +02:00
USE_REINPLACE= yes
CONFIGURE_ARGS?= --with-iconv=${LOCALBASE} \
2004-03-23 15:40:57 +01:00
--with-html-dir=${PREFIX}/share/doc \
--with-html-subdir=${PORTNAME} \
--without-python
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
.if !defined(MASTERDIR)
MAN1= xml2-config.1 xmllint.1 xmlcatalog.1
2002-03-11 20:03:53 +01:00
MAN3= libxml.3
.endif
.if defined(WITH_THREADS)
CONFIGURE_ARGS+= --with-threads
.else
CONFIGURE_ARGS+= --without-threads
.endif
.if defined(WITHOUT_SCHEMA)
CONFIGURE_ARGS+= --without-schemas
.endif
.if defined(WITH_MEM_DEBUG)
CONFIGURE_ARGS+= --with-mem-debug
.endif
.if defined(WITH_XMLLINT_HIST)
CONFIGURE_ARGS+= --with-history
.endif
.if defined(WITH_THREAD_ALLOC)
CONFIGURE_ARGS+= --with-thread-alloc
.endif
post-patch:
.for f in catalog.c xmlcatalog.c xmllint.c doc/xmllint.1
@${REINPLACE_CMD} -e \
's|/etc/xml/catalog|${LOCALBASE}/share/xml/catalog|g; \
s|/etc/sgml/catalog|${LOCALBASE}/share/sgml/catalog|g' ${WRKSRC}/${f}
.endfor
.include <bsd.port.mk>