Index: head/sysutils/heirloom/Makefile =================================================================== --- head/sysutils/heirloom/Makefile (revision 395956) +++ head/sysutils/heirloom/Makefile (revision 395957) @@ -1,65 +1,55 @@ # Created by: Cyrille Lefevre # $FreeBSD$ PORTNAME= heirloom PORTVERSION= 070715 PORTREVISION= 3 CATEGORIES= sysutils MASTER_SITES= SF MAINTAINER= cy@FreeBSD.org COMMENT= Collection of standard Unix utilities BUILD_DEPENDS= ksh:${PORTSDIR}/shells/pdksh RUN_DEPENDS:= ${BUILD_DEPENDS} USES= gmake tar:bzip2 MAKE_ARGS= CC=${CC} CFLAGS="${CFLAGS}" ROOT="${STAGEDIR}" MAKEFILE= makefile ALL_TARGET= # DATADIR= ${PREFIX}/${PORTNAME} REINPLACE_SUB= DATADIR="${DATADIR}" OPTIONS_DEFINE= DOCS -.include - -.if ${OSVERSION} >= 900007 -EXTRA_PATCHES= ${FILESDIR}/extra-utmpx -.endif - SH2FIX= maninst.sh genintro.sh crossln.sh DOC_FILES= CHANGES LICENSE/COPYING LICENSE/LICENSE LICENSE/LUCENT \ LICENSE/README LICENSE/COPYING.LGPL README intro.txt post-patch: # FreeBSD does not have neither nor system headers @${GREP} -ERl --null 'm?alloca?\.h' ${WRKSRC} | \ ${XARGS} -0 ${REINPLACE_CMD} -E '//d' # Avoid a race (to unbreak parallel builds) @${REINPLACE_CMD} -e 's|htemp2|$$@.temp|g' \ ${WRKSRC}/spell/Makefile.mk pre-configure: @${REINPLACE_CMD} ${REINPLACE_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ ${WRKSRC}/build/mk.config ${WRKSRC}/su/su.dfl.in @${REINPLACE_CMD} -e 's|/sbin/sh| ${SH}|' \ ${SH2FIX:S|^|${WRKSRC}/build/|} # XXX: hack to avoid inner race (for -jX builds); should be fixed properly # one day (e.g. by factoring out special target in the top makefile) pre-build: ${MAKE_CMD} -C ${WRKSRC}/libcommon -f Makefile.mk headers -post-install: install-doc - -install-doc: -.if ${PORT_OPTIONS:MDOCS} +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR}/LICENSE -. for f in ${DOC_FILES} +.for f in ${DOC_FILES} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/${f} -. endfor -.endif +.endfor .include Index: head/sysutils/heirloom/files/extra-utmpx =================================================================== --- head/sysutils/heirloom/files/extra-utmpx (revision 395956) +++ head/sysutils/heirloom/files/extra-utmpx (nonexistent) @@ -1,158 +0,0 @@ ---- libcommon/_utmpx.h.orig 2006-01-22 20:06:14.000000000 +0100 -+++ libcommon/_utmpx.h 2010-01-21 21:50:34.000000000 +0100 -@@ -26,7 +26,12 @@ - defined (__DragonFly__) || defined (__APPLE__) - #include - #include --#include -+ -+#include -+#if defined(__FreeBSD__) && __FreeBSD_version >= 900007 -+# include "/usr/include/utmpx.h" -+#else -+# include - - #ifndef __dietlibc__ - struct utmpx { -@@ -83,6 +88,7 @@ - extern struct utmpx *getutxline(const struct utmpx *); - extern struct utmpx *pututxline(const struct utmpx *); - extern void setutxent(void); -+#endif /*!__FreeBSD__ && __FreeBSD_version >= 900007*/ - extern int utmpxname(const char *); - extern void updwtmpx(const char *, const struct utmpx *); - #endif /* __FreeBSD__ || __dietlibc__ || __NetBSD__ || __UCLIBC__ || ---- libcommon/utmpx.c.orig 2006-01-22 20:06:14.000000000 +0100 -+++ libcommon/utmpx.c 2010-01-21 21:58:07.000000000 +0100 -@@ -28,14 +28,16 @@ - defined (__DragonFly__) || defined (__APPLE__) - #include - #include --#include - #include - - #include "utmpx.h" - - static FILE *utfp; - static struct utmpx utx; --static const char *utmpfile = _PATH_UTMP; -+static const char *utmpfile = NULL; -+ -+#include -+#if !(defined(__FreeBSD__) && __FreeBSD_version >= 900007) - - static FILE * - init(void) -@@ -198,13 +200,6 @@ - fclose(fp); - } - --int --utmpxname(const char *name) --{ -- utmpfile = strdup(name); -- return 0; --} -- - extern struct utmpx * - pututxline(const struct utmpx *up) - { -@@ -235,6 +230,15 @@ - return rp; - } - -+#endif /*!__FreeBSD__ && __FreeBSD_version >= 900007*/ -+ -+int -+utmpxname(const char *name) -+{ -+ utmpfile = strdup(name); -+ return 0; -+} -+ - extern void - updwtmpx(const char *name, const struct utmpx *up) - { ---- who/who.c.orig 2010-01-21 22:02:24.000000000 +0100 -+++ who/who.c 2010-01-21 22:07:45.000000000 +0100 -@@ -129,8 +129,11 @@ - - if (u->ut_type == LOGIN_PROCESS) - cp = "LOGIN"; -- else if (u->ut_type == BOOT_TIME || u->ut_type == RUN_LVL || -- u->ut_user[0] == '\0') -+#if defined(__FreeBSD__) && __FreeBSD_version >= 900007 -+ else if (u->ut_type == BOOT_TIME || u->ut_user[0] == '\0') -+#else -+ else if (u->ut_type == BOOT_TIME || u->ut_type == RUN_LVL || u->ut_user[0] == '\0') -+#endif - cp = " ."; - else - cp = u->ut_user; -@@ -147,11 +150,16 @@ - } else - c = ' '; - printf("%c ", c); -+ -+#if !(defined(__FreeBSD__) && __FreeBSD_version >= 900007) - if (u->ut_type == RUN_LVL) { - snprintf(buf, sizeof buf, "run-level %c", - (int)(u->ut_pid & 0377)); - cp = buf; -- } else if (u->ut_type == BOOT_TIME) -+ } else -+ -+#endif -+ if (u->ut_type == BOOT_TIME) - cp = "system boot"; - else if (u->ut_line[0] == '\0') - cp = " ."; -@@ -189,7 +197,11 @@ - cp = " . "; - printf(" %s", cp); - } -- if (u->ut_type != RUN_LVL && u->ut_type != BOOT_TIME -+ if ( -+#if !(defined(__FreeBSD__) && __FreeBSD_version >= 900007) -+ u->ut_type != RUN_LVL && -+#endif -+ u->ut_type != BOOT_TIME - #ifdef ACCOUNTING - && u->ut_type != ACCOUNTING - #endif /* ACCOUNTING */ -@@ -203,7 +215,7 @@ - #endif /* __hpux */ - printf(" id=%4.4s term=%-3d exit=%d", - u->ut_id, --#if !defined (_AIX) || !defined (__APPLE__) -+#if (!defined (_AIX) || !defined (__APPLE__)) && !defined(__FreeBSD__) - u->ut_exit.e_termination, - u->ut_exit.e_exit - #else /* _AIX, __APPLE__ */ -@@ -213,9 +225,12 @@ - ); - else if (u->ut_type == INIT_PROCESS && !sflag) - printf(" id=%4.4s", u->ut_id); -+ -+#if !(defined(__FreeBSD__) && __FreeBSD_version >= 900007) - else if (u->ut_type == RUN_LVL) - printf(" %c %-4ld %c", (int)(u->ut_pid & 0377), - 0L, (int)((u->ut_pid & 0177777) / 0400)); -+#endif - if (Rflag && u->ut_host[0]) - printf("\t(%.*s)", (int)sizeof u->ut_host, u->ut_host); - putchar('\n'); -@@ -227,10 +242,13 @@ - enum okay val = STOP; - - switch (u->ut_type) { -+ -+#if !(defined(__FreeBSD__) && __FreeBSD_version >= 900007) - case RUN_LVL: - if (flags & FL_r) - val = OKAY; - break; -+#endif - case BOOT_TIME: - if (flags & FL_b) - val = OKAY; Property changes on: head/sysutils/heirloom/files/extra-utmpx ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sysutils/heirloom/files/patch-utmpx =================================================================== --- head/sysutils/heirloom/files/patch-utmpx (nonexistent) +++ head/sysutils/heirloom/files/patch-utmpx (revision 395957) @@ -0,0 +1,158 @@ +--- libcommon/_utmpx.h.orig 2006-01-22 20:06:14.000000000 +0100 ++++ libcommon/_utmpx.h 2010-01-21 21:50:34.000000000 +0100 +@@ -26,7 +26,12 @@ + defined (__DragonFly__) || defined (__APPLE__) + #include + #include +-#include ++ ++#include ++#if defined(__FreeBSD__) && __FreeBSD_version >= 900007 ++# include "/usr/include/utmpx.h" ++#else ++# include + + #ifndef __dietlibc__ + struct utmpx { +@@ -83,6 +88,7 @@ + extern struct utmpx *getutxline(const struct utmpx *); + extern struct utmpx *pututxline(const struct utmpx *); + extern void setutxent(void); ++#endif /*!__FreeBSD__ && __FreeBSD_version >= 900007*/ + extern int utmpxname(const char *); + extern void updwtmpx(const char *, const struct utmpx *); + #endif /* __FreeBSD__ || __dietlibc__ || __NetBSD__ || __UCLIBC__ || +--- libcommon/utmpx.c.orig 2006-01-22 20:06:14.000000000 +0100 ++++ libcommon/utmpx.c 2010-01-21 21:58:07.000000000 +0100 +@@ -28,14 +28,16 @@ + defined (__DragonFly__) || defined (__APPLE__) + #include + #include +-#include + #include + + #include "utmpx.h" + + static FILE *utfp; + static struct utmpx utx; +-static const char *utmpfile = _PATH_UTMP; ++static const char *utmpfile = NULL; ++ ++#include ++#if !(defined(__FreeBSD__) && __FreeBSD_version >= 900007) + + static FILE * + init(void) +@@ -198,13 +200,6 @@ + fclose(fp); + } + +-int +-utmpxname(const char *name) +-{ +- utmpfile = strdup(name); +- return 0; +-} +- + extern struct utmpx * + pututxline(const struct utmpx *up) + { +@@ -235,6 +230,15 @@ + return rp; + } + ++#endif /*!__FreeBSD__ && __FreeBSD_version >= 900007*/ ++ ++int ++utmpxname(const char *name) ++{ ++ utmpfile = strdup(name); ++ return 0; ++} ++ + extern void + updwtmpx(const char *name, const struct utmpx *up) + { +--- who/who.c.orig 2010-01-21 22:02:24.000000000 +0100 ++++ who/who.c 2010-01-21 22:07:45.000000000 +0100 +@@ -129,8 +129,11 @@ + + if (u->ut_type == LOGIN_PROCESS) + cp = "LOGIN"; +- else if (u->ut_type == BOOT_TIME || u->ut_type == RUN_LVL || +- u->ut_user[0] == '\0') ++#if defined(__FreeBSD__) && __FreeBSD_version >= 900007 ++ else if (u->ut_type == BOOT_TIME || u->ut_user[0] == '\0') ++#else ++ else if (u->ut_type == BOOT_TIME || u->ut_type == RUN_LVL || u->ut_user[0] == '\0') ++#endif + cp = " ."; + else + cp = u->ut_user; +@@ -147,11 +150,16 @@ + } else + c = ' '; + printf("%c ", c); ++ ++#if !(defined(__FreeBSD__) && __FreeBSD_version >= 900007) + if (u->ut_type == RUN_LVL) { + snprintf(buf, sizeof buf, "run-level %c", + (int)(u->ut_pid & 0377)); + cp = buf; +- } else if (u->ut_type == BOOT_TIME) ++ } else ++ ++#endif ++ if (u->ut_type == BOOT_TIME) + cp = "system boot"; + else if (u->ut_line[0] == '\0') + cp = " ."; +@@ -189,7 +197,11 @@ + cp = " . "; + printf(" %s", cp); + } +- if (u->ut_type != RUN_LVL && u->ut_type != BOOT_TIME ++ if ( ++#if !(defined(__FreeBSD__) && __FreeBSD_version >= 900007) ++ u->ut_type != RUN_LVL && ++#endif ++ u->ut_type != BOOT_TIME + #ifdef ACCOUNTING + && u->ut_type != ACCOUNTING + #endif /* ACCOUNTING */ +@@ -203,7 +215,7 @@ + #endif /* __hpux */ + printf(" id=%4.4s term=%-3d exit=%d", + u->ut_id, +-#if !defined (_AIX) || !defined (__APPLE__) ++#if (!defined (_AIX) || !defined (__APPLE__)) && !defined(__FreeBSD__) + u->ut_exit.e_termination, + u->ut_exit.e_exit + #else /* _AIX, __APPLE__ */ +@@ -213,9 +225,12 @@ + ); + else if (u->ut_type == INIT_PROCESS && !sflag) + printf(" id=%4.4s", u->ut_id); ++ ++#if !(defined(__FreeBSD__) && __FreeBSD_version >= 900007) + else if (u->ut_type == RUN_LVL) + printf(" %c %-4ld %c", (int)(u->ut_pid & 0377), + 0L, (int)((u->ut_pid & 0177777) / 0400)); ++#endif + if (Rflag && u->ut_host[0]) + printf("\t(%.*s)", (int)sizeof u->ut_host, u->ut_host); + putchar('\n'); +@@ -227,10 +242,13 @@ + enum okay val = STOP; + + switch (u->ut_type) { ++ ++#if !(defined(__FreeBSD__) && __FreeBSD_version >= 900007) + case RUN_LVL: + if (flags & FL_r) + val = OKAY; + break; ++#endif + case BOOT_TIME: + if (flags & FL_b) + val = OKAY; Property changes on: head/sysutils/heirloom/files/patch-utmpx ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/heirloom/pkg-plist =================================================================== --- head/sysutils/heirloom/pkg-plist (revision 395956) +++ head/sysutils/heirloom/pkg-plist (revision 395957) @@ -1,516 +1,491 @@ %%DATADIR%%/usr/5bin/s42/cp %%DATADIR%%/usr/5bin/s42/ln %%DATADIR%%/usr/5bin/s42/mv %%DATADIR%%/usr/5bin/s42/ed %%DATADIR%%/usr/5bin/s42/expr %%DATADIR%%/usr/5bin/s42/nl %%DATADIR%%/usr/5bin/s42/priocntl -%%DATADIR%%/usr/5bin/s42/ps +@(,,4755) %%DATADIR%%/usr/5bin/s42/ps %%DATADIR%%/usr/5bin/s42/sed %%DATADIR%%/usr/5bin/s42/wc %%DATADIR%%/usr/5bin/s42/csplit %%DATADIR%%/usr/5bin/s42/date %%DATADIR%%/usr/5bin/s42/egrep %%DATADIR%%/usr/5bin/s42/fgrep %%DATADIR%%/usr/5bin/s42/find %%DATADIR%%/usr/5bin/s42/getconf %%DATADIR%%/usr/5bin/s42/grep %%DATADIR%%/usr/5bin/s42/id %%DATADIR%%/usr/5bin/s42/mkdir %%DATADIR%%/usr/5bin/s42/nawk %%DATADIR%%/usr/5bin/s42/pg %%DATADIR%%/usr/5bin/s42/basename %%DATADIR%%/usr/5bin/s42/chmod %%DATADIR%%/usr/5bin/s42/du %%DATADIR%%/usr/5bin/s42/echo %%DATADIR%%/usr/5bin/s42/file %%DATADIR%%/usr/5bin/s42/lc %%DATADIR%%/usr/5bin/s42/ls %%DATADIR%%/usr/5bin/s42/more %%DATADIR%%/usr/5bin/s42/nohup %%DATADIR%%/usr/5bin/s42/od %%DATADIR%%/usr/5bin/s42/page %%DATADIR%%/usr/5bin/s42/pax %%DATADIR%%/usr/5bin/s42/pr %%DATADIR%%/usr/5bin/s42/rm %%DATADIR%%/usr/5bin/s42/rmdir %%DATADIR%%/usr/5bin/s42/sort %%DATADIR%%/usr/5bin/s42/test %%DATADIR%%/usr/5bin/s42/touch %%DATADIR%%/usr/5bin/s42/tr %%DATADIR%%/usr/5bin/s42/who %%DATADIR%%/usr/5bin/s42/awk %%DATADIR%%/usr/5bin/posix/basename %%DATADIR%%/usr/5bin/posix/chmod %%DATADIR%%/usr/5bin/posix/cp %%DATADIR%%/usr/5bin/posix/ln %%DATADIR%%/usr/5bin/posix/mv %%DATADIR%%/usr/5bin/posix/csplit %%DATADIR%%/usr/5bin/posix/date %%DATADIR%%/usr/5bin/posix/du %%DATADIR%%/usr/5bin/posix/echo %%DATADIR%%/usr/5bin/posix/ed %%DATADIR%%/usr/5bin/posix/expr %%DATADIR%%/usr/5bin/posix/file %%DATADIR%%/usr/5bin/posix/find %%DATADIR%%/usr/5bin/posix/getconf %%DATADIR%%/usr/5bin/posix/grep %%DATADIR%%/usr/5bin/posix/egrep %%DATADIR%%/usr/5bin/posix/fgrep %%DATADIR%%/usr/5bin/posix/id %%DATADIR%%/usr/5bin/posix/ls %%DATADIR%%/usr/5bin/posix/mkdir %%DATADIR%%/usr/5bin/posix/nawk %%DATADIR%%/usr/5bin/posix/nl %%DATADIR%%/usr/5bin/posix/nohup %%DATADIR%%/usr/5bin/posix/od %%DATADIR%%/usr/5bin/posix/pg %%DATADIR%%/usr/5bin/posix/pr -%%DATADIR%%/usr/5bin/posix/ps +@(,,4755) %%DATADIR%%/usr/5bin/posix/ps %%DATADIR%%/usr/5bin/posix/rm %%DATADIR%%/usr/5bin/posix/rmdir %%DATADIR%%/usr/5bin/posix/sed %%DATADIR%%/usr/5bin/posix/sort %%DATADIR%%/usr/5bin/posix/test %%DATADIR%%/usr/5bin/posix/touch %%DATADIR%%/usr/5bin/posix/tr %%DATADIR%%/usr/5bin/posix/wc %%DATADIR%%/usr/5bin/posix/who %%DATADIR%%/usr/5bin/posix/pax %%DATADIR%%/usr/5bin/posix/awk %%DATADIR%%/usr/5bin/posix2001/pax %%DATADIR%%/usr/5bin/posix2001/csplit %%DATADIR%%/usr/5bin/posix2001/ed %%DATADIR%%/usr/5bin/posix2001/expr %%DATADIR%%/usr/5bin/posix2001/find %%DATADIR%%/usr/5bin/posix2001/getconf %%DATADIR%%/usr/5bin/posix2001/grep %%DATADIR%%/usr/5bin/posix2001/egrep %%DATADIR%%/usr/5bin/posix2001/fgrep %%DATADIR%%/usr/5bin/posix2001/ls %%DATADIR%%/usr/5bin/posix2001/nawk %%DATADIR%%/usr/5bin/posix2001/nl %%DATADIR%%/usr/5bin/posix2001/pg %%DATADIR%%/usr/5bin/posix2001/sed %%DATADIR%%/usr/5bin/posix2001/basename %%DATADIR%%/usr/5bin/posix2001/chmod %%DATADIR%%/usr/5bin/posix2001/cp %%DATADIR%%/usr/5bin/posix2001/date %%DATADIR%%/usr/5bin/posix2001/du %%DATADIR%%/usr/5bin/posix2001/echo %%DATADIR%%/usr/5bin/posix2001/file %%DATADIR%%/usr/5bin/posix2001/id %%DATADIR%%/usr/5bin/posix2001/ln %%DATADIR%%/usr/5bin/posix2001/mkdir %%DATADIR%%/usr/5bin/posix2001/mv %%DATADIR%%/usr/5bin/posix2001/nohup %%DATADIR%%/usr/5bin/posix2001/pr %%DATADIR%%/usr/5bin/posix2001/ps %%DATADIR%%/usr/5bin/posix2001/rm %%DATADIR%%/usr/5bin/posix2001/rmdir %%DATADIR%%/usr/5bin/posix2001/sort %%DATADIR%%/usr/5bin/posix2001/test %%DATADIR%%/usr/5bin/posix2001/touch %%DATADIR%%/usr/5bin/posix2001/tr %%DATADIR%%/usr/5bin/posix2001/wc %%DATADIR%%/usr/5bin/posix2001/who %%DATADIR%%/usr/5bin/posix2001/od %%DATADIR%%/usr/5bin/posix2001/awk %%DATADIR%%/usr/5bin/banner %%DATADIR%%/usr/5bin/basename %%DATADIR%%/usr/5bin/bc %%DATADIR%%/usr/5bin/bdiff %%DATADIR%%/usr/5bin/bfs %%DATADIR%%/usr/5bin/cal %%DATADIR%%/usr/5bin/calendar %%DATADIR%%/usr/5bin/cat %%DATADIR%%/usr/5bin/chmod %%DATADIR%%/usr/5bin/chown %%DATADIR%%/usr/5bin/chgrp %%DATADIR%%/usr/5bin/cksum %%DATADIR%%/usr/5bin/cmp %%DATADIR%%/usr/5bin/col %%DATADIR%%/usr/5bin/comm %%DATADIR%%/usr/5bin/copy %%DATADIR%%/usr/5bin/cp %%DATADIR%%/usr/5bin/ln %%DATADIR%%/usr/5bin/mv %%DATADIR%%/usr/5bin/cpio %%DATADIR%%/usr/5bin/pax %%DATADIR%%/usr/5bin/csplit %%DATADIR%%/usr/5bin/cut %%DATADIR%%/usr/5bin/date %%DATADIR%%/usr/5bin/dc %%DATADIR%%/usr/5bin/dd %%DATADIR%%/usr/5bin/deroff %%DATADIR%%/usr/5bin/diff %%DATADIR%%/usr/5bin/diff3 %%DATADIR%%/usr/5bin/dircmp %%DATADIR%%/usr/5bin/dirname %%DATADIR%%/usr/5bin/df %%DATADIR%%/usr/5bin/dfspace %%DATADIR%%/usr/5bin/du %%DATADIR%%/usr/5bin/echo %%DATADIR%%/usr/5bin/ed %%DATADIR%%/usr/5bin/env %%DATADIR%%/usr/5bin/expand %%DATADIR%%/usr/5bin/unexpand %%DATADIR%%/usr/5bin/expr %%DATADIR%%/usr/5bin/factor %%DATADIR%%/usr/5bin/file %%DATADIR%%/usr/5bin/find %%DATADIR%%/usr/5bin/fmt %%DATADIR%%/usr/5bin/fmtmsg %%DATADIR%%/usr/5bin/fold %%DATADIR%%/usr/5bin/getopt %%DATADIR%%/usr/5bin/egrep %%DATADIR%%/usr/5bin/fgrep %%DATADIR%%/usr/5bin/grep %%DATADIR%%/usr/5bin/groups %%DATADIR%%/usr/5bin/hd %%DATADIR%%/usr/5bin/head %%DATADIR%%/usr/5bin/hostname %%DATADIR%%/usr/5bin/id %%DATADIR%%/usr/5bin/join %%DATADIR%%/usr/5bin/kill %%DATADIR%%/usr/5bin/line %%DATADIR%%/usr/5bin/listusers %%DATADIR%%/usr/5bin/logins %%DATADIR%%/usr/5bin/logname %%DATADIR%%/usr/5bin/ls %%DATADIR%%/usr/5bin/lc %%DATADIR%%/usr/5bin/mail %%DATADIR%%/usr/5bin/man %%DATADIR%%/usr/5bin/apropos %%DATADIR%%/usr/5bin/whatis %%DATADIR%%/usr/5bin/catman %%DATADIR%%/usr/5bin/mesg %%DATADIR%%/usr/5bin/mkdir %%DATADIR%%/usr/5bin/mkfifo %%DATADIR%%/usr/5bin/mknod %%DATADIR%%/usr/5bin/more %%DATADIR%%/usr/5bin/page %%DATADIR%%/usr/5bin/mvdir %%DATADIR%%/usr/5bin/nawk %%DATADIR%%/usr/5bin/news %%DATADIR%%/usr/5bin/nice %%DATADIR%%/usr/5bin/nl %%DATADIR%%/usr/5bin/nohup %%DATADIR%%/usr/5bin/oawk %%DATADIR%%/usr/5bin/od %%DATADIR%%/usr/5bin/paste %%DATADIR%%/usr/5bin/pathchk %%DATADIR%%/usr/5bin/pg %%DATADIR%%/usr/5bin/pgrep %%DATADIR%%/usr/5bin/pkill %%DATADIR%%/usr/5bin/pr %%DATADIR%%/usr/5bin/printenv %%DATADIR%%/usr/5bin/printf %%DATADIR%%/usr/5bin/priocntl -%%DATADIR%%/usr/5bin/ps +@(,,4755) %%DATADIR%%/usr/5bin/ps %%DATADIR%%/usr/5bin/pwd %%DATADIR%%/usr/5bin/random %%DATADIR%%/usr/5bin/renice %%DATADIR%%/usr/5bin/rm %%DATADIR%%/usr/5bin/rmdir %%DATADIR%%/usr/5bin/sdiff %%DATADIR%%/usr/5bin/sed %%DATADIR%%/usr/5bin/setpgrp %%DATADIR%%/usr/5bin/sleep %%DATADIR%%/usr/5bin/sort %%DATADIR%%/usr/5bin/spell %%DATADIR%%/usr/5bin/split %%DATADIR%%/usr/5bin/stty %%DATADIR%%/usr/5bin/STTY -%%DATADIR%%/usr/5bin/su +@(,,4755) %%DATADIR%%/usr/5bin/su %%DATADIR%%/usr/5bin/sum %%DATADIR%%/usr/5bin/sync %%DATADIR%%/usr/5bin/tabs %%DATADIR%%/usr/5bin/newform %%DATADIR%%/usr/5bin/tail %%DATADIR%%/usr/5bin/tapecntl %%DATADIR%%/usr/5bin/mt %%DATADIR%%/usr/5bin/tape %%DATADIR%%/usr/5bin/tar %%DATADIR%%/usr/5bin/tcopy %%DATADIR%%/usr/5bin/tee %%DATADIR%%/usr/5bin/test %%DATADIR%%/usr/5bin/time %%DATADIR%%/usr/5bin/touch %%DATADIR%%/usr/5bin/settime %%DATADIR%%/usr/5bin/tr %%DATADIR%%/usr/5bin/true %%DATADIR%%/usr/5bin/false %%DATADIR%%/usr/5bin/tty %%DATADIR%%/usr/5bin/ul %%DATADIR%%/usr/5bin/uname %%DATADIR%%/usr/5bin/uniq %%DATADIR%%/usr/5bin/units %%DATADIR%%/usr/5bin/users %%DATADIR%%/usr/5bin/wc %%DATADIR%%/usr/5bin/what %%DATADIR%%/usr/5bin/who %%DATADIR%%/usr/5bin/whoami %%DATADIR%%/usr/5bin/whodo %%DATADIR%%/usr/5bin/w %%DATADIR%%/usr/5bin/uptime %%DATADIR%%/usr/5bin/xargs %%DATADIR%%/usr/5bin/yes %%DATADIR%%/usr/5bin/install %%DATADIR%%/usr/5bin/getconf %%DATADIR%%/usr/5bin/awk %%DATADIR%%/usr/5lib/lib.b %%DATADIR%%/usr/5lib/calprog %%DATADIR%%/usr/5lib/diffh %%DATADIR%%/usr/5lib/diff3prog %%DATADIR%%/usr/5lib/magic %%DATADIR%%/usr/5lib/tmac/tmac.an %%DATADIR%%/usr/5lib/tmac/an-old.tmac %%DATADIR%%/usr/5lib/spell/spellprog %%DATADIR%%/usr/5lib/spell/spellin %%DATADIR%%/usr/5lib/spell/hashcheck %%DATADIR%%/usr/5lib/spell/hashmake %%DATADIR%%/usr/5lib/spell/compress %%DATADIR%%/usr/5lib/spell/hlista %%DATADIR%%/usr/5lib/spell/hlistb %%DATADIR%%/usr/5lib/spell/hstop %%DATADIR%%/usr/5lib/unittab %%DATADIR%%/usr/ucb/install %%DATADIR%%/usr/ucb/basename %%DATADIR%%/usr/ucb/chown %%DATADIR%%/usr/ucb/deroff %%DATADIR%%/usr/ucb/df %%DATADIR%%/usr/ucb/du %%DATADIR%%/usr/ucb/echo %%DATADIR%%/usr/ucb/groups %%DATADIR%%/usr/ucb/ln %%DATADIR%%/usr/ucb/ls -%%DATADIR%%/usr/ucb/ps +@(,,4755) %%DATADIR%%/usr/ucb/ps %%DATADIR%%/usr/ucb/stty %%DATADIR%%/usr/ucb/sum %%DATADIR%%/usr/ucb/test %%DATADIR%%/usr/ucb/tr %%DATADIR%%/usr/ucb/apropos %%DATADIR%%/usr/ucb/expand %%DATADIR%%/usr/ucb/hostname %%DATADIR%%/usr/ucb/man %%DATADIR%%/usr/ucb/printenv %%DATADIR%%/usr/ucb/renice %%DATADIR%%/usr/ucb/tcopy %%DATADIR%%/usr/ucb/ul %%DATADIR%%/usr/ucb/unexpand %%DATADIR%%/usr/ucb/uptime %%DATADIR%%/usr/ucb/users %%DATADIR%%/usr/ucb/w %%DATADIR%%/usr/ucb/whoami %%DATADIR%%/usr/ucb/whatis %%DATADIR%%/usr/ucb/more %%DATADIR%%/usr/ucb/catman %%DATADIR%%/usr/ucb/sccs %%DATADIR%%/usr/ucb/prt %%DATADIR%%/usr/ccs/bin/tsort %%DATADIR%%/etc/default/man %%DATADIR%%/etc/default/ps %%DATADIR%%/etc/default/su %%DATADIR%%/etc/default/tar %%DATADIR%%/usr/share/man/5man/man1/apropos.1 %%DATADIR%%/usr/share/man/5man/man1/awk.1 %%DATADIR%%/usr/share/man/5man/man1/banner.1 %%DATADIR%%/usr/share/man/5man/man1/basename.1 %%DATADIR%%/usr/share/man/5man/man1/bc.1 %%DATADIR%%/usr/share/man/5man/man1/cal.1 %%DATADIR%%/usr/share/man/5man/man1/calendar.1 %%DATADIR%%/usr/share/man/5man/man1/cat.1 %%DATADIR%%/usr/share/man/5man/man1/chgrp.1 %%DATADIR%%/usr/share/man/5man/man1/chmod.1 %%DATADIR%%/usr/share/man/5man/man1/chown.1 %%DATADIR%%/usr/share/man/5man/man1/cksum.1 %%DATADIR%%/usr/share/man/5man/man1/cmp.1 %%DATADIR%%/usr/share/man/5man/man1/col.1 %%DATADIR%%/usr/share/man/5man/man1/comm.1 %%DATADIR%%/usr/share/man/5man/man1/copy.1 %%DATADIR%%/usr/share/man/5man/man1/cp.1 %%DATADIR%%/usr/share/man/5man/man1/cpio.1 %%DATADIR%%/usr/share/man/5man/man1/csplit.1 %%DATADIR%%/usr/share/man/5man/man1/cut.1 %%DATADIR%%/usr/share/man/5man/man1/date.1 %%DATADIR%%/usr/share/man/5man/man1/dc.1 %%DATADIR%%/usr/share/man/5man/man1/dd.1 %%DATADIR%%/usr/share/man/5man/man1/deroff.1 %%DATADIR%%/usr/share/man/5man/man1/df.1 %%DATADIR%%/usr/share/man/5man/man1/dfspace.1 %%DATADIR%%/usr/share/man/5man/man1/diff.1 %%DATADIR%%/usr/share/man/5man/man1/diff3.1 %%DATADIR%%/usr/share/man/5man/man1/dirname.1 %%DATADIR%%/usr/share/man/5man/man1/du.1 %%DATADIR%%/usr/share/man/5man/man1/ed.1 %%DATADIR%%/usr/share/man/5man/man1/egrep.1 %%DATADIR%%/usr/share/man/5man/man1/env.1 %%DATADIR%%/usr/share/man/5man/man1/expand.1 %%DATADIR%%/usr/share/man/5man/man1/expr.1 %%DATADIR%%/usr/share/man/5man/man1/factor.1 %%DATADIR%%/usr/share/man/5man/man1/fgrep.1 %%DATADIR%%/usr/share/man/5man/man1/file.1 %%DATADIR%%/usr/share/man/5man/man1/find.1 %%DATADIR%%/usr/share/man/5man/man1/fmt.1 %%DATADIR%%/usr/share/man/5man/man1/fold.1 %%DATADIR%%/usr/share/man/5man/man1/grep.1 %%DATADIR%%/usr/share/man/5man/man1/groups.1 %%DATADIR%%/usr/share/man/5man/man1/hd.1 %%DATADIR%%/usr/share/man/5man/man1/head.1 %%DATADIR%%/usr/share/man/5man/man1/hostname.1 %%DATADIR%%/usr/share/man/5man/man1/id.1 %%DATADIR%%/usr/share/man/5man/man1/intro.1 %%DATADIR%%/usr/share/man/5man/man1/join.1 %%DATADIR%%/usr/share/man/5man/man1/lc.1 %%DATADIR%%/usr/share/man/5man/man1/line.1 %%DATADIR%%/usr/share/man/5man/man1/listusers.1 %%DATADIR%%/usr/share/man/5man/man1/ln.1 %%DATADIR%%/usr/share/man/5man/man1/logins.1 %%DATADIR%%/usr/share/man/5man/man1/logname.1 %%DATADIR%%/usr/share/man/5man/man1/ls.1 %%DATADIR%%/usr/share/man/5man/man1/mail.1 %%DATADIR%%/usr/share/man/5man/man1/man.1 %%DATADIR%%/usr/share/man/5man/man1/mkdir.1 %%DATADIR%%/usr/share/man/5man/man1/mkfifo.1 %%DATADIR%%/usr/share/man/5man/man1/more.1 %%DATADIR%%/usr/share/man/5man/man1/mt.1 %%DATADIR%%/usr/share/man/5man/man1/mv.1 %%DATADIR%%/usr/share/man/5man/man1/nawk.1 %%DATADIR%%/usr/share/man/5man/man1/newform.1 %%DATADIR%%/usr/share/man/5man/man1/news.1 %%DATADIR%%/usr/share/man/5man/man1/nice.1 %%DATADIR%%/usr/share/man/5man/man1/nl.1 %%DATADIR%%/usr/share/man/5man/man1/nohup.1 %%DATADIR%%/usr/share/man/5man/man1/oawk.1 %%DATADIR%%/usr/share/man/5man/man1/od.1 %%DATADIR%%/usr/share/man/5man/man1/page.1 %%DATADIR%%/usr/share/man/5man/man1/paste.1 %%DATADIR%%/usr/share/man/5man/man1/pax.1 %%DATADIR%%/usr/share/man/5man/man1/pg.1 %%DATADIR%%/usr/share/man/5man/man1/pgrep.1 %%DATADIR%%/usr/share/man/5man/man1/pkill.1 %%DATADIR%%/usr/share/man/5man/man1/pr.1 %%DATADIR%%/usr/share/man/5man/man1/printenv.1 %%DATADIR%%/usr/share/man/5man/man1/priocntl.1 %%DATADIR%%/usr/share/man/5man/man1/ps.1 %%DATADIR%%/usr/share/man/5man/man1/random.1 %%DATADIR%%/usr/share/man/5man/man1/renice.1 %%DATADIR%%/usr/share/man/5man/man1/rm.1 %%DATADIR%%/usr/share/man/5man/man1/rmdir.1 %%DATADIR%%/usr/share/man/5man/man1/sdiff.1 %%DATADIR%%/usr/share/man/5man/man1/sed.1 %%DATADIR%%/usr/share/man/5man/man1/setpgrp.1 %%DATADIR%%/usr/share/man/5man/man1/settime.1 %%DATADIR%%/usr/share/man/5man/man1/sleep.1 %%DATADIR%%/usr/share/man/5man/man1/sort.1 %%DATADIR%%/usr/share/man/5man/man1/spell.1 %%DATADIR%%/usr/share/man/5man/man1/split.1 %%DATADIR%%/usr/share/man/5man/man1/stty.1 %%DATADIR%%/usr/share/man/5man/man1/su.1 %%DATADIR%%/usr/share/man/5man/man1/sum.1 %%DATADIR%%/usr/share/man/5man/man1/tabs.1 %%DATADIR%%/usr/share/man/5man/man1/tail.1 %%DATADIR%%/usr/share/man/5man/man1/tape.1 %%DATADIR%%/usr/share/man/5man/man1/tapecntl.1 %%DATADIR%%/usr/share/man/5man/man1/tar.1 %%DATADIR%%/usr/share/man/5man/man1/tcopy.1 %%DATADIR%%/usr/share/man/5man/man1/tee.1 %%DATADIR%%/usr/share/man/5man/man1/time.1 %%DATADIR%%/usr/share/man/5man/man1/touch.1 %%DATADIR%%/usr/share/man/5man/man1/tr.1 %%DATADIR%%/usr/share/man/5man/man1/tsort.1 %%DATADIR%%/usr/share/man/5man/man1/tty.1 %%DATADIR%%/usr/share/man/5man/man1/ul.1 %%DATADIR%%/usr/share/man/5man/man1/uname.1 %%DATADIR%%/usr/share/man/5man/man1/unexpand.1 %%DATADIR%%/usr/share/man/5man/man1/uniq.1 %%DATADIR%%/usr/share/man/5man/man1/units.1 %%DATADIR%%/usr/share/man/5man/man1/uptime.1 %%DATADIR%%/usr/share/man/5man/man1/users.1 %%DATADIR%%/usr/share/man/5man/man1/w.1 %%DATADIR%%/usr/share/man/5man/man1/wc.1 %%DATADIR%%/usr/share/man/5man/man1/what.1 %%DATADIR%%/usr/share/man/5man/man1/whatis.1 %%DATADIR%%/usr/share/man/5man/man1/who.1 %%DATADIR%%/usr/share/man/5man/man1/whoami.1 %%DATADIR%%/usr/share/man/5man/man1/whodo.1 %%DATADIR%%/usr/share/man/5man/man1/xargs.1 %%DATADIR%%/usr/share/man/5man/man1/yes.1 %%DATADIR%%/usr/share/man/5man/man1/bdiff.1 %%DATADIR%%/usr/share/man/5man/man1/bfs.1 %%DATADIR%%/usr/share/man/5man/man1/dircmp.1 %%DATADIR%%/usr/share/man/5man/man1/echo.1 %%DATADIR%%/usr/share/man/5man/man1/fmtmsg.1 %%DATADIR%%/usr/share/man/5man/man1/getconf.1 %%DATADIR%%/usr/share/man/5man/man1/getopt.1 %%DATADIR%%/usr/share/man/5man/man1/kill.1 %%DATADIR%%/usr/share/man/5man/man1/mesg.1 %%DATADIR%%/usr/share/man/5man/man1/mvdir.1 %%DATADIR%%/usr/share/man/5man/man1/pathchk.1 %%DATADIR%%/usr/share/man/5man/man1/printf.1 %%DATADIR%%/usr/share/man/5man/man1/pwd.1 %%DATADIR%%/usr/share/man/5man/man1/test.1 %%DATADIR%%/usr/share/man/5man/man1/false.1 %%DATADIR%%/usr/share/man/5man/man1/true.1 %%DATADIR%%/usr/share/man/5man/man1b/basename.1b %%DATADIR%%/usr/share/man/5man/man1b/chown.1b %%DATADIR%%/usr/share/man/5man/man1b/deroff.1b %%DATADIR%%/usr/share/man/5man/man1b/df.1b %%DATADIR%%/usr/share/man/5man/man1b/du.1b %%DATADIR%%/usr/share/man/5man/man1b/groups.1b %%DATADIR%%/usr/share/man/5man/man1b/echo.1b %%DATADIR%%/usr/share/man/5man/man1b/install.1b %%DATADIR%%/usr/share/man/5man/man1b/ln.1b %%DATADIR%%/usr/share/man/5man/man1b/ls.1b %%DATADIR%%/usr/share/man/5man/man1b/ps.1b %%DATADIR%%/usr/share/man/5man/man1b/stty.1b %%DATADIR%%/usr/share/man/5man/man1b/sum.1b %%DATADIR%%/usr/share/man/5man/man1b/tr.1b %%DATADIR%%/usr/share/man/5man/man1b/test.1b %%DATADIR%%/usr/share/man/5man/man1m/mknod.1m %%DATADIR%%/usr/share/man/5man/man1m/sync.1m %%DATADIR%%/usr/share/man/5man/man5/fspec.5 %%DATADIR%%/usr/share/man/5man/man7/man.7 %%DATADIR%%/usr/share/man/5man/man8/catman.8 @exec umask 000; touch /var/db/spellhist /var/db/spellhist @exec umask 066; touch /var/log/sulog /var/log/sulog %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/LICENSE/COPYING %%PORTDOCS%%%%DOCSDIR%%/LICENSE/COPYING.LGPL %%PORTDOCS%%%%DOCSDIR%%/LICENSE/LICENSE %%PORTDOCS%%%%DOCSDIR%%/LICENSE/LUCENT %%PORTDOCS%%%%DOCSDIR%%/LICENSE/README %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/intro.txt -%%PORTDOCS%%@dirrm %%DOCSDIR%%/LICENSE -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm %%DATADIR%%/usr/ucb -@dirrm %%DATADIR%%/usr/share/man/5man/man8 -@dirrm %%DATADIR%%/usr/share/man/5man/man7 -@dirrm %%DATADIR%%/usr/share/man/5man/man6 -@dirrm %%DATADIR%%/usr/share/man/5man/man5 -@dirrm %%DATADIR%%/usr/share/man/5man/man4 -@dirrm %%DATADIR%%/usr/share/man/5man/man3 -@dirrm %%DATADIR%%/usr/share/man/5man/man2 -@dirrm %%DATADIR%%/usr/share/man/5man/man1m -@dirrm %%DATADIR%%/usr/share/man/5man/man1b -@dirrm %%DATADIR%%/usr/share/man/5man/man1 -@dirrm %%DATADIR%%/usr/share/man/5man -@dirrm %%DATADIR%%/usr/share/man -@dirrm %%DATADIR%%/usr/share -@dirrm %%DATADIR%%/usr/ccs/bin -@dirrm %%DATADIR%%/usr/ccs -@dirrm %%DATADIR%%/usr/5lib/tmac -@dirrm %%DATADIR%%/usr/5lib/spell -@dirrm %%DATADIR%%/usr/5lib -@dirrm %%DATADIR%%/usr/5bin/s42 -@dirrm %%DATADIR%%/usr/5bin/posix2001 -@dirrm %%DATADIR%%/usr/5bin/posix -@dirrm %%DATADIR%%/usr/5bin -@dirrm %%DATADIR%%/usr -@dirrm %%DATADIR%%/etc/default -@dirrm %%DATADIR%%/etc -@dirrm %%DATADIR%% +@dir %%DATADIR%%/usr/share/man/5man/man6 +@dir %%DATADIR%%/usr/share/man/5man/man4 +@dir %%DATADIR%%/usr/share/man/5man/man3 +@dir %%DATADIR%%/usr/share/man/5man/man2