- Trim Makefile header to standard two lines
- Convert USE_GMAKE, drop no-op MANCOMPRESSED=no - Do no install examples as PORTDOCS, convert to OptionsNG - Fix the build with modern C++ compilers and Tcl 8.6 Reported by: pointyhat-west
This commit is contained in:
parent
81f8729582
commit
302886747c
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=323879
@ -1,38 +1,50 @@
|
||||
# New ports collection makefile for: ns-2
|
||||
# Date created: 26 April 1999
|
||||
# Whom: obonilla
|
||||
#
|
||||
# Created by: Oscar Bonilla <obonilla@fisicc-ufm.edu>
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= ns
|
||||
PORTVERSION= 2.35
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= SF/${PORTNAME}nam/${PORTNAME}-2/${PORTVERSION}
|
||||
DISTFILES= ${PORTNAME}-src-${PORTVERSION}.tar.gz
|
||||
DISTNAME= ${PORTNAME}-src-${PORTVERSION}
|
||||
|
||||
MAINTAINER= masaki@club.kyutech.ac.jp
|
||||
COMMENT= Discrete event simulator for networking research
|
||||
|
||||
BUILD_DEPENDS= ${LOCALBASE}/lib/libtclcl.a:${PORTSDIR}/devel/tclcl
|
||||
|
||||
MAN1= ns.1
|
||||
MANCOMPRESSED= no
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --with-tcl-ver=${TCL_VER} --with-tk-ver=${TK_VER} --x-libraries=${LOCALBASE}/lib --x-includes=${LOCALBASE}/include
|
||||
USE_GMAKE= yes
|
||||
USES= gmake
|
||||
USE_TK= 85+
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --with-tcl-ver=${TCL_VER} \
|
||||
--with-tk-ver=${TK_VER} \
|
||||
--x-libraries=${LOCALBASE}/lib \
|
||||
--x-includes=${LOCALBASE}/include
|
||||
|
||||
WRKSRC= ${WRKDIR}/ns-${PORTVERSION}
|
||||
|
||||
MAN1= ns.1
|
||||
|
||||
OPTIONS_DEFINE= EXAMPLES
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e "s,%%LOCALBASE%%,${LOCALBASE},g" \
|
||||
${WRKSRC}/configure
|
||||
@${REINPLACE_CMD} -e "s,Tcl_GetHashKey,static_cast<char*>&," \
|
||||
${WRKSRC}/pushback/ident-tree.h \
|
||||
${WRKSRC}/webcache/pagepool.cc
|
||||
@${REINPLACE_CMD} -e "/^CFLAGS =/s,$$, -DUSE_INTERP_RESULT," \
|
||||
${WRKSRC}/indep-utils/webtrace-conv/dec/Makefile.in \
|
||||
${WRKSRC}/indep-utils/webtrace-conv/epa/Makefile.in \
|
||||
${WRKSRC}/indep-utils/webtrace-conv/nlanr/Makefile.in \
|
||||
${WRKSRC}/indep-utils/webtrace-conv/ucb/Makefile.in
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/ns ${PREFIX}/bin
|
||||
${INSTALL_MAN} ${WRKSRC}/ns.1 ${MANPREFIX}/man/man1
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${EXAMPLESDIR}
|
||||
.if ${PORT_OPTIONS:MEXAMPLES}
|
||||
@${MKDIR} ${EXAMPLESDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/tcl/ex/*.tcl ${EXAMPLESDIR}
|
||||
.endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user