summaryrefslogtreecommitdiff
path: root/pkgtools/rcorder
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2012-03-10 16:10:56 +0000
committerjoerg <joerg@pkgsrc.org>2012-03-10 16:10:56 +0000
commit375e683ba5253c86712101f33d1fc86a99e080bf (patch)
tree7598fefdcfe8e2cb5de900db0bb2f95f99efa075 /pkgtools/rcorder
parentc1dd717b2f5eabb930d816a24a3c3ad2308ca3fc (diff)
downloadpkgsrc-375e683ba5253c86712101f33d1fc86a99e080bf.tar.gz
Don't bother installing a cat page. Bump version.
Diffstat (limited to 'pkgtools/rcorder')
-rw-r--r--pkgtools/rcorder/Makefile4
-rw-r--r--pkgtools/rcorder/PLIST3
-rw-r--r--pkgtools/rcorder/files/Makefile.in6
-rw-r--r--pkgtools/rcorder/files/rcorder.cat886
4 files changed, 4 insertions, 95 deletions
diff --git a/pkgtools/rcorder/Makefile b/pkgtools/rcorder/Makefile
index d4a43e63a72..4970d949a57 100644
--- a/pkgtools/rcorder/Makefile
+++ b/pkgtools/rcorder/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.13 2009/04/09 00:48:14 joerg Exp $
+# $NetBSD: Makefile,v 1.14 2012/03/10 16:10:56 joerg Exp $
#
-DISTNAME= rcorder-20031013
+DISTNAME= rcorder-20120310
CATEGORIES= pkgtools sysutils
MASTER_SITES= # empty
DISTFILES= # empty
diff --git a/pkgtools/rcorder/PLIST b/pkgtools/rcorder/PLIST
index 59a61ee5456..92360f557b8 100644
--- a/pkgtools/rcorder/PLIST
+++ b/pkgtools/rcorder/PLIST
@@ -1,4 +1,3 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2004/08/27 01:49:15 schmonz Exp $
+@comment $NetBSD: PLIST,v 1.2 2012/03/10 16:10:56 joerg Exp $
sbin/rcorder
-man/cat8/rcorder.0
man/man8/rcorder.8
diff --git a/pkgtools/rcorder/files/Makefile.in b/pkgtools/rcorder/files/Makefile.in
index a8349b239bb..58b0f1eea7b 100644
--- a/pkgtools/rcorder/files/Makefile.in
+++ b/pkgtools/rcorder/files/Makefile.in
@@ -1,4 +1,4 @@
-# $Id: Makefile.in,v 1.1 2004/08/27 03:06:07 jlam Exp $
+# $Id: Makefile.in,v 1.2 2012/03/10 16:10:56 joerg Exp $
@SET_MAKE@
SHELL = @SHELL@
@@ -80,10 +80,6 @@ install: rcorder
@f=`echo rcorder.8|sed '$(transform)'`; \
echo "$(INSTALL_DATA) rcorder.8 $(DESTDIR)$(mandir)/man8/$$f"; \
$(INSTALL_DATA) rcorder.8 $(DESTDIR)$(mandir)/man8/$$f
- $(mkinstalldirs) $(DESTDIR)$(mandir)/cat8
- @f=`echo rcorder.cat8|sed '$(transform);s,\.cat8$$,.0,'`; \
- echo "$(INSTALL_DATA) rcorder.cat8 $(DESTDIR)$(mandir)/cat8/$$f"; \
- $(INSTALL_DATA) rcorder.cat8 $(DESTDIR)$(mandir)/cat8/$$f
uninstall:
@f=`echo rcorder|sed '$(transform)'`; \
diff --git a/pkgtools/rcorder/files/rcorder.cat8 b/pkgtools/rcorder/files/rcorder.cat8
deleted file mode 100644
index 4271d485fd0..00000000000
--- a/pkgtools/rcorder/files/rcorder.cat8
+++ /dev/null
@@ -1,86 +0,0 @@
-RCORDER(8) NetBSD System Manager's Manual RCORDER(8)
-
-NNAAMMEE
- rrccoorrddeerr - print a dependency ordering of interdependent files
-
-SSYYNNOOPPSSIISS
- rrccoorrddeerr [--kk _k_e_e_p] [--ss _s_k_i_p] _f_i_l_e _._._.
-
-DDEESSCCRRIIPPTTIIOONN
- rrccoorrddeerr is designed to print out a dependency ordering of a set of inter-
- dependent files. Typically it is used to find an execution sequence for
- a set of shell scripts in which certain files must be executed before
- others.
-
- Each file passed to rrccoorrddeerr should be annotated with special lines (which
- look like comments to the shell) which indicate the dependencies the
- files have upon certain points in the sequence, known as ``conditions'',
- and which indicate, for each file, which ``conditions'' may be expected
- to be filled by that file.
-
- Within each file, a block containing a series of ``REQUIRE'',
- ``PROVIDE'', ``BEFORE'' and ``KEYWORD'' lines should appear. The format
- of the lines is rigid. Each line must begin with a single ``#'', fol-
- lowed by a single space, followed by ``PROVIDE:'', ``REQUIRE:'',
- ``BEFORE:'', or ``KEYWORD:''. No deviation is permitted. Each depen-
- dency line is then followed by a series of conditions, separated by
- whitespace. Multiple ``PROVIDE'', ``REQUIRE'', ``BEFORE'' and
- ``KEYWORD'' lines may appear, but all such lines must appear in a
- sequence without any intervening lines, as once a line that does not fol-
- low the format is reached, parsing stops.
-
- The options are as follows:
-
- --kk Add the specified keyword to the ``keep list''. If any --kk option
- is given, only those files containing the matching keyword are
- listed.
-
- --ss Add the specified keyword to the ``skip list''. If any --ss option
- is given, files containing the matching keyword are not listed.
-
- An example block follows:
-
- # REQUIRE: networking syslog
- # REQUIRE: usr
- # PROVIDE: dns nscd
-
- This block states that the file in which it appears depends upon the
- ``networking'', ``syslog'', and ``usr'' conditions, and provides the
- ``dns'' and ``nscd'' conditions.
-
- A file may contain zero ``PROVIDE'' lines, in which case it provides no
- conditions, and may contain zero ``REQUIRE'' lines, in which case it has
- no dependencies. A file containing no ``PROVIDE'', ``REQUIRE'', or
- ``BEFORE'' lines may be output at an arbitrary position in the dependency
- ordering.
-
- There must be at least one file with no dependencies in the set of argu-
- ments passed to rrccoorrddeerr in order for it to find a starting place in the
- dependency ordering.
-
-DDIIAAGGNNOOSSTTIICCSS
- rrccoorrddeerr may print one of the following error messages and exit with a
- non-zero status if it encounters an error while processing the file list.
-
- RReeqquuiirreemmeenntt %%ss hhaass nnoo pprroovviiddeerrss,, aabboorrttiinngg.. No file has a ``PROVIDE''
- line corresponding to a condition present in a ``REQUIRE'' line in
- another file.
-
- CCiirrccuullaarr ddeeppeennddeennccyy oonn pprroovviissiioonn %%ss,, aabboorrttiinngg.. A set of files has a cir-
- cular dependency which was detected while processing the stated condi-
- tion.
-
- CCiirrccuullaarr ddeeppeennddeennccyy oonn ffiillee %%ss,, aabboorrttiinngg.. A set of files has a circular
- dependency which was detected while processing the stated file.
-
-SSEEEE AALLSSOO
- rc(8)
-
-HHIISSTTOORRYY
- The rrccoorrddeerr program first appeared in NetBSD 1.5.
-
-AAUUTTHHOORRSS
- Written by Perry E. Metzger (perry@piermont.com) and Matthew R. Green
- (mrg@eterna.com.au).
-
-NetBSD 2.0_BETA April 23, 2003 NetBSD 2.0_BETA