summaryrefslogtreecommitdiff
path: root/net/icsi-finger
AgeCommit message (Collapse)AuthorFilesLines
2016-04-24sunet.se stopped mirroring lots of stuff, remove/comment out references to itwiz1-3/+1
2016-03-30Remove broken /usr/pkg hardcoding from previous package updates. Fixesjperkin2-17/+6
PKGMANDIR.
2016-02-25Use OPSYSVARS.jperkin1-7/+4
2015-11-08Move bsd.prefs.mk earlier before uses of PKGMANDIR, which is I thinkdholland1-4/+4
why the openbsd build failed.
2015-11-04Add SHA512 digests for distfiles for net categoryagc1-1/+2
Problems found with existing digests: Package haproxy distfile haproxy-1.5.14.tar.gz 159f5beb8fdc6b8059ae51b53dc935d91c0fb51f [recorded] da39a3ee5e6b4b0d3255bfef95601890afd80709 [calculated] Problems found locating distfiles: Package bsddip: missing distfile bsddip-1.02.tar.Z Package citrix_ica: missing distfile citrix_ica-10.6.115659/en.linuxx86.tar.gz Package djbdns: missing distfile djbdns-1.05-test25.diff.bz2 Package djbdns: missing distfile djbdns-cachestats.patch Package djbdns: missing distfile 0002-dnscache-cache-soa-records.patch Package gated: missing distfile gated-3-5-11.tar.gz Package owncloudclient: missing distfile owncloudclient-2.0.2.tar.xz Package poink: missing distfile poink-1.6.tar.gz Package ra-rtsp-proxy: missing distfile rtspd-src-1.0.0.0.tar.gz Package ucspi-ssl: missing distfile ucspi-ssl-0.70-ucspitls-0.1.patch Package waste: missing distfile waste-source.tar.gz Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2014-09-11Fix Solaris detection; should fix Solaris build.dholland3-6/+17
2013-10-10Spell TOOL_DEPENDS correctly.joerg1-2/+2
2013-07-01Use tradcpp as preprocessor instead of second-guessing that cppjoerg3-5/+13
-traditional will work.
2013-04-06'Please use ${ECHO} instead of "echo".'rodent1-6/+6
'Please use ${ECHO_N} instead of "echo -n".'
2013-02-21Fix minor typo.is1-2/+2
2012-10-23Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-03-05Pass ${INSTALL_MAN} and ${INSTALL_SCRIPT} to make install invocations.dholland1-3/+5
Otherwise the package's own ${INSTALL} logic is used, which leads to running /usr/bin/install on systems where it doesn't work, like Solaris and Irix.
2011-11-23Update to 1.0.29is5-63/+46
No user visible changes - basically, half a patch we had is now in the upstream sources (no more statical initializers using stderr).
2011-11-22put comments back into the patch fileis1-2/+2
2011-11-22Put comments back into the patch file.is1-1/+6
2011-11-22icsi-finger 1.0.28 (+ our old patches).is3-27/+20
2011-11-22Remove a data-dependent case of segmentation fault in in.fingerd.is3-14/+17
2011-11-15replace mktemp() by mkstemp(), updating net/icsi-finger to 1.0.27nb6is3-5/+26
2011-11-15Use stdlib.h instead of private decls of malloc; remove union wait. Shoulddholland4-8/+72
fix build with newer gcc and maybe also clang.
2011-11-10Missed part of the fix for 64bit time_t from 2011/01/18 12:28:25.is1-2/+2
The maintainance program packet2ascii (actually, the ascii2packet part) needed to be fixed, too.
2011-11-10Missed part of the fix for 64bit time_t from 2011/01/18 12:28:25.is2-1/+15
The maintainance program packet2ascii (actually, the ascii2packet part) needed to be fixed, too.
2011-02-11Move FingerDir back to /var/spool; this way it can be writable by a specificis4-7/+12
unpriviledged user gfingerd can run as. (Otherwise somebody would need to create that directory it at boot time).
2011-01-18Fix for 64bit time_t:is7-3/+110
- make the packet contain explicit 32bit data for compatibility with clients on machines with 32bit time_t. - replace ctime() calls on such changed former time_t values by a shim that does the translation. This does not start to work after 2038 yet - that would need a change of the collection protocol.
2010-03-03DESTDIR support.is1-15/+19
2009-06-14Remove @dirrm entries from PLISTsjoerg1-5/+1
2008-12-15Make this compile and run on non-NetBSD; tested (as client) on Solaris 10is5-316/+85
in addition to NetBSD.
2007-03-17Don't depend on mtree to provide man page directories. Sort PLIST.joerg2-8/+9
2007-02-06No need for x11.b3.mk here.joerg1-3/+1
2006-06-08Force traditional mode for cpp, at least GCC 3.4+ will not generatejoerg6-10/+110
tabs otherwise. Fix errno usage, initialise global FILE * variables at run time.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-1/+2
2005-11-08Use strerror(3) rather than sys_errlist on Interix.tv2-6/+24
2005-06-17Create directories before installing files into them.jlam1-1/+3
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+3
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-02-24Add RMD160 digests.agc1-1/+2
2004-09-10Fix build with gcc3.wiz2-1/+15
2004-01-20Move WRKSRC definition away from the first paragraph in a Makefile.agc1-2/+2
2003-08-12Fix typo (log->lot). And remove "NetBSD" because it is notreed1-6/+3
NetBSD-specific. And remove brief description.
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-05-06Drop trailing whitespace. Ok'ed by wiz.jmmv1-3/+3
2002-09-24Complete standardization of messages according to latest pkglint.wiz1-3/+3
2002-06-26Substitute a couple of `mkdir' by `${MKDIR}'.seb1-2/+2
Remove `-p' from mkdir arguments, it is already part of ${MKDIR}. While here substitute a couple of ${PREFIX} by `%D' in `@exec ${MKDIR} ...' lines and add a couple of missing `%D' in such lines too!
2002-02-15mkdir -> ${MKDIR}skrll1-2/+2
rmdir -> ${RMDIR} rm -> ${RM} (${RM} added to PLIST_SUBST) chmod -> ${CHMOD} chown -> ${CHOWN}
2001-10-31Move pkg/ files into package's toplevel directoryzuntum3-2/+2
2001-04-21Move to sha1 checksum, and/or add distfile sizes.wiz1-2/+3
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc3-7/+5
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-02-23Package cleanup, as requested by Hubertf.is1-20/+19
2001-02-17Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2001-01-29Add automatic ${VARIABLE} handling for MESSAGE files.wiz2-10/+11
Convert most MESSAGE files to new syntax (${VARIABLE} gets replaced, not @VARIABLE@, nor @@VARIABLE@@). By default, substitutions are done for LOCALBASE, PKGNAME, PREFIX, X11BASE, X11PREFIX; additional patterns can be added via MESSAGE_SUBST. Clean up some packages while I'm there; add RCS tags to most MESSAGEs. Remove some uninteresting MESSAGEs.
2000-01-05Strip trailing '.', and/or leading '(a|an) 'abs1-1/+1
1999-07-09Add package patch checksum files.agc1-0/+4