6f6fbe4bdf
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav
35 lines
741 B
Makefile
35 lines
741 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: libparsifal
|
|
# Date created: Jan 6, 2004
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libparsifal
|
|
PORTVERSION= 1.1.0
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://www.saunalahti.fi/~samiuus/toni/xmlproc/
|
|
|
|
MAINTAINER= yzlin@FreeBSD.org
|
|
COMMENT= Lightweight XML Parser
|
|
|
|
USE_AUTOTOOLS= libtool
|
|
USE_ICONV= yes
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
USE_LDCONFIG= yes
|
|
|
|
PLIST_SUB= VERSION=${PORTVERSION}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|-O3|${CFLAGS}|g' ${WRKSRC}/configure
|
|
|
|
post-install:
|
|
.ifndef(NOPORTDOCS)
|
|
@${ECHO_MSG} "===> Installing documentation for ${PKGNAME}"
|
|
@(cd ${WRKSRC}/doc/ && ${COPYTREE_SHARE} . ${DOCSDIR})
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|