diff options
author | Oliver Eikemeier <eik@FreeBSD.org> | 2004-06-24 22:46:15 +0000 |
---|---|---|
committer | Oliver Eikemeier <eik@FreeBSD.org> | 2004-06-24 22:46:15 +0000 |
commit | 0eb80c6bc930fc892ba41646a540563e1ad54d9c (patch) | |
tree | 47a7564f8abe7780c9aa002e48e4c22e3d628c07 /net/plugdaemon/files/patch-Makefile | |
parent | Depend on Mozilla since certain Firefox ports are broken after the recent (diff) |
Add net/plugdaemon, a TCP/IP redirecting proxy
PR: 68290
Submitted by: David Thiel <lx@redundancy.redundancy.org>
Notes
Notes:
svn path=/head/; revision=112174
Diffstat (limited to 'net/plugdaemon/files/patch-Makefile')
-rw-r--r-- | net/plugdaemon/files/patch-Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/net/plugdaemon/files/patch-Makefile b/net/plugdaemon/files/patch-Makefile new file mode 100644 index 000000000000..4eb74b7fa1d3 --- /dev/null +++ b/net/plugdaemon/files/patch-Makefile @@ -0,0 +1,22 @@ +--- Makefile.orig Thu Jun 24 12:46:54 2004 ++++ Makefile Thu Jun 24 12:49:07 2004 +@@ -10,8 +10,8 @@ + #CFLAGS=-O2 -Wall -s -static + #LFLAGS=-s -static + # gcc +-CC=cc +-CFLAGS=-O -g -Wall ++CC?=cc ++CFLAGS+=-O -g -Wall + LFLAGS= + # cc + #CC=cc +@@ -41,6 +41,6 @@ + tar: $T.tgz + + install: plug +- install -C -m 0755 plug /usr/local/sbin +- install -C -m 0644 plug.1 /usr/local/man/man1 ++ install -C -m 0755 plug ${PREFIX}/sbin ++ install -C -m 0644 plug.1 ${PREFIX}/man/man1 + |