blob: 4acae4cbc0626bc673abb47288ff18912fe29823 (
plain) (
blame)
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
32
33
34
35
36
37
38
|
# New ports collection makefile for: spoofer
# Date created: 6 February 2006
# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= spoofer
PORTVERSION= 0.4
CATEGORIES= net
MASTER_SITES= http://spoofer.csail.mit.edu/
MAINTAINER= infofarmer@FreeBSD.org
COMMENT= ANA Spoofer Project testing software
PLIST_FILES= bin/spoofer
PORTDOCS= README CHANGES
SRC= spoofer.c util.c trace.c
CFLAGS+= -D_FBSD
do-build:
.for f in ${SRC}
${CC} ${CFLAGS} -c ${WRKSRC}/${f} -o ${WRKSRC}/${f:C/\.c$/.o/}
.endfor
${CC} ${SRC:C/(.*)\.c$/${WRKSRC}\/\1.o/} -o ${WRKSRC}/${PORTNAME}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for f in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|