d0f82038bc
* Use OPTIONS where it's feasible * Use USE_ICONV
90 lines
2.1 KiB
Makefile
90 lines
2.1 KiB
Makefile
# New ports collection makefile for: libxml2
|
|
# Date created: 28 September 1998
|
|
# Whom: Yukihiro Nakai <Nakai@technologist.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libxml2
|
|
PORTVERSION= 2.6.7
|
|
CATEGORIES= textproc gnome
|
|
MASTER_SITES= ${MASTER_SITE_GNOME}
|
|
MASTER_SITE_SUBDIR= sources/${PORTNAME}/2.6
|
|
DIST_SUBDIR= gnome2
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Xml parser library for GNOME
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_ICONV= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_GNOME= gnomehack gnometarget pkgconfig
|
|
INSTALLS_SHLIB= yes
|
|
USE_REINPLACE= yes
|
|
CONFIGURE_ARGS= --with-iconv=${LOCALBASE} \
|
|
--with-html-dir=${PREFIX}/share/doc
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
MAN1= xml2-config.1 xmllint.1 xmlcatalog.1
|
|
MAN3= libxml.3
|
|
|
|
OPTIONS= THREADS "Enable pthread support" off \
|
|
SCHEMA "Enable XML schema support" on \
|
|
MEM_DEBUG "Enable memory debugging (DEVELOPERS ONLY!)" off \
|
|
XMLLINT_HIST "Enable history for xmllint" off \
|
|
THREAD_ALLOC "Enable per-thread memory (DEVELOPERS ONLY!)" off
|
|
|
|
.if !defined(WITHOUT_PYTHON)
|
|
USE_PYTHON= yes
|
|
PLIST_SUB+= PYTHON:=""
|
|
CONFIGURE_ARGS+= --with-python=${LOCALBASE}
|
|
.else
|
|
CONFIGURE_ARGS+= --without-python
|
|
PLIST_SUB+= PYTHON:="@comment "
|
|
PKGNAMESUFFIX= -nopython
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.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
|
|
|
|
pre-everything::
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} "libxml2 has the following additional tunables:"
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} " WITHOUT_PYTHON=yes Turns off Python support"
|
|
@${ECHO_MSG} ""
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
|
|
${WRKSRC}/catalog.c ${WRKSRC}/xmlcatalog.c
|
|
|
|
.if !defined(WITHOUT_PYTHON)
|
|
post-install:
|
|
@${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py -l ${PYTHON_SITELIBDIR}
|
|
@${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py -l ${PYTHON_SITELIBDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|