mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
1726a11fb2
- Fix LIB_DEPENDS - Support CXXFLAGS properly PR: ports/85535 Submitted by: KATO Tsuguru <tkato432@yahoo.com>
44 lines
1.0 KiB
Makefile
44 lines
1.0 KiB
Makefile
# New ports collection makefile for: nam
|
|
# Date created: 26 April 1999
|
|
# Whom: obonilla
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= nam
|
|
PORTVERSION= 1.11
|
|
PORTREVISION= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.isi.edu/nsnam/dist/
|
|
DISTNAME= nam-src-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Animation tool for network simulation traces
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libtclcl.a:${PORTSDIR}/devel/tclcl
|
|
LIB_DEPENDS= otcl.1:${PORTSDIR}/lang/otcl
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
USE_REINPLACE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-tcl-ver=8.4 --with-tk-ver=8.4
|
|
MAKE_ARGS= CCOPT="${CXXFLAGS}"
|
|
ALL_TARGET= ${PORTNAME}
|
|
|
|
MAN1= nam.1
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|const = NULL|const = 0|g' ${WRKSRC}/agent.h
|
|
@${REINPLACE_CMD} -e 's|friend Queue|friend class Queue|g' ${WRKSRC}/queue.h
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/nam ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/nam.1 ${MANPREFIX}/man/man1
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/ex/* ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|