From 42739d2be98a0b5e7e445b8161285c2f089d01b1 Mon Sep 17 00:00:00 2001 From: Marc Espie Date: Wed, 26 Jan 2011 15:11:00 +0000 Subject: placeholder for future changes, as discussed with miod@ --- libexec/makewhatis/Makefile | 3 +- libexec/makewhatis/OpenBSD/Makewhatis/Subject.pm | 38 ++++++++++++++++++++++++ 2 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 libexec/makewhatis/OpenBSD/Makewhatis/Subject.pm (limited to 'libexec') 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 +# +# 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; -- cgit v1.2.3