mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
6d030d8b11
deprecating in because GNU/Linux distros still usually provide it, and people might expect to find it in FreeBSD as well - Improve on COMMENT a bit while I'm here - Relinquish to the pool as I haven't used it for years
34 lines
689 B
Makefile
34 lines
689 B
Makefile
# New ports collection makefile for: NetSED
|
|
# Date created: Jan 9 2000
|
|
# Whom: Roman Shterenzon <roman@xpert.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= netsed
|
|
PORTVERSION= 0.01
|
|
PORTREVISION= 1
|
|
CATEGORIES= net security
|
|
MASTER_SITES= # no original distfile site available
|
|
DISTNAME= ${PORTNAME}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Alters the contents of network packets in real time
|
|
|
|
MAKE_ARGS= CFLAGS="${CFLAGS}"
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
PORTDOCS= README
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|