diff options
Diffstat (limited to 'www/man2web/files')
3 files changed, 58 insertions, 0 deletions
diff --git a/www/man2web/files/patch-doc_man__sources_package__name.1.in b/www/man2web/files/patch-doc_man__sources_package__name.1.in new file mode 100644 index 000000000000..51fca53b0400 --- /dev/null +++ b/www/man2web/files/patch-doc_man__sources_package__name.1.in @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- doc/man_sources/package_name.1.in.orig Sat Apr 19 14:12:16 2003 ++++ doc/man_sources/package_name.1.in Sat Apr 19 14:13:07 2003 +@@ -215,7 +215,7 @@ + .IP "\fB@PACKAGE_NAME@ \-\-print\-config\fR > \fI@PACKAGE_NAME@.conf\fR" 4 + .IX Item "@PACKAGE_NAME@ --print-config > @PACKAGE_NAME@.conf" + This would print out the current configuration, saving it to +-\&\fI@PACKAGE_NAME.conf\fR. ++\&\fI@PACKAGE_NAME@.conf\fR. + .RE + .RS 4 + .RE diff --git a/www/man2web/files/patch-doc_man__sources_package__name__conf.5.in b/www/man2web/files/patch-doc_man__sources_package__name__conf.5.in new file mode 100644 index 000000000000..c9c9520279d6 --- /dev/null +++ b/www/man2web/files/patch-doc_man__sources_package__name__conf.5.in @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- doc/man_sources/package_name_conf.5.in.orig Sat Apr 19 14:18:37 2003 ++++ doc/man_sources/package_name_conf.5.in Sat Apr 19 14:19:06 2003 +@@ -152,7 +152,7 @@ + .IX Header "DESCRIPTION" + .RS 4 + \&\fI@PACKAGE_NAME@.conf\fR contains configuration directives for +-\&\fB@PACKAGE_NAME@\fR. It is usually located in \fI/usr/local/etc\fR. ++\&\fB@PACKAGE_NAME@\fR. It is usually located in \fI@sysconfdir@\fR. + .Sp + All directives are upper case, followed by whitespace, followed by the + value. If a directive is not specified in the file, the compile time default diff --git a/www/man2web/files/patch-src_cover__page.h b/www/man2web/files/patch-src_cover__page.h new file mode 100644 index 000000000000..e3e41eb7bf61 --- /dev/null +++ b/www/man2web/files/patch-src_cover__page.h @@ -0,0 +1,30 @@ + +$FreeBSD$ + +--- src/cover_page.h.orig Sat Apr 19 13:56:03 2003 ++++ src/cover_page.h Sat Apr 19 13:58:38 2003 +@@ -8,15 +8,16 @@ + char *find_section(struct section_entry **node, char *pseudo); + + /* default section entries that are used if configuration file is disabled*/ +-#define SECTION_COUNT 8 ++#define SECTION_COUNT 9 + struct section_entry section_matrix[] = { +- { "1", "1", "User Commands" }, +- { "2", "2", "System Calls" }, +- { "3", "3", "Library Functions" }, +- { "4", "4", "Device Drivers & Files" }, ++ { "1", "1", "General Commands (Tools and Utilities)" }, ++ { "2", "2", "System Calls and Error Numbers" }, ++ { "3", "3", "C Libraries" }, ++ { "4", "4", "Devices and Device Drivers" }, + { "5", "5", "File Formats" }, +- { "6", "6", "Games and Demos" }, +- { "7", "7", "Conventions & Miscellany" }, +- { "8", "8", "System Administration Commands" } ++ { "6", "6", "Games" }, ++ { "7", "7", "Miscellaneous Information Pages" }, ++ { "8", "8", "System Maintenance and Operation Commands" }, ++ { "9", "9", "Kernel Interfaces" } + }; + |