diff --git a/devel/schilybase/Makefile b/devel/schilybase/Makefile index 41998f7982a3..466d5d64f98c 100644 --- a/devel/schilybase/Makefile +++ b/devel/schilybase/Makefile @@ -1,45 +1,64 @@ PORTNAME= schilybase CATEGORIES= devel COMMENT= Support files and libraries for the schilytools +NLS_USES= gettext-tools USE_LDCONFIG= yes -OPTIONS_DEFINE= PROFILE DOCS -OPTIONS_DEFAULT=DOCS +OPTIONS_DEFINE= DOCS NLS PROFILE +OPTIONS_DEFAULT=DOCS NLS OPTIONS_SUB= yes # do not reorder: order required for build to succeed BOOTSTRAP_SMAKE?= yes COMPONENTS= conf \ inc \ include \ include/schily \ libschily \ libdeflt \ libscg \ libscg/scg \ libxtermcap \ libcdrdeflt \ libdbgmalloc \ libedc \ libfile \ libfind \ libgetopt \ libhfs_iso \ libmdigest \ libparanoia \ librmt \ librscg \ libscgcmd \ libshedit \ libsiconv \ libsiconv/tables \ libstreamar \ man \ man/man4 +post-build-NLS-on: + ${SETENV} LC_ALL=de_DE.ISO8859-1 msgfmt -o ${WRKDIR}/SCHILY_utils.mo ${FILESDIR}/SCHILY_utils.po + +# all languages supported by FreeBSD +_LANGUAGES= af am ar be bg ca cs da de el en es et eu fi fr ga he hi hr hu \ + hy is it ja kk ko lt lv mn nb nl nn pl pt ro ru se sk sl sr sv \ + tr uk zh + +post-install-NLS-on: + @${ECHO_MSG} '=> installing dummy message catalogues' + ${MKDIR} ${STAGEDIR}${PREFIX}/share/locale/de/LC_MESSAGES + ${INSTALL_DATA} ${WRKDIR}/SCHILY_utils.mo ${STAGEDIR}${PREFIX}/share/locale/de/LC_MESSAGES/SCHILY_utils.mo +.for lang in ${_LANGUAGES:Nde} + ${MKDIR} ${STAGEDIR}${PREFIX}/share/locale/${lang}/LC_MESSAGES + ${RLN} ${STAGEDIR}${PREFIX}/share/locale/de/LC_MESSAGES/SCHILY_utils.mo \ + ${STAGEDIR}${PREFIX}/share/locale/${lang}/LC_MESSAGES/SCHILY_utils.mo +.endfor + post-install-PROFILE-off: ${RM} -r ${STAGEDIR}${PREFIX}/lib/profiled .include "Makefile.master" diff --git a/devel/schilybase/Makefile.master b/devel/schilybase/Makefile.master index 9a698745f70d..7e332cbb4bb7 100644 --- a/devel/schilybase/Makefile.master +++ b/devel/schilybase/Makefile.master @@ -1,88 +1,84 @@ -DISTVERSION= 2021-08-14 +DISTVERSION= 2021-09-01 MASTER_SITES= SF/schilytools DISTNAME= schily-${DISTVERSION} MAINTAINER= fuz@fuz.su LICENSE= CDDL ${COMPONENTS:@c@${LICENSE.${c}}@:O:u} LICENSE.autoconf= GPLv2 LICENSE.libhfs_iso= GPLv2 LICENSE.man2html= GPLv2 LICENSE.mkisofs= GPLv2 LICENSE.libparanoia= LGPL21 LICENSE.cpp= BSD3CLAUSE LICENSE.libmdigest= BSD2CLAUSE LICENSE.libfile= BSD2CLAUSE LICENSE.patch= BSD1CLAUSE LICENSE.lndir= MIT LICENSE_COMB= ${${LICENSE:[#]}>1:?multi:single} LICENSE_FILE_CDDL= ${WRKSRC}/CDDL.Schily.txt LICENSE_FILE_GPLv2= ${WRKSRC}/GPL-2.0.txt LICENSE_FILE_LGPL21= ${WRKSRC}/LGPL-2.1.txt LICENSE_FILE_BSD1CLAUSE= ${WRKSRC}/patch/LICENSE LICENSE_NAME_BSD1CLAUSE= BSD 1-clause LICENSE LICENSE_PERMS_BSD1CLAUSE= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept # schilybase has all the libraries .if ${PORTNAME} != "schilybase" BUILD_DEPENDS+= schilybase=${PORTVERSION}_${PORTREVISION}:devel/schilybase RUN_DEPENDS+= schilybase=${PORTVERSION}_${PORTREVISION}:devel/schilybase .endif .if "${BOOTSTRAP_SMAKE}" != "yes" BUILD_DEPENDS+= smake:devel/smake .endif USES+= tar:bz2 compiler gettext-runtime iconv MAKE_ARGS= INS_BASE=${PREFIX} \ INS_RBASE=${PREFIX} \ LINKMODE=dynamic \ DESTDIR=${STAGEDIR} \ STRIPFLAGS=${WITH_DEBUG:D:U-s} \ CCOM=${COMPILER_TYPE} \ CC=${CC} \ CCC=${CXX} \ COPTX="${CFLAGS}" \ C++OPTX="${CXXFLAGS}" \ NOECHO= MAKE_CMD= ${"${BOOTSTRAP_SMAKE}" == "yes":?${WRKSRC}/psmake/smake:smake} PLIST_SUB+= OPSYS=${OPSYS:tl} ARCH=${ARCH} COMPILER_TYPE=${COMPILER_TYPE} PLIST= ${.CURDIR}/pkg-plist PKGMESSAGE?= ${.CURDIR}/pkg-message DESCR= ${.CURDIR}/pkg-descr post-extract: @cd ${WRKSRC}/rmt && ${MV} rmt.dfl srmt.dfl @cd ${WRKSRC}/rmt && ${MV} default-rmt.sample default-srmt.sample do-configure: .if "${BOOTSTRAP_SMAKE}" == "yes" @${ECHO_MSG} "=> building a bootstrap smake" cd ${WRKSRC}/psmake && ${SETENV} ${MAKE_ENV} ${SH} ./MAKE-all .endif @${ECHO_MSG} "=> configuring components" - for component in ${COMPONENTS} ; \ - do \ - cd ${WRKSRC}/$$component && \ - ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} config ; \ - done +.for component in ${COMPONENTS} + cd ${WRKSRC}/${component} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} config +.endfor do-build: - for component in ${COMPONENTS} ; \ - do \ - cd ${WRKSRC}/$$component && \ - ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} all ; \ - done +.for component in ${COMPONENTS} + cd ${WRKSRC}/${component} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} all +.endfor do-install: - for component in ${COMPONENTS} ; \ - do \ - cd ${WRKSRC}/$$component && \ - ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} install ; \ - done - [ -z "${COMPONENTS:Mlib*}" ] || ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so.*.* +.for component in ${COMPONENTS} + cd ${WRKSRC}/${component} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} install +.endfor +.if "${COMPONENTS:Mlib}" != "" + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so.*.* +.endif .include diff --git a/devel/schilybase/distinfo b/devel/schilybase/distinfo index a0beb1668d27..05e77d759ced 100644 --- a/devel/schilybase/distinfo +++ b/devel/schilybase/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1629365867 -SHA256 (schily-2021-08-14.tar.bz2) = fb4e4c0ca534aa28127f7e7556c9017e059f4c7b93f6bfc33965f28091230f10 -SIZE (schily-2021-08-14.tar.bz2) = 4942864 +TIMESTAMP = 1630581827 +SHA256 (schily-2021-09-01.tar.bz2) = 8d1a6a1ff73144f3933367900a4f1ebe4aed63e5bb0db4e6aa2a108bb08024b8 +SIZE (schily-2021-09-01.tar.bz2) = 4954006 diff --git a/devel/schilybase/files/SCHILY_utils.po b/devel/schilybase/files/SCHILY_utils.po new file mode 100644 index 000000000000..7bce85fee99b --- /dev/null +++ b/devel/schilybase/files/SCHILY_utils.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"Project-Id-Version: Schilytools\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-08-21 10:40+0200\n" +"Last-Translator: Jörg Schilling \n" +"Language: all\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#, c-format +msgid "Jörg Schilling" +msgstr "Jörg Schilling" diff --git a/devel/schilybase/files/patch-compare_Makefile b/devel/schilybase/files/patch-compare_Makefile index e87e17a91e54..689f7e0a514b 100644 --- a/devel/schilybase/files/patch-compare_Makefile +++ b/devel/schilybase/files/patch-compare_Makefile @@ -1,11 +1,11 @@ ---- compare/Makefile.orig 2021-06-21 15:02:35 UTC +--- compare/Makefile.orig 2021-08-19 10:00:38 UTC +++ compare/Makefile @@ -6,7 +6,7 @@ include $(SRCROOT)/$(RULESDIR)/rules.top ########################################################################### INSDIR= bin -TARGET= compare +TARGET= scompare CPPOPTS += -DUSE_LARGEFILES CPPOPTS += -DSCHILY_PRINT - + CPPOPTS += -DUSE_NLS # Include locale support diff --git a/devel/schilybase/files/patch-mt_Makefile b/devel/schilybase/files/patch-mt_Makefile index cf2d9c5cc929..ded376f5b604 100644 --- a/devel/schilybase/files/patch-mt_Makefile +++ b/devel/schilybase/files/patch-mt_Makefile @@ -1,20 +1,20 @@ ---- mt/Makefile.orig 2021-06-07 13:29:48 UTC +--- mt/Makefile.orig 2021-08-19 17:51:16 UTC +++ mt/Makefile @@ -7,7 +7,7 @@ include $(SRCROOT)/$(RULESDIR)/rules.top INSDIR= bin TARGET= smt -SYMLINKS= mt +#SYMLINKS= mt CPPOPTS += -DUSE_REMOTE CPPOPTS += -DSCHILY_PRINT - -@@ -17,7 +17,7 @@ CFILES= mt.c + CPPOPTS += -DUSE_NLS # Include locale support +@@ -21,7 +21,7 @@ CFILES= mt.c # LIB_CAP is needed for Linux capability support in librmt. # - LIBS= -lrmt -lschily $(LIB_SOCKET) $(LIB_CAP) + LIBS= -lrmt -lschily $(LIB_SOCKET) $(LIB_CAP) $(LIB_INTL) -XMK_FILE= Makefile.man mt.mk1 +XMK_FILE= Makefile.man ########################################################################### include $(SRCROOT)/$(RULESDIR)/rules.cmd diff --git a/devel/schilybase/pkg-plist b/devel/schilybase/pkg-plist index ac4eedaefe53..d1fdf959a2f5 100644 --- a/devel/schilybase/pkg-plist +++ b/devel/schilybase/pkg-plist @@ -1,347 +1,392 @@ etc/termcap include/scg/aspi-dos.h include/scg/aspi-win32.h include/scg/scgcmd.h include/scg/scgio.h include/scg/scgops.h include/scg/scsicdb.h include/scg/scsidefs.h include/scg/scsireg.h include/scg/scsisense.h include/scg/scsitransp.h include/scg/spti-wnt.h include/scg/srb_os2.h include/schily/_regex.h include/schily/%%ARCH%%-%%OPSYS%%-%%COMPILER_TYPE%%/align.h include/schily/%%ARCH%%-%%OPSYS%%-%%COMPILER_TYPE%%/avoffset.h include/schily/%%ARCH%%-%%OPSYS%%-%%COMPILER_TYPE%%/xconfig.h include/schily/align.h include/schily/alloca.h include/schily/archdefs.h include/schily/assert.h include/schily/avoffset.h include/schily/btorder.h include/schily/ccomdefs.h include/schily/checkerr.h include/schily/ctype.h include/schily/dbgmalloc.h include/schily/deflts.h include/schily/device.h include/schily/dirent.h include/schily/dlfcn.h include/schily/err_arch.h include/schily/err_bit.h include/schily/err_char.h include/schily/err_type.h include/schily/errno.h include/schily/fcntl.h include/schily/fetchdir.h include/schily/find.h include/schily/float.h include/schily/fnmatch.h include/schily/fstream.h include/schily/getargs.h include/schily/getcwd.h include/schily/getopt.h include/schily/grp.h include/schily/hostname.h include/schily/iconv.h include/schily/idcache.h include/schily/in.h include/schily/inet.h include/schily/intcvt.h include/schily/inttypes.h include/schily/io.h include/schily/ioctl.h include/schily/ipc.h include/schily/jmpdefs.h include/schily/libgen.h include/schily/libport.h include/schily/librmt.h include/schily/limits.h include/schily/locale.h include/schily/math.h include/schily/maxpath.h include/schily/mconfig.h include/schily/md4.h include/schily/md5.h include/schily/mman.h include/schily/mtio.h include/schily/netdb.h include/schily/nlsdefs.h include/schily/param.h include/schily/patmatch.h include/schily/poll.h include/schily/priv.h include/schily/procfs.h include/schily/prototyp.h include/schily/pwd.h include/schily/regex.h include/schily/resource.h include/schily/rmd160.h include/schily/rmtio.h include/schily/schily.h include/schily/schilyp.h include/schily/select.h include/schily/sem.h include/schily/setjmp.h include/schily/sha1.h include/schily/sha2.h include/schily/sha3.h include/schily/shadow.h include/schily/shcall.h include/schily/shedit.h include/schily/shm.h include/schily/siconv.h include/schily/sigblk.h include/schily/signal.h include/schily/sigset.h include/schily/socket.h include/schily/standard.h include/schily/stat.h include/schily/stdarg.h include/schily/stdint.h include/schily/stdio.h include/schily/stdlib.h include/schily/stkframe.h include/schily/strar.h include/schily/string.h include/schily/sunos4_proto.h include/schily/sysexits.h include/schily/syslog.h include/schily/systeminfo.h include/schily/termcap.h include/schily/termios.h include/schily/time.h include/schily/timeb.h include/schily/times.h include/schily/type_val.h include/schily/types.h include/schily/unistd.h include/schily/utime.h include/schily/utsname.h include/schily/utypes.h include/schily/values.h include/schily/varargs.h include/schily/vfork.h include/schily/wait.h include/schily/walk.h include/schily/wchar.h include/schily/wctype.h include/schily/windows.h include/schily/xconfig.h include/schily/xmconfig.h lib/libcdrdeflt.a lib/libcdrdeflt.so lib/libcdrdeflt.so.1.0 lib/libdbgmalloc.a lib/libdeflt.a lib/libdeflt.so lib/libdeflt.so.1.0 lib/libedc_ecc.a lib/libedc_ecc.so lib/libedc_ecc.so.1.0 lib/libedc_ecc_dec.a lib/libedc_ecc_dec.so lib/libedc_ecc_dec.so.1.0 lib/libfile.a lib/libfile.so lib/libfile.so.1.0 lib/libfind.a lib/libfind.so lib/libfind.so.4.0 lib/libgetopt.a lib/libhfs.a lib/libhfs.so lib/libhfs.so.1.0 lib/libmdigest.a lib/libmdigest.so lib/libmdigest.so.1.0 lib/libparanoia.a lib/libparanoia.so lib/libparanoia.so.1.0 lib/librmt.a lib/librmt.so lib/librmt.so.1.0 lib/librscg.a lib/librscg.so lib/librscg.so.1.0 lib/libscg.a lib/libscg.so lib/libscg.so.1.0 lib/libscgcmd.a lib/libscgcmd.so lib/libscgcmd.so.1.0 lib/libschily.a lib/libschily.so lib/libschily.so.2.0 lib/libshedit.a lib/libshedit.so lib/libshedit.so.1.0 lib/libsiconv.a lib/libsiconv.so lib/libsiconv.so.1.0 lib/libstreamar.a lib/libstreamar.so lib/libstreamar.so.1.0 lib/libxtermcap.a lib/libxtermcap.so lib/libxtermcap.so.1.0 %%PROFILE%%lib/profiled/libcdrdeflt.a %%PROFILE%%lib/profiled/libdeflt.a %%PROFILE%%lib/profiled/libedc_ecc.a %%PROFILE%%lib/profiled/libedc_ecc_dec.a %%PROFILE%%lib/profiled/libfile.a %%PROFILE%%lib/profiled/libfind.a %%PROFILE%%lib/profiled/libhfs.a %%PROFILE%%lib/profiled/libmdigest.a %%PROFILE%%lib/profiled/libparanoia.a %%PROFILE%%lib/profiled/librmt.a %%PROFILE%%lib/profiled/librscg.a %%PROFILE%%lib/profiled/libscg.a %%PROFILE%%lib/profiled/libscgcmd.a %%PROFILE%%lib/profiled/libschily.a %%PROFILE%%lib/profiled/libshedit.a %%PROFILE%%lib/profiled/libsiconv.a %%PROFILE%%lib/profiled/libxtermcap.a %%PORTDOCS%%share/doc/libparanoia/README.interface %%PORTDOCS%%share/doc/libparanoia/README.paranoia +%%NLS%%share/locale/af/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/am/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/ar/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/be/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/bg/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/ca/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/cs/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/da/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/de/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/el/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/en/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/es/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/et/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/eu/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/fi/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/fr/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/ga/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/he/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/hi/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/hr/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/hu/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/hy/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/is/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/it/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/ja/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/kk/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/ko/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/lt/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/lv/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/mn/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/nb/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/nl/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/nn/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/pl/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/pt/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/ro/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/ru/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/se/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/sk/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/sl/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/sr/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/sv/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/tr/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/uk/LC_MESSAGES/SCHILY_utils.mo +%%NLS%%share/locale/zh/LC_MESSAGES/SCHILY_utils.mo share/lib/siconv/cp10000 share/lib/siconv/cp10006 share/lib/siconv/cp10007 share/lib/siconv/cp10029 share/lib/siconv/cp10079 share/lib/siconv/cp10081 share/lib/siconv/cp1250 share/lib/siconv/cp1251 share/lib/siconv/cp1252 share/lib/siconv/cp1253 share/lib/siconv/cp1254 share/lib/siconv/cp1255 share/lib/siconv/cp1256 share/lib/siconv/cp1257 share/lib/siconv/cp1258 share/lib/siconv/cp437 share/lib/siconv/cp737 share/lib/siconv/cp775 share/lib/siconv/cp850 share/lib/siconv/cp852 share/lib/siconv/cp855 share/lib/siconv/cp857 share/lib/siconv/cp860 share/lib/siconv/cp861 share/lib/siconv/cp862 share/lib/siconv/cp863 share/lib/siconv/cp864 share/lib/siconv/cp865 share/lib/siconv/cp866 share/lib/siconv/cp869 share/lib/siconv/cp874 share/lib/siconv/iso8859-1 share/lib/siconv/iso8859-10 share/lib/siconv/iso8859-11 share/lib/siconv/iso8859-13 share/lib/siconv/iso8859-14 share/lib/siconv/iso8859-15 share/lib/siconv/iso8859-16 share/lib/siconv/iso8859-2 share/lib/siconv/iso8859-3 share/lib/siconv/iso8859-4 share/lib/siconv/iso8859-5 share/lib/siconv/iso8859-6 share/lib/siconv/iso8859-7 share/lib/siconv/iso8859-8 share/lib/siconv/iso8859-9 share/lib/siconv/koi8-r share/lib/siconv/koi8-u share/man/man3/absfpath.3.gz share/man/man3/absnpath.3.gz share/man/man3/abspath.3.gz share/man/man3/astoi.3.gz share/man/man3/astol.3.gz share/man/man3/breakline.3.gz share/man/man3/cmpbytes.3.gz share/man/man3/comerr.3.gz share/man/man3/comerrno.3.gz share/man/man3/errmsg.3.gz share/man/man3/errmsgno.3.gz share/man/man3/error.3.gz share/man/man3/fdown.3.gz share/man/man3/fdup.3.gz share/man/man3/fexecl.3.gz share/man/man3/fexecle.3.gz share/man/man3/fexecv.3.gz share/man/man3/fexecve.3.gz share/man/man3/fgetline.3.gz share/man/man3/file_raise.3.gz share/man/man3/fileclose.3.gz share/man/man3/fileluopen.3.gz share/man/man3/fileopen.3.gz share/man/man3/filepos.3.gz share/man/man3/fileread.3.gz share/man/man3/filereopen.3.gz share/man/man3/fileseek.3.gz share/man/man3/filesize.3.gz share/man/man3/filestat.3.gz share/man/man3/filewrite.3.gz share/man/man3/findline.3.gz share/man/man3/flush.3.gz share/man/man3/fnmatch.3.gz share/man/man3/format.3.gz share/man/man3/fpipe.3.gz share/man/man3/fprintf.3.gz share/man/man3/getallargs.3.gz share/man/man3/getargerror.3.gz share/man/man3/getarginit.3.gz share/man/man3/getargs.3.gz share/man/man3/geterrno.3.gz share/man/man3/getfiles.3.gz share/man/man3/getlallargs.3.gz share/man/man3/getlargs.3.gz share/man/man3/getlfiles.3.gz share/man/man3/getline.3.gz share/man/man3/getopt.3.gz share/man/man3/getsubopt.3.gz share/man/man3/getvallargs.3.gz share/man/man3/getvargs.3.gz share/man/man3/getvfiles.3.gz share/man/man3/handlecond.3.gz share/man/man3/librmt.3.gz share/man/man3/movebytes.3.gz share/man/man3/mtg2rmtg.3.gz share/man/man3/ofindline.3.gz share/man/man3/patcompile.3.gz share/man/man3/patmatch.3.gz share/man/man3/peekc.3.gz share/man/man3/printf.3.gz share/man/man3/raisecond.3.gz share/man/man3/resolvefpath.3.gz share/man/man3/resolvenpath.3.gz share/man/man3/resolvepath.3.gz share/man/man3/rmtclose.3.gz share/man/man3/rmtdebug.3.gz share/man/man3/rmtfilename.3.gz share/man/man3/rmtg2mtg.3.gz share/man/man3/rmtgetconn.3.gz share/man/man3/rmthostname.3.gz share/man/man3/rmtinit.3.gz share/man/man3/rmtioctl.3.gz share/man/man3/rmtopen.3.gz share/man/man3/rmtread.3.gz share/man/man3/rmtrmt.3.gz share/man/man3/rmtrsh.3.gz share/man/man3/rmtseek.3.gz share/man/man3/rmtstatus.3.gz share/man/man3/rmtwrite.3.gz share/man/man3/rmtxstatus.3.gz share/man/man3/spawnl.3.gz share/man/man3/spawnv.3.gz share/man/man3/sprintf.3.gz share/man/man3/starthandlecond.3.gz share/man/man3/strcatl.3.gz share/man/man3/streql.3.gz share/man/man3/strlen.3.gz share/man/man3/unhandlecond.3.gz share/man/man5/makefiles.5.gz share/man/man5/makerules.5.gz share/man/man5/streamarchive.5.gz diff --git a/misc/schilytools/pkg-descr b/misc/schilytools/pkg-descr index 3f5b24aba9a5..bcc8a5346c2f 100644 --- a/misc/schilytools/pkg-descr +++ b/misc/schilytools/pkg-descr @@ -1,15 +1,17 @@ Schily-Tools are a set of tools developed or maintained by Joerg Schilling. This is a meta port to install all packages derived from the Schily-Tools. Programs and tools included in the Schily-Tools bundle: * Cdrtools (cdrecord/cdda2wav/mkisofs/...) * The Schily-Bourne Shell * The Schily-SunPro Make * A K&R cpp derived from the original cpp sources from John F. Reiser * cstyle is a C-indentation lint tool derived from the OpenSolaris sources * spatch is derived from the last patch from Larry Wall, POSIX compliant and using a 1-clause BSD license. * SCCS derived from OpenSolaris sources * star, the oldest free TAR implementation, started in 1982 * ved, A portable, easy to learn and extremely fast screen oriented editor. + +WWW: http://schilytools.sourceforge.net/