diff options
author | edwin <edwin@FreeBSD.org> | 2003-10-08 13:03:23 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-10-08 13:03:23 +0800 |
commit | 16beec40b4ad5c171281643c14f99dd1ad34aa4e (patch) | |
tree | af44d6d842e46c319c2bd98161bc1ff26509535c /net/nakenchat/files | |
parent | 59130ac9493c6a0401768eb0e8b7e82d0b85837b (diff) | |
download | freebsd-ports-graphics-16beec40b4ad5c171281643c14f99dd1ad34aa4e.tar.gz freebsd-ports-graphics-16beec40b4ad5c171281643c14f99dd1ad34aa4e.tar.zst freebsd-ports-graphics-16beec40b4ad5c171281643c14f99dd1ad34aa4e.zip |
adding Naken Chat to FreeBSD ports
Small chat server written in C. The compiled code is still
under 50k (at this time around 40k). The chat offers many
features including private channels, gagging, squelching,
banning, censoring, and much more. Users can connect to
the chat through many ways including telnet and a Java
applet through a webpage.
PR: ports/54583
Submitted by: Michael A. Kohn <mike@mikekohn.net> <mikekohn@everyday.com>
Diffstat (limited to 'net/nakenchat/files')
-rw-r--r-- | net/nakenchat/files/patch-Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/nakenchat/files/patch-Makefile b/net/nakenchat/files/patch-Makefile new file mode 100644 index 00000000000..55c122221cf --- /dev/null +++ b/net/nakenchat/files/patch-Makefile @@ -0,0 +1,11 @@ +--- Makefile.orig Tue Oct 7 22:01:27 2003 ++++ Makefile Tue Oct 7 22:01:41 2003 +@@ -1,6 +1,6 @@ + +-CC=gcc +-BASEDIR=/usr/local ++CC?=gcc ++BASEDIR=${PREFIX} + + all: + cd src && make |