summaryrefslogtreecommitdiffstats
path: root/textproc/libxml2/Makefile
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2003-09-19 03:12:45 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2003-09-19 03:12:45 +0800
commit768900dddc2adb5bd0af6b3e0d59654dc71d2e9b (patch)
treeb6e12b7f558af77dfbd52ab89a84489c127fc85b /textproc/libxml2/Makefile
parent2fba1a2d8eb914d118a18389a4efb30f38717605 (diff)
downloadmarcuscom-ports-768900dddc2adb5bd0af6b3e0d59654dc71d2e9b.tar
marcuscom-ports-768900dddc2adb5bd0af6b3e0d59654dc71d2e9b.tar.gz
marcuscom-ports-768900dddc2adb5bd0af6b3e0d59654dc71d2e9b.tar.bz2
marcuscom-ports-768900dddc2adb5bd0af6b3e0d59654dc71d2e9b.tar.lz
marcuscom-ports-768900dddc2adb5bd0af6b3e0d59654dc71d2e9b.tar.xz
marcuscom-ports-768900dddc2adb5bd0af6b3e0d59654dc71d2e9b.tar.zst
marcuscom-ports-768900dddc2adb5bd0af6b3e0d59654dc71d2e9b.zip
Remove these ports now that they have been merged into the FreeBSD ports tree.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@1225 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'textproc/libxml2/Makefile')
-rw-r--r--textproc/libxml2/Makefile82
1 files changed, 0 insertions, 82 deletions
diff --git a/textproc/libxml2/Makefile b/textproc/libxml2/Makefile
deleted file mode 100644
index bded43452..000000000
--- a/textproc/libxml2/Makefile
+++ /dev/null
@@ -1,82 +0,0 @@
-# New ports collection makefile for: libxml2
-# Date created: 28 September 1998
-# Whom: Yukihiro Nakai <Nakai@technologist.com>
-#
-# $FreeBSD$
-#
-
-PORTNAME= libxml2
-PORTVERSION= 2.5.11
-CATEGORIES= textproc gnome
-MASTER_SITES= ${MASTER_SITE_GNOME}
-MASTER_SITE_SUBDIR= sources/${PORTNAME}/2.5
-DIST_SUBDIR= gnome2
-
-MAINTAINER= gnome@FreeBSD.org
-COMMENT= Xml parser library for GNOME
-
-LIB_DEPENDS= iconv.3:${PORTSDIR}/converters/libiconv
-
-USE_BZIP2= yes
-USE_GMAKE= yes
-USE_LIBTOOL= 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
-
-.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
-
-.if defined(WITH_THREADS)
-CONFIGURE_ARGS+= --with-threads
-.else
-CONFIGURE_ARGS+= --without-threads
-.endif
-
-.if defined(WITH_SCHEMA)
-CONFIGURE_ARGS+= --with-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 tunables:"
- @${ECHO_MSG} ""
- @${ECHO_MSG} " WITHOUT_PYTHON=yes Turns off Python support"
- @${ECHO_MSG} " WITH_THREADS=yes Turns on pthread support"
- @${ECHO_MSG} " WITH_SCHEMA=yes Turns on XML Schema support"
- @${ECHO_MSG} " WITH_MEM_DEBUG=yes Turns on memory debugging (DEVELOPERS ONLY!)"
- @${ECHO_MSG} " WITH_XMLLINT_HIST=yes Turns on history for xmllint"
- @${ECHO_MSG} " WITH_THREAD_ALLOC=yes Turns on per-thread memory (DEVELOPERS ONLY!)"
- @${ECHO_MSG} ""
-
-post-patch:
- @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
- ${WRKSRC}/catalog.c ${WRKSRC}/xmlcatalog.c
-
-.include <bsd.port.mk>