5afaf62586
upgrade to 2.4.3. One more executable is installed into bin/ now.
49 lines
1.3 KiB
Makefile
49 lines
1.3 KiB
Makefile
# New ports collection makefile for: libxml2
|
|
# Date created: 28 September 1998
|
|
# Whom: Yukihiro Nakai <Nakai@technologist.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libxml2
|
|
PORTVERSION= 2.4.3
|
|
CATEGORIES= textproc gnome
|
|
MASTER_SITES= ${MASTER_SITE_GNOME}
|
|
MASTER_SITE_SUBDIR= stable/sources/libxml
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
|
|
BUILD_DEPENDS= pkg-config:${PORTSDIR}/devel/pkgconfig
|
|
LIB_DEPENDS= giconv.2:${PORTSDIR}/converters/libiconv
|
|
RUN_DEPENDS= pkg-config:${PORTSDIR}/devel/pkgconfig
|
|
|
|
USE_LIBTOOL= yes
|
|
INSTALLS_SHLIB= yes
|
|
MAKE_FLAGS+= LIBTOOL="${LIBTOOL}" -ELIBTOOL
|
|
.if defined(MAKE_JOBS)
|
|
MAKE_FLAGS+= AM_MAKEFLAGS=-j${MAKE_JOBS}
|
|
.endif
|
|
|
|
CONFIGURE_ARGS= --with-iconv \
|
|
--with-html-dir=${PREFIX}/share/doc
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LIBS="-L${LOCALBASE}/lib"
|
|
|
|
MAN1= xml2-config.1 xmllint.1
|
|
MAN4= libxml.4
|
|
|
|
pre-patch:
|
|
@find ${WRKSRC} -name Makefile.in | xargs ${PERL} -pi -e \
|
|
's|\$\(libdir\)/pkgconfig|\$\(prefix\)/libdata/pkgconfig|g'
|
|
|
|
post-patch:
|
|
@${PERL} -pi -e 's/([^g])iconv.h/\1giconv.h/g;' \
|
|
-e 's/-liconv/-lgiconv/g' ${WRKSRC}/${CONFIGURE_SCRIPT} \
|
|
${WRKSRC}/include/libxml/encoding.h
|
|
|
|
# If someone knows a better way to avoid this from even creeping into
|
|
# lib/ -- please, tell me... $Author$
|
|
post-install:
|
|
${RM} ${PREFIX}/lib/libxml2.la
|
|
|
|
.include <bsd.port.mk>
|