aboutsummaryrefslogtreecommitdiffstats
path: root/irc/garnaxfs/files
diff options
context:
space:
mode:
authorkrion <krion@FreeBSD.org>2004-06-21 00:48:02 +0800
committerkrion <krion@FreeBSD.org>2004-06-21 00:48:02 +0800
commit8d64f086dda709c1b142aa33c0bbace2a8377598 (patch)
tree20fb1e038d266e4d274e5d45a5c747f94dd7e4f4 /irc/garnaxfs/files
parent919ba8256ca63da65173d519f84a4105f0377017 (diff)
downloadfreebsd-ports-gnome-8d64f086dda709c1b142aa33c0bbace2a8377598.tar.gz
freebsd-ports-gnome-8d64f086dda709c1b142aa33c0bbace2a8377598.tar.zst
freebsd-ports-gnome-8d64f086dda709c1b142aa33c0bbace2a8377598.zip
Add garnaxfs 1.1.0,
Garnaxbot (File Server) is a file serving bot for IRC (commonly referred to as a DCC bot). It uses the DCC chat/send features of IRC to send files to other users. Garnaxbot will connect to an IRC server and allow people to request files via DCC chat. PR: ports/68101 Submitted by: Travis Poppe <tlp@liquidx.org>
Diffstat (limited to 'irc/garnaxfs/files')
-rw-r--r--irc/garnaxfs/files/patch-Makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/irc/garnaxfs/files/patch-Makefile b/irc/garnaxfs/files/patch-Makefile
new file mode 100644
index 000000000000..d001a7eb8176
--- /dev/null
+++ b/irc/garnaxfs/files/patch-Makefile
@@ -0,0 +1,29 @@
+
+$FreeBSD$
+
+--- Makefile.orig Sun Jun 20 18:38:31 2004
++++ Makefile Sun Jun 20 18:39:44 2004
+@@ -2,11 +2,12 @@
+ OBJDIR = ./work/
+ BUILD = garnax-f1.1
+ TARFILE = $(BUILD).tar
+-CC = gcc
++CC ?= gcc
+
+ # Note: -lpthread may be needed instead of -pthread
+ #CFLAGS = -Wall -pedantic -ansi -pthread -g
+-CFLAGS = -Wall -pthread -g
++CFLAGS += -Wall -pthread -g
++LIBS= ${PTHREAD_LIBS}
+
+ # Arguments for SunOS
+ # CC = cc
+@@ -19,7 +20,7 @@
+ install : garnax
+
+ garnax : work $(objects)
+- $(CC) $(CFLAGS) $(objects) -o garnax
++ $(CC) $(CFLAGS) $(LIBS) $(objects) -o garnax
+
+ work :
+ mkdir -p work