2e337aebfc
PR: ports/177480 Submitted by: scf@ Pointyhat for: kwm
88 lines
2.3 KiB
Makefile
88 lines
2.3 KiB
Makefile
# Created by: Yukihiro Nakai <Nakai@technologist.com>
|
|
# $FreeBSD$
|
|
# $MCom: ports/textproc/libxml2/Makefile,v 1.15 2012/11/26 19:55:23 kwm Exp $
|
|
|
|
PORTNAME= libxml2
|
|
PORTVERSION= 2.8.0
|
|
PORTREVISION?= 1
|
|
CATEGORIES?= textproc gnome
|
|
MASTER_SITES= ftp://xmlsoft.org/libxml2/ \
|
|
ftp://gd.tuwien.ac.at/pub/libxml/
|
|
DIST_SUBDIR= gnome2
|
|
|
|
MAINTAINER?= gnome@FreeBSD.org
|
|
COMMENT?= XML parser library for GNOME
|
|
|
|
.if !defined(REFERENCE_PORT)
|
|
|
|
USE_CSTD= gnu89
|
|
USE_GMAKE= yes
|
|
MAKE_JOBS_SAFE= yes
|
|
USE_ICONV= yes
|
|
GNU_CONFIGURE= yes
|
|
USES= pathfix
|
|
USE_GNOME?= pkgconfig
|
|
USE_LDCONFIG= yes
|
|
CONFIGURE_ARGS?=--with-iconv=${LOCALBASE} \
|
|
--with-html-dir=${PREFIX}/share/doc \
|
|
--with-html-subdir=${PORTNAME} \
|
|
--without-python
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
.if !defined(MASTERDIR)
|
|
MAN1= xml2-config.1 xmllint.1 xmlcatalog.1
|
|
MAN3= libxml.3
|
|
|
|
OPTIONS_DEFINE= SCHEMA THREADS MEM_DEBUG XMLLINT_HIST THREAD_ALLOC
|
|
OPTIONS_DEFAULT=SCHEMA THREADS
|
|
SCHEMA_DESC= XML schema support
|
|
THREADS_DESC= Threads support
|
|
MEM_DEBUG_DESC= Memory debugging (DEVELOPERS ONLY!)
|
|
XMLLINT_HIST_DESC= History for xmllint
|
|
THREAD_ALLOC_DESC= Per-thread memory (DEVELOPERS ONLY!)
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ! ${PORT_OPTIONS:MSCHEMA}
|
|
CONFIGURE_ARGS+= --without-schemas
|
|
.endif
|
|
|
|
.if ! ${PORT_OPTIONS:MTHREADS}
|
|
CONFIGURE_ARGS+= --without-threads
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MMEM_DEBUG}
|
|
CONFIGURE_ARGS+= --with-mem-debug
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MXMLLINT_HIST}
|
|
CONFIGURE_ARGS+= --with-history
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MTHREAD_ALLOC}
|
|
CONFIGURE_ARGS+= --with-thread-alloc
|
|
.endif
|
|
.endif # !defined(MASTERDIR)
|
|
|
|
post-patch:
|
|
.for d in . doc doc/devhelp doc/examples
|
|
@${REINPLACE_CMD} -e '/^install-data-am:/ s|install-data-local||' \
|
|
${WRKSRC}/${d}/Makefile.in
|
|
.endfor
|
|
.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
|
|
# manual patch because WITH_FBSD10_FIX break the python bindings
|
|
${FIND} ${WRKSRC} -type f -name configure \
|
|
-exec ${SH} -c " \
|
|
mtime=\$$(date -r \$$(stat -f '%m' \$$0) '+%Y%m%d%H%M.%S'); \
|
|
${SED} -i '.batman' -e 's|freebsd1\*)|freebsd1.\*)|g' \
|
|
-e 's|freebsd\[123\]\*)|freebsd[123].*)|g' \$$0; \
|
|
touch -mt \$$mtime \$$0" {} \; || /usr/bin/true
|
|
|
|
.include <bsd.port.mk>
|
|
|
|
.endif
|