diff options
author | Bruce M Simpson <bms@FreeBSD.org> | 2004-06-25 00:26:55 +0000 |
---|---|---|
committer | Bruce M Simpson <bms@FreeBSD.org> | 2004-06-25 00:26:55 +0000 |
commit | f43a5af83d992ad4813936dc3a2017323cd1ffb2 (patch) | |
tree | d0fe7fa9f26d2703b7e6835e7415d3b81e583bb9 /net/ntraceroute/Makefile | |
parent | 500fe7a721f70ce2f33227a30abeb41b22c1b0db (diff) | |
download | ports-f43a5af83d992ad4813936dc3a2017323cd1ffb2.tar.gz ports-f43a5af83d992ad4813936dc3a2017323cd1ffb2.zip |
Notes
Diffstat (limited to 'net/ntraceroute/Makefile')
-rw-r--r-- | net/ntraceroute/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/net/ntraceroute/Makefile b/net/ntraceroute/Makefile new file mode 100644 index 000000000000..d91ccda1ab52 --- /dev/null +++ b/net/ntraceroute/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: ntraceroute +# Date created: 25 June 2004 +# Whom: Bruce M Simpson <bms@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= ntraceroute +PORTVERSION= 6.3.9 +CATEGORIES= net +MASTER_SITES= ftp://ftp.login.com/pub/software/traceroute/beta/ +DISTFILES= traceroute_639.c +DIST_SUBDIR= ${PORTNAME} + +MAINTAINER= bms@FreeBSD.org +COMMENT= Ubiquitous network routing analysis tool + +WRKSRC= ${WRKDIR} + +NOMAN= defined + +do-extract: + @${RM} -rf ${WRKDIR} + @${MKDIR} ${WRKDIR} + +do-build: + ${CC} -o ${WRKSRC}/${PORTNAME} -lm \ + ${DISTDIR}/${DIST_SUBDIR}/${DISTFILES} + +do-install: + ${INSTALL} ${COPY} ${STRIP} -o root -g wheel -m 04555 \ + ${WRKSRC}/${PORTNAME} ${PREFIX}/sbin + +.include <bsd.port.mk> |