blob: b420d700556482b7ea97ace7010be718a52c229a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# New ports collection makefile for: nam
# Date created: 26 April 1999
# Whom: obonilla
#
# $FreeBSD$
#
PORTNAME= nam
PORTVERSION= 1.0a9
CATEGORIES= net
MASTER_SITES= http://www.isi.edu/nsnam/dist/
DISTFILES= nam-src-${PORTVERSION}.tar.gz
MAINTAINER= obonilla@fisicc-ufm.edu
BUILD_DEPENDS= ${LOCALBASE}/lib/libtclcl.a:${PORTSDIR}/devel/tclcl
MAN1= nam.1
MANCOMPRESSED= no
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-tcl-ver=8.2 --with-tk-ver=8.2
ALL_TARGET=
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/nam ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/nam.1 ${PREFIX}/man/man1
${MKDIR} ${PREFIX}/share/examples/nam
${INSTALL_DATA} ${WRKSRC}/ex/* ${PREFIX}/share/examples/nam
.include <bsd.port.mk>
|