summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
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;