summaryrefslogtreecommitdiff
path: root/comms/gkermit
AgeCommit message (Collapse)AuthorFilesLines
2022-01-01comms/gkermit: update to 2.01rhialto3-23/+10
Version 1.00 : 25 December 1999 Version 2.00 : 26 May 2021 Version 2.00 is identical to 1.00 except that the source code has been tailored to build successfully on modern Unix platforms. November 14, 2021... G-Kermit 2.01 - a few more adjustments to our ever-changing Unix APIs. ................................. Wed May 26 08:47:48 2021: In the years following the initial rlease of this program, which was designed to be eternal, the C libraries and header files changed and changed and changed to the extent that in 2021 G-Kermit 1.0 ccan't be built at all an most Unix platforms, and even on those where a functional executable is generated, dozens or hundreds of warnings are issued. This, for code that generated zero warnings or errors when compiled in 1999. Thus version 2.0 of May 26, 2021. The only changes are: 1. The version identification just below, and: 2. The inclusion of four previously unneeded header files in gkermit.h. ................................. Mon Nov 15 08:31:48 2021: From Kenji Rikitake, two patches added to gkermit.h for macOS with Xcode: 1. macOS with Xcode has no <malloc.h> 2. macOS with Xcode has the prototype of sleep() in <unistd.h> Conditional if(n)def with __APPLE__ flag, dedicated for macOS. It seems unistd.h is now required on many platforms; I now #include it in all builds by default; to suppress the #include on platforms that don't have unistd.h, do: make "KFLAGS=-DNOUNISTD" ...
2021-10-26comms: Replace RMD160 checksums with BLAKE2s checksumsnia1-2/+2
All checksums have been double-checked against existing RMD160 and SHA512 hashes
2021-10-07comms: Remove SHA1 hashes for distfilesnia1-2/+1
2021-04-21gkermit: remove dead download locationwiz1-3/+2
2015-11-03Add SHA512 digests for distfiles for comms categoryagc1-1/+2
Existing SHA1 digests verified, all found to be the same on the machine holding the existing distfiles (morden). Existing SHA1 digests retained for now as an audit trail.
2014-10-09Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.wiz1-3/+1
2012-10-03Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-2/+1
2009-06-14Remove @dirrm entries from PLISTsjoerg1-2/+1
2008-04-07Fix DESTDIR.joerg1-4/+3
2008-03-03Mechanical changes to add full DESTDIR support to packages that installjlam1-5/+7
their files via a custom do-install target.
2007-12-12Reset maintainer on his request.wiz1-2/+2
2007-01-07Mechanically replaced man/* with ${PKGMANDIR}/* in the definition ofrillig1-3/+3
INSTALLATION_DIRS, as well as all occurrences of ${PREFIX}/man with ${PREFIX}/${PKGMANDIR}. Fixes PR 35265, although I did not use the patch provided therein.
2006-09-09Rename variable MAKEFILE to MAKE_FILE.obache1-2/+2
2005-12-18Include ERRNO_H in CFLAGS to get proper errno.joerg1-1/+5
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-2/+2
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-24Use versioned distfile.wiz2-8/+6
2005-02-23Add RMD160 digests in addition to SHA1 ones.agc1-1/+2
2005-02-16Add patch to fix build on Linux, provided by Jorge Acereda in PR 29408.wiz2-1/+14
2004-12-03Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs.wiz1-2/+2
Suggested by Roland Illig, ok'd by various.
2004-03-23USE_BUILDLINK3 must be set to "yes" or "no", not defined/undefined.jlam1-2/+2
2004-02-21bl3ify and enable pkgviews installation.minskim1-2/+6
2004-01-20Move WRKSRC definition away from the first paragraph in a Makefile.agc1-2/+2
2003-07-26lintcjep1-2/+2
2003-07-21COMMENT should start with a capital letter.martti1-2/+2
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-17The main package has changed on the distribution site by the followingagc2-5/+8
change: --- gkermit.h 1999-12-26 21:25:52.000000000 +0000 +++ gkermit.h 2003-05-27 16:30:13.000000000 +0100 @@ -233,7 +233,11 @@ /* Externs */ +#ifdef ERRNO_H +#include <errno.h> +#else extern int errno; +#endif /* ERRNO_H */ #ifndef _GKERMIT_C extern int debug; #endif /* _GKERMIT_C */ but unfortunately without a corresponding version number bump. so do the dance we usually do with unnumbered distributions, and put the distfile locally into a (numbered) DIST_SUBDIR directory. Bump package revision number, regen distinfo file, and one cosmetic change to make the WRKSRC definition appear in a more suitable place in the package Makefile.
2003-03-29Place WRKSRC where it belongs, to make pkglint happy; ok'ed by wiz.jmmv1-2/+2
2002-10-04buildlink1 -> buildlink2jlam1-3/+3
2001-10-31Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-09-09Deprecate NO_WRKSUBDIR, replacing it with an explicit assignment of:agc1-2/+2
WRKSRC= ${WRKDIR} This is much cleaner, much more indicative of what happens, and removes another of the negative definitions (NO_.* = value).
2001-08-19Honor CFLAGS and CC settings from the environment and mark asjlam1-1/+3
USE_BUILDLINK_ONLY.
2001-07-13Update my email address.fredb1-2/+2
2001-04-20Move to sha1 digests, and add distfile sizes.agc1-2/+3
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc1-1/+1
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-02-25Cleanup MKDIR usage => INSTALL_*_DIRhubertf1-2/+2
XXX need to teach pkglint to be more picky about this
2001-02-16Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2000-01-08more whitespace cleanup (silence, pkglint!)wiz1-1/+1
2000-01-05Remove directory "share/doc/gkermit" during deinstallation.tron1-1/+2
2000-01-05Install "README" to "${PREFIX}/share/doc/gkermit" as usual.tron2-4/+5
2000-01-04Inital import of gkermit-1.00, a small, command-line-only implementation offredb5-0/+33
the ``kermit'' protocol, distributed under the GNU General Public License.