summaryrefslogtreecommitdiff
path: root/net/tcptraceroute-devel/files/patch-Makefile
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2002-06-21 12:06:06 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2002-06-21 12:06:06 +0000
commitec5d299eb61469aea4a1168bf8c059f6fb1c5556 (patch)
treeb40cc4ec2810b17b1e4c92a628c0219d556f1c02 /net/tcptraceroute-devel/files/patch-Makefile
parentAdd pd-0.35.23 (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_6_0'.release/4.6.0
Notes
Notes: svn path=/head/; revision=61671 svn path=/tags/RELEASE_4_6_0/; revision=61672; tag=release/4.6.0
Diffstat (limited to 'net/tcptraceroute-devel/files/patch-Makefile')
-rw-r--r--net/tcptraceroute-devel/files/patch-Makefile36
1 files changed, 0 insertions, 36 deletions
diff --git a/net/tcptraceroute-devel/files/patch-Makefile b/net/tcptraceroute-devel/files/patch-Makefile
deleted file mode 100644
index 173962cb0853..000000000000
--- a/net/tcptraceroute-devel/files/patch-Makefile
+++ /dev/null
@@ -1,36 +0,0 @@
---- Makefile.orig Wed Aug 1 07:52:40 2001
-+++ Makefile Sun Mar 24 10:36:40 2002
-@@ -1,20 +1,27 @@
- # tcptraceroute -- A traceroute implementation using TCP packets
- # Copyright (c) 2001, Michael C. Toren <mct@toren.net>
-
--CC = gcc
--CFLAGS = -O2 -Wall
--DESTDIR=/usr/local/bin
-+CC ?= cc
-+CFLAGS ?= -O2 -Wall
-+LNETINC= -I/usr/local/include
-+LNETLIB= -L/usr/local/lib
-+
-+BINDIR= ${PREFIX}/bin
-+MANDIR= ${PREFIX}/man
-+
-+all: tcptraceroute
-
- tcptraceroute: tcptraceroute.c
-- $(CC) $(CFLAGS) `libnet-config --defines` \
-+ $(CC) $(CFLAGS) `libnet-config --defines` $(LNETINC) \
- -o tcptraceroute tcptraceroute.c \
-- `libnet-config --libs` -lpcap
-+ $(LNETLIB) `libnet-config --libs` -lpcap
-
- static:
- $(MAKE) tcptraceroute CFLAGS="$(CFLAGS) -static"
-
- install: tcptraceroute
-- install -D tcptraceroute $(DESTDIR)/tcptraceroute
-+ install -c -s tcptraceroute $(BINDIR)/tcptraceroute
-+ install -c -m 444 tcptraceroute.8 $(MANDIR)/man8/tcptraceroute.8
-
- distrib: clean changelog man
-