Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src install midirecord.



details:   https://anonhg.NetBSD.org/src/rev/16ba0600d978
branches:  trunk
changeset: 805353:16ba0600d978
user:      mrg <mrg%NetBSD.org@localhost>
date:      Tue Dec 30 04:22:18 2014 +0000

description:
install midirecord.

diffstat:

 distrib/sets/lists/base/mi  |  3 ++-
 distrib/sets/lists/debug/mi |  3 ++-
 distrib/sets/lists/man/mi   |  5 ++++-
 usr.bin/Makefile            |  8 ++++----
 4 files changed, 12 insertions(+), 7 deletions(-)

diffs (89 lines):

diff -r 7ce8366fb1cd -r 16ba0600d978 distrib/sets/lists/base/mi
--- a/distrib/sets/lists/base/mi        Tue Dec 30 04:14:25 2014 +0000
+++ b/distrib/sets/lists/base/mi        Tue Dec 30 04:22:18 2014 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.1092 2014/12/11 23:24:12 riastradh Exp $
+# $NetBSD: mi,v 1.1093 2014/12/30 04:22:18 mrg Exp $
 #
 # Note:        Don't delete entries from here - mark them as "obsolete" instead,
 #      unless otherwise stated below.
@@ -608,6 +608,7 @@
 ./usr/bin/merge                                        base-util-bin
 ./usr/bin/mesg                                 base-util-bin
 ./usr/bin/midiplay                             base-audio-bin
+./usr/bin/midirecord                           base-audio-bin
 ./usr/bin/mixerctl                             base-audio-bin
 ./usr/bin/mk_cmds                              base-obsolete           obsolete
 ./usr/bin/mkcsmapper                           base-util-bin
diff -r 7ce8366fb1cd -r 16ba0600d978 distrib/sets/lists/debug/mi
--- a/distrib/sets/lists/debug/mi       Tue Dec 30 04:14:25 2014 +0000
+++ b/distrib/sets/lists/debug/mi       Tue Dec 30 04:22:18 2014 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.97 2014/12/21 15:39:37 martin Exp $
+# $NetBSD: mi,v 1.98 2014/12/30 04:22:18 mrg Exp $
 
 ./etc/mtree/set.debug                           comp-sys-root
 ./usr/lib/i18n/libBIG5_g.a                     comp-c-debuglib         debuglib
@@ -618,6 +618,7 @@
 ./usr/libdata/debug/usr/bin/merge.debug                comp-util-debug         debug
 ./usr/libdata/debug/usr/bin/mesg.debug         comp-util-debug         debug
 ./usr/libdata/debug/usr/bin/midiplay.debug     comp-audio-debug        debug
+./usr/libdata/debug/usr/bin/midirecord.debug   comp-audio-debug        debug
 ./usr/libdata/debug/usr/bin/mixerctl.debug     comp-audio-debug        debug
 ./usr/libdata/debug/usr/bin/mk_cmds.debug      comp-obsolete           obsolete
 ./usr/libdata/debug/usr/bin/mkcsmapper.debug   comp-util-debug         debug
diff -r 7ce8366fb1cd -r 16ba0600d978 distrib/sets/lists/man/mi
--- a/distrib/sets/lists/man/mi Tue Dec 30 04:14:25 2014 +0000
+++ b/distrib/sets/lists/man/mi Tue Dec 30 04:22:18 2014 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.1491 2014/12/02 03:51:48 msaitoh Exp $
+# $NetBSD: mi,v 1.1492 2014/12/30 04:22:18 mrg Exp $
 #
 # Note: don't delete entries from here - mark them as "obsolete" instead.
 #
@@ -319,6 +319,7 @@
 ./usr/share/man/cat1/merge.0                   man-util-catman         .cat
 ./usr/share/man/cat1/mesg.0                    man-util-catman         .cat
 ./usr/share/man/cat1/midiplay.0                        man-audio-catman        .cat
+./usr/share/man/cat1/midirecord.0              man-audio-catman        .cat
 ./usr/share/man/cat1/mixerctl.0                        man-audio-catman        .cat
 ./usr/share/man/cat1/mkdep.0                   man-c-catman            .cat
 ./usr/share/man/cat1/mkdir.0                   man-util-catman         .cat
@@ -3438,6 +3439,7 @@
 ./usr/share/man/html1/merge.html               man-util-htmlman        html
 ./usr/share/man/html1/mesg.html                        man-util-htmlman        html
 ./usr/share/man/html1/midiplay.html            man-audio-htmlman       html
+./usr/share/man/html1/midirecord.html          man-audio-htmlman       html
 ./usr/share/man/html1/mixerctl.html            man-audio-htmlman       html
 ./usr/share/man/html1/mkdep.html               man-c-htmlman           html
 ./usr/share/man/html1/mkdir.html               man-util-htmlman        html
@@ -6195,6 +6197,7 @@
 ./usr/share/man/man1/merge.1                   man-util-man            .man
 ./usr/share/man/man1/mesg.1                    man-util-man            .man
 ./usr/share/man/man1/midiplay.1                        man-audio-man           .man
+./usr/share/man/man1/midirecord.1              man-audio-man           .man
 ./usr/share/man/man1/mixerctl.1                        man-audio-man           .man
 ./usr/share/man/man1/mkdep.1                   man-c-man               .man
 ./usr/share/man/man1/mkdir.1                   man-util-man            .man
diff -r 7ce8366fb1cd -r 16ba0600d978 usr.bin/Makefile
--- a/usr.bin/Makefile  Tue Dec 30 04:14:25 2014 +0000
+++ b/usr.bin/Makefile  Tue Dec 30 04:22:18 2014 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.218 2014/08/01 14:01:30 christos Exp $
+#      $NetBSD: Makefile,v 1.219 2014/12/30 04:22:18 mrg Exp $
 #      from: @(#)Makefile      8.3 (Berkeley) 1/7/94
 
 .include <bsd.own.mk>
@@ -16,9 +16,9 @@
        head hexdump iconv id indent infocmp innetgr ipcrm ipcs join jot \
        kdump ktrace ktruss lam last lastcomm ldd leave \
        locale locate lock logger login logname look lorder m4 \
-       machine mail make man menuc mesg midiplay mixerctl mkcsmapper \
-       mkdep mkesdb mkfifo mklocale mkstr mktemp mkubootimage moduli \
-       msgc msgs \
+       machine mail make man menuc mesg midiplay midirecord mixerctl \
+       mkcsmapper mkdep mkesdb mkfifo mklocale mkstr mktemp mkubootimage \
+       moduli msgc msgs \
        nbperf netgroup netstat newgrp newsyslog nfsstat nice nl nohup \
        pagesize passwd paste patch pathchk pkill pmap pmc pr \
        printenv printf progress pwhash qsubst quota radioctl rdist \



Home | Main Index | Thread Index | Old Index