summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2011-01-26 15:11:00 +0000
committerMarc Espie <espie@cvs.openbsd.org>2011-01-26 15:11:00 +0000
commit42739d2be98a0b5e7e445b8161285c2f089d01b1 (patch)
tree7b24e423b08046502c596696cc81721c81b37e62 /libexec
parent9b83840f74d1a3585c4f2522f88eec5a87b8b4e5 (diff)
placeholder for future changes, as discussed with miod@
Diffstat (limited to 'libexec')
-rw-r--r--libexec/makewhatis/Makefile3
-rw-r--r--libexec/makewhatis/OpenBSD/Makewhatis/Subject.pm38
2 files changed, 40 insertions, 1 deletions
diff --git a/libexec/makewhatis/Makefile b/libexec/makewhatis/Makefile
index de1f0630337..9d29fb9e888 100644
--- a/libexec/makewhatis/Makefile
+++ b/libexec/makewhatis/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.8 2008/09/01 17:18:19 drahn Exp $
+# $OpenBSD: Makefile,v 1.9 2011/01/26 15:10:59 espie Exp $
MAN=makewhatis.8
NOPROG=
@@ -7,6 +7,7 @@ PACKAGES= \
OpenBSD/Makewhatis/Check.pm \
OpenBSD/Makewhatis/Find.pm \
OpenBSD/Makewhatis/Formated.pm \
+ OpenBSD/Makewhatis/Subject.pm \
OpenBSD/Makewhatis/Unformated.pm \
OpenBSD/Makewhatis/Whatis.pm
diff --git a/libexec/makewhatis/OpenBSD/Makewhatis/Subject.pm b/libexec/makewhatis/OpenBSD/Makewhatis/Subject.pm
new file mode 100644
index 00000000000..a88023e70fd
--- /dev/null
+++ b/libexec/makewhatis/OpenBSD/Makewhatis/Subject.pm
@@ -0,0 +1,38 @@
+# ex:ts=8 sw=4:
+# $OpenBSD: Subject.pm,v 1.1 2011/01/26 15:10:59 espie Exp $
+# Copyright (c) 2010 Marc Espie <espie@openbsd.org>
+#
+# Permission to use, copy, modify, and distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+use strict;
+use warnings;
+
+package OpenBSD::Makewhatis::SubjectHandler;
+
+sub new
+{
+ my $class = shift;
+ bless {}, $class;
+}
+
+sub add
+{
+}
+
+package OpenBSD::MakeWhatis::Subject;
+
+sub new
+{
+}
+
+1;