From 0b6b506536c1ff50f1531d26be2fccfe86c74335 Mon Sep 17 00:00:00 2001 From: zuntum Date: Thu, 1 Nov 2001 00:57:41 +0000 Subject: Move pkg/ files into package's toplevel directory --- devel/isect/DEINSTALL | 25 +++++++++++++++++++++++ devel/isect/DESCR | 13 ++++++++++++ devel/isect/INSTALL | 35 ++++++++++++++++++++++++++++++++ devel/isect/PLIST | 51 +++++++++++++++++++++++++++++++++++++++++++++++ devel/isect/pkg/DEINSTALL | 25 ----------------------- devel/isect/pkg/DESCR | 13 ------------ devel/isect/pkg/INSTALL | 35 -------------------------------- devel/isect/pkg/PLIST | 51 ----------------------------------------------- 8 files changed, 124 insertions(+), 124 deletions(-) create mode 100644 devel/isect/DEINSTALL create mode 100644 devel/isect/DESCR create mode 100644 devel/isect/INSTALL create mode 100644 devel/isect/PLIST delete mode 100644 devel/isect/pkg/DEINSTALL delete mode 100644 devel/isect/pkg/DESCR delete mode 100644 devel/isect/pkg/INSTALL delete mode 100644 devel/isect/pkg/PLIST (limited to 'devel/isect') diff --git a/devel/isect/DEINSTALL b/devel/isect/DEINSTALL new file mode 100644 index 00000000000..8df814bd1ec --- /dev/null +++ b/devel/isect/DEINSTALL @@ -0,0 +1,25 @@ +#!/bin/sh +# +# $NetBSD: DEINSTALL,v 1.1 2001/11/01 01:24:13 zuntum Exp $ +# + +PKGNAME=$1 + +case $2 in +DEINSTALL) + ;; +POST-DEINSTALL) + /bin/cat << EOF +=========================================================================== +If you won't be using ${PKGNAME} any longer, you may want to remove the +hostname alias to "isectd" and remove the isect services listed in +/etc/services. +=========================================================================== +EOF + ;; +*) + echo "Unexpected argument: $2" + exit 1 + ;; +esac +exit 0 diff --git a/devel/isect/DESCR b/devel/isect/DESCR new file mode 100644 index 00000000000..d4b4621159d --- /dev/null +++ b/devel/isect/DESCR @@ -0,0 +1,13 @@ +isectd is an open-source middleware daemon that simplifies the +implementation of distributed processing and client-server systems. +Using a familiar file IO-like programmer's interface it makes +multi-tier programming as easy as reading and writing. + +Isect is short for intersect, a kind of table required in relational +databases to express many-to-many relationships. Distributed processing +implements process-oriented many-to-many relationships: many clients +communicating with many services. If it's mathematically required for +data relationships then it's mathematically required for process +relationships! This is the proof--and the reason you need isectd. + +Questions and comments should be mailed to tgagne@ix.netcom.com. diff --git a/devel/isect/INSTALL b/devel/isect/INSTALL new file mode 100644 index 00000000000..def18ad90a2 --- /dev/null +++ b/devel/isect/INSTALL @@ -0,0 +1,35 @@ +#!/bin/sh +# +# $NetBSD: INSTALL,v 1.1 2001/11/01 01:24:13 zuntum Exp $ +# + +case $2 in +PRE-INSTALL) + ;; +POST-INSTALL) + /bin/cat << EOF +=========================================================================== +You need to alias the hostname of the machine which will run isectd to +"isectd" on all the client machines, and add the following to +/etc/services: + +# +# isect services +# +isectd 5501/tcp # isectd +isdexec 5502/tcp # isdexecd + +The port number you specify should not conflict with any others that are +reserved. + +You can start the isect daemon by editing /etc/rc.local to run +${PKG_PREFIX}/etc/rc.d/isect.sh. +=========================================================================== +EOF + ;; +*) + echo "Unexpected argument: $2" + exit 1 + ;; +esac +exit 0 diff --git a/devel/isect/PLIST b/devel/isect/PLIST new file mode 100644 index 00000000000..f4182908bf7 --- /dev/null +++ b/devel/isect/PLIST @@ -0,0 +1,51 @@ +@comment $NetBSD: PLIST,v 1.1 2001/11/01 01:24:13 zuntum Exp $ +bin/isdcfgck +bin/isdclient +bin/isdeat +bin/isdecho +etc/rc.d/isect +include/isdio.h +include/libisect.h +include/queues.h +include/tabfuncs.h +@unexec install-info --delete %D/info/isect.info %D/info/dir +info/isect.info +@exec install-info %D/info/isect.info %D/info/dir +lib/libisdio.a +lib/libisdio.la +lib/libisdio.so +lib/libisdio.so.0 +lib/libisdio.so.0.0 +lib/libisect.a +lib/libisect.la +lib/libisect.so +lib/libisect.so.0 +lib/libisect.so.0.0 +sbin/isdexecd +sbin/isectd +share/doc/isect/bugs.html +share/doc/isect/changes.html +share/doc/isect/index.html +share/doc/isect/isect_1.html +share/doc/isect/isect_10.html +share/doc/isect/isect_11.html +share/doc/isect/isect_12.html +share/doc/isect/isect_13.html +share/doc/isect/isect_14.html +share/doc/isect/isect_15.html +share/doc/isect/isect_16.html +share/doc/isect/isect_2.html +share/doc/isect/isect_3.html +share/doc/isect/isect_4.html +share/doc/isect/isect_5.html +share/doc/isect/isect_6.html +share/doc/isect/isect_7.html +share/doc/isect/isect_8.html +share/doc/isect/isect_9.html +share/doc/isect/isect_stoc.html +share/doc/isect/isect_toc.html +share/doc/isect/whatsnew.html +share/examples/isect/COPYING +share/examples/isect/isdecho.c +@dirrm share/examples/isect +@dirrm share/doc/isect diff --git a/devel/isect/pkg/DEINSTALL b/devel/isect/pkg/DEINSTALL deleted file mode 100644 index 733548bd0d8..00000000000 --- a/devel/isect/pkg/DEINSTALL +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -# -# $NetBSD: DEINSTALL,v 1.1.1.1 1999/09/15 18:56:21 jlam Exp $ -# - -PKGNAME=$1 - -case $2 in -DEINSTALL) - ;; -POST-DEINSTALL) - /bin/cat << EOF -=========================================================================== -If you won't be using ${PKGNAME} any longer, you may want to remove the -hostname alias to "isectd" and remove the isect services listed in -/etc/services. -=========================================================================== -EOF - ;; -*) - echo "Unexpected argument: $2" - exit 1 - ;; -esac -exit 0 diff --git a/devel/isect/pkg/DESCR b/devel/isect/pkg/DESCR deleted file mode 100644 index d4b4621159d..00000000000 --- a/devel/isect/pkg/DESCR +++ /dev/null @@ -1,13 +0,0 @@ -isectd is an open-source middleware daemon that simplifies the -implementation of distributed processing and client-server systems. -Using a familiar file IO-like programmer's interface it makes -multi-tier programming as easy as reading and writing. - -Isect is short for intersect, a kind of table required in relational -databases to express many-to-many relationships. Distributed processing -implements process-oriented many-to-many relationships: many clients -communicating with many services. If it's mathematically required for -data relationships then it's mathematically required for process -relationships! This is the proof--and the reason you need isectd. - -Questions and comments should be mailed to tgagne@ix.netcom.com. diff --git a/devel/isect/pkg/INSTALL b/devel/isect/pkg/INSTALL deleted file mode 100644 index 5c6d8d729b3..00000000000 --- a/devel/isect/pkg/INSTALL +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/sh -# -# $NetBSD: INSTALL,v 1.1.1.1 1999/09/15 18:56:21 jlam Exp $ -# - -case $2 in -PRE-INSTALL) - ;; -POST-INSTALL) - /bin/cat << EOF -=========================================================================== -You need to alias the hostname of the machine which will run isectd to -"isectd" on all the client machines, and add the following to -/etc/services: - -# -# isect services -# -isectd 5501/tcp # isectd -isdexec 5502/tcp # isdexecd - -The port number you specify should not conflict with any others that are -reserved. - -You can start the isect daemon by editing /etc/rc.local to run -${PKG_PREFIX}/etc/rc.d/isect.sh. -=========================================================================== -EOF - ;; -*) - echo "Unexpected argument: $2" - exit 1 - ;; -esac -exit 0 diff --git a/devel/isect/pkg/PLIST b/devel/isect/pkg/PLIST deleted file mode 100644 index a020226e15f..00000000000 --- a/devel/isect/pkg/PLIST +++ /dev/null @@ -1,51 +0,0 @@ -@comment $NetBSD: PLIST,v 1.4 2001/01/26 05:21:44 hubertf Exp $ -bin/isdcfgck -bin/isdclient -bin/isdeat -bin/isdecho -etc/rc.d/isect -include/isdio.h -include/libisect.h -include/queues.h -include/tabfuncs.h -@unexec install-info --delete %D/info/isect.info %D/info/dir -info/isect.info -@exec install-info %D/info/isect.info %D/info/dir -lib/libisdio.a -lib/libisdio.la -lib/libisdio.so -lib/libisdio.so.0 -lib/libisdio.so.0.0 -lib/libisect.a -lib/libisect.la -lib/libisect.so -lib/libisect.so.0 -lib/libisect.so.0.0 -sbin/isdexecd -sbin/isectd -share/doc/isect/bugs.html -share/doc/isect/changes.html -share/doc/isect/index.html -share/doc/isect/isect_1.html -share/doc/isect/isect_10.html -share/doc/isect/isect_11.html -share/doc/isect/isect_12.html -share/doc/isect/isect_13.html -share/doc/isect/isect_14.html -share/doc/isect/isect_15.html -share/doc/isect/isect_16.html -share/doc/isect/isect_2.html -share/doc/isect/isect_3.html -share/doc/isect/isect_4.html -share/doc/isect/isect_5.html -share/doc/isect/isect_6.html -share/doc/isect/isect_7.html -share/doc/isect/isect_8.html -share/doc/isect/isect_9.html -share/doc/isect/isect_stoc.html -share/doc/isect/isect_toc.html -share/doc/isect/whatsnew.html -share/examples/isect/COPYING -share/examples/isect/isdecho.c -@dirrm share/examples/isect -@dirrm share/doc/isect -- cgit v1.2.3