diff options
author | will <will@FreeBSD.org> | 2000-08-11 12:24:04 +0000 |
---|---|---|
committer | will <will@FreeBSD.org> | 2000-08-11 12:24:04 +0000 |
commit | 4ac544753e197bbb90e096abd9ad07b0076eae36 (patch) | |
tree | 24a505cf4907859e50101d6d4fbeee2c622d7ecf /comms/qico/files | |
parent | d833305e38e2e1e18ed93d1415619f48b54309b2 (diff) | |
download | FreeBSD-ports-4ac544753e197bbb90e096abd9ad07b0076eae36.zip FreeBSD-ports-4ac544753e197bbb90e096abd9ad07b0076eae36.tar.gz |
Add qico 0.45pl3.1, a fidonet compatible mailer. I've put a copy on my
local-distfiles due to historic saturation on www.ruxy.org.ru's link.
PR: 16989
Submitted by: Denis Shaposhnikov <dsh@vlink.ru>
Diffstat (limited to 'comms/qico/files')
-rw-r--r-- | comms/qico/files/patch-aa | 51 | ||||
-rw-r--r-- | comms/qico/files/patch-ab | 11 | ||||
-rw-r--r-- | comms/qico/files/patch-ac | 20 |
3 files changed, 82 insertions, 0 deletions
diff --git a/comms/qico/files/patch-aa b/comms/qico/files/patch-aa new file mode 100644 index 0000000..cf24599 --- /dev/null +++ b/comms/qico/files/patch-aa @@ -0,0 +1,51 @@ +--- CONFIG.orig Sat Mar 18 10:12:29 2000 ++++ CONFIG Sat Mar 18 11:43:16 2000 +@@ -6,7 +6,7 @@ + BINDIR = /usr/local/bin + + # default config (can be overridden with -I) +-CONF = /etc/ftn/qico.conf ++CONF = ${PREFIX}/etc/qico.conf + # non-binary file permissions + PERM = 00600 + +@@ -20,10 +20,9 @@ + + # qcc features (for building this you must have ncurses-4.2+) + MORDA = 1 +-#DEFS += -DFREE_BSD + + # lock dir +-DEFS += -DLOCK_DIR=\"/var/lock\" ++DEFS += -DLOCK_DIR=\"/var/spool/lock\" + + # communication socket + DEFS += -DQIPC_SOCKET=\"/tmp/qlog\" +@@ -52,19 +51,19 @@ + ### OS depended settings ##################################################### + ############################################################################## + +-SHELL = /bin/sh +-CC = gcc +-AWK = awk +-INSTALL = install +-LEX = lex ++SHELL ?= /bin/sh ++CC ?= gcc ++AWK ?= awk ++INSTALL?= install ++LEX ?= lex + #YACC = bison -y +-YACC = yacc ++YACC ?= yacc + + # required for linux glibc2 systems + #LIBS=-lresolv + +-# required for FreeBSD, if define -DFREE_BSD +-#LIBS=-lutil ++# required for FreeBSD ++LIBS=-lutil + + # + # $Id: CONFIG,v 1.7 2000/01/28 15:53:38 aaz Exp $ diff --git a/comms/qico/files/patch-ab b/comms/qico/files/patch-ab new file mode 100644 index 0000000..7f8d0ec --- /dev/null +++ b/comms/qico/files/patch-ab @@ -0,0 +1,11 @@ +--- Makefile.orig Sun Feb 6 10:47:47 2000 ++++ Makefile Sun Feb 6 11:01:10 2000 +@@ -5,8 +5,6 @@ + + DIRS = src + +-CC = gcc +-AWK = awk + INSTALL = install + + DIST = qico-$(VERSION).tar.gz diff --git a/comms/qico/files/patch-ac b/comms/qico/files/patch-ac new file mode 100644 index 0000000..ebf59a0 --- /dev/null +++ b/comms/qico/files/patch-ac @@ -0,0 +1,20 @@ +--- src/Makefile.orig Sat Mar 18 10:12:29 2000 ++++ src/Makefile Sat Mar 18 12:02:56 2000 +@@ -3,7 +3,7 @@ + # + include ../CONFIG + +-STRIP=0 ++STRIP=1 + #DEFS += -DEMSI_LOG # log emsi in /tmp/emsi.log + #DEFS += -DH_DEBUG # Hydra + #DEFS += -DZ_DEBUG # ZModem +@@ -14,7 +14,7 @@ + #DEFS += -DY_DEBUG #-DYYERROR_VERBOSE=1 -DYYDEBUG=100 + + DEFS += -DSHELL=\"$(SHELL)\" -DCONFIG=\"$(CONF)\" +-CFLAGS = $(DEFS) -Wall -m486 -O2 -D_GNU_SOURCE=1 -D_BSD_SOURCE=1 ++CFLAGS += $(DEFS) + ifeq (1,$(STRIP)) + IFLAGS = -s + else |