aboutsummaryrefslogtreecommitdiff
path: root/textproc/libxml2/Makefile
blob: 1ba7123b85b111bf8b1a74c8a7412f94e4791394 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# New ports collection makefile for:	libxml2
# Date created:				28 September 1998
# Whom:					Yukihiro Nakai <Nakai@technologist.com>
#
# $FreeBSD$
#

PORTNAME=	libxml2
PORTVERSION=	2.6.15
PORTREVISION=	1
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
USE_LIBTOOL_VER=15
USE_GNOME?=	gnomehack gnometarget pkgconfig
INSTALLS_SHLIB=	yes
USE_REINPLACE=	yes
CONFIGURE_ARGS?= --with-iconv=${LOCALBASE} \
		--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
MAN3=		libxml.3

OPTIONS=	THREADS "Enable pthread support (MAY BREAK OTHER PORTS!)" 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
.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

post-patch:
	@${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
		${WRKSRC}/catalog.c ${WRKSRC}/xmlcatalog.c

.include <bsd.port.post.mk>