mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
30bbf50b46
While I'm here, fix the master site, and add portdocs. Also, gcc 2.95 is no longer a requirement. Requested by: Young Hyun <youngh@caida.org>
42 lines
1.0 KiB
Makefile
42 lines
1.0 KiB
Makefile
# New ports collection makefile for: arts++
|
|
# Date created: Di 7 Nov 2000 19:48:50 CET
|
|
# Whom: Andreas Klemm <andreas@klemm.gtn.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= arts++
|
|
PORTVERSION= 1.1.a12
|
|
PORTEPOCH= 1
|
|
CATEGORIES= net-mgmt
|
|
MASTER_SITES= http://www.caida.org/tools/utilities/arts/download/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A network data storage and analysis library from CAIDA
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
CONFIGURE_ARGS= --enable-shared
|
|
USE_LDCONFIG= yes
|
|
|
|
MANL= artsportagg.l artsports.l artsprotos.l artsnets.l artsdump.l \
|
|
artsases.l artstoc.l artsagg.l artsprotoagg.l artsnetagg.l \
|
|
artsasagg.l artsportms.l artsportmagg.l artsintfms.l \
|
|
artsintfmagg.l artsnexthops.l artsnexthopagg.l artstos.l
|
|
|
|
post-configure:
|
|
@${REINPLACE_CMD} -E -e "s,( gcc\*),\1 | g++\*,g" ${WRKSRC}/libtool
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}/html
|
|
.for f in ChangeLog INSTALL WishList
|
|
@${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
.endfor
|
|
.for f in *.html
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/${f} ${DOCSDIR}/html
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|