freebsd-ports/textproc/webcpp/Makefile
Volker Stolz 52c365bf21 Set USE_GCC only for 4.x FreeBSD with < 3.2 GCC
PR:		ports/72447
Submitted by:	Toni Viemero
Approved by:	maintainer timeout
2004-11-18 17:18:09 +00:00

45 lines
1 KiB
Makefile

# New ports collection makefile for: webcpp
# Date created: 12 May 2003
# Whom: Nosov Artem <chip-set@mail.ru>
#
# $FreeBSD$
#
PORTNAME= webcpp
PORTVERSION= 0.8.4
CATEGORIES= textproc
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
MAINTAINER= chip-set@mail.ru
COMMENT= Convert your source code to syntax highlighted HTML
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 500000
USE_GCC= 3.2
.endif
GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib"
USE_REINPLACE= yes
.if defined(WANT_FINAL)
CONFIGURE_ARGS+= --enable-final
USE_GMAKE= yes
.endif
pre-patch:
${FIND} ${WRKSRC} -name '*.h' | ${XARGS} ${REINPLACE_CMD} \
's|IO->close()|if(IO) IO->close()|g'
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for file in AUTHORS COPYING README TODO docs.html
@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.post.mk>