summaryrefslogtreecommitdiff
path: root/chat/ii/Makefile
diff options
context:
space:
mode:
authornia <nia@pkgsrc.org>2020-05-16 18:14:20 +0000
committernia <nia@pkgsrc.org>2020-05-16 18:14:20 +0000
commit52134f3154c64b0fb94c8fa3ea372a73594aa0b2 (patch)
tree59199af362d92a3a50a77fa6e302c432cd0d4c84 /chat/ii/Makefile
parent5d9584648de04a2e669dd90096280fd7060c1b9f (diff)
downloadpkgsrc-52134f3154c64b0fb94c8fa3ea372a73594aa0b2.tar.gz
ii: Update to 1.8
1.8 (2018-02-04): - prevent nick collisions by only setting the nick after the server accepted it and print a message about change to server log. - remove query.sh. - add OpenBSD pledge(2) support. - fix QUIT message string. - raw IRC output to stdout. - add quit command (/q [string]). - write timestamp in outfile as UNIX timestamp (UTC+0). - server host (-s) doesn't default to irc.freenode and is now required. - add option (-u) to connect directly to a UNIX domain socket, this is useful for tunneling connections. - remove "in" file when leaving a channel (enabled commented code). - remove "in" files on exit. - use IRC_MAX (512), instead of PIPE_BUF (4096) on most systems. PIPE_BUF is guaranteed to be atleast 512 bytes for atomic operations. - Makefile: always be verbose. - use C99 and -D_DEFAULT_SOURCE - remove obsolete gethostbyname, use getaddrinfo. - IPV6 support. - timeout now uses separate exit statuscode 2. - cleanup: - use arg.h for command-line option parsing. - use sbase util functions (estrtol, eprintf). - use and import OpenBSD strlcpy(). - man page typos. - style: - linewrap to 79 characters. - coding style fixes. - non-roman numerals for LICENSE period.
Diffstat (limited to 'chat/ii/Makefile')
-rw-r--r--chat/ii/Makefile13
1 files changed, 4 insertions, 9 deletions
diff --git a/chat/ii/Makefile b/chat/ii/Makefile
index 044337c64d5..622fcaf254d 100644
--- a/chat/ii/Makefile
+++ b/chat/ii/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.3 2017/09/08 06:16:15 wiz Exp $
+# $NetBSD: Makefile,v 1.4 2020/05/16 18:14:20 nia Exp $
-DISTNAME= ii-1.7
+DISTNAME= ii-1.8
CATEGORIES= chat
MASTER_SITES= https://dl.suckless.org/tools/
@@ -9,13 +9,8 @@ HOMEPAGE= https://dl.suckless.org/tools/
COMMENT= Minimalist FIFO and filesystem-based IRC client
LICENSE= mit
-SUBST_CLASSES+= makefile
-SUBST_STAGE.makefile= pre-build
-SUBST_MESSAGE.makefile= Fixing config.mk
-SUBST_FILES.makefile= config.mk
-SUBST_SED.makefile= -e 's,/usr/local,${PREFIX},g'
-SUBST_SED.makefile+= -e 's,share/man,${PKGMANDIR},g'
-SUBST_SED.makefile+= -e 's,^LDFLAGS,\#LDFLAGS,g'
+MAKE_FLAGS+= PREFIX=${PREFIX}
+MAKE_FLAGS+= MANDIR=${PREFIX}/${PKGMANDIR}
LDFLAGS.SunOS+= -lsocket -lnsl