diff options
Diffstat (limited to 'textproc/py-libxml2/Makefile')
-rw-r--r-- | textproc/py-libxml2/Makefile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/textproc/py-libxml2/Makefile b/textproc/py-libxml2/Makefile new file mode 100644 index 000000000..cd4136816 --- /dev/null +++ b/textproc/py-libxml2/Makefile @@ -0,0 +1,37 @@ +# New ports collection makefile for: py-libxml2 +# Date created: 30 Jun 2004 +# Whom: Alexander Nedotsukov <bland@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTREVISION= 0 +CATEGORIES= textproc gnome python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= gnome@FreeBSD.org +COMMENT= Python interface for XML parser library for GNOME + +MASTERDIR= ${.CURDIR}/../libxml2 +BUILD_WRKSRC= ${WRKSRC}/python +INSTALL_WRKSRC= ${BUILD_WRKSRC} +DESCR= ${.CURDIR}/pkg-descr +PLIST= ${.CURDIR}/pkg-plist + +USE_GNOME= gnomehack libxml2 +USE_PYTHON= yes +CPPFLAGS+= `${PYTHON_VERSION}-config --cflags` +LDFLAGS+= `${PYTHON_VERSION}-config --libs` +CONFIGURE_ARGS= --with-iconv=${LOCALBASE} \ + --with-html-dir=${PREFIX}/share/doc \ + --with-html-subdir=${PORTNAME} \ + --with-python=${PYTHON_CMD} + +DOCSDIR= ${PREFIX}/share/doc/py-libxml2 +EXAMPLESDIR= ${PREFIX}/share/examples/py-libxml2 + +post-install: + @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py -l ${PYTHON_SITELIBDIR} + @${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py -l ${PYTHON_SITELIBDIR} + +.include "${MASTERDIR}/Makefile" |