diff options
author | naddy <naddy@FreeBSD.org> | 2003-04-29 01:58:18 +0800 |
---|---|---|
committer | naddy <naddy@FreeBSD.org> | 2003-04-29 01:58:18 +0800 |
commit | 67395ca142086dcb45e8ac3d3d66cc1fcbd30572 (patch) | |
tree | bf9cbb23dfc09f305bc113ceddd239f2d9e464da /www/man2web/files | |
parent | 2cc69728974d0ca218de0ca4e429746cef4980f1 (diff) | |
download | freebsd-ports-gnome-67395ca142086dcb45e8ac3d3d66cc1fcbd30572.tar.gz freebsd-ports-gnome-67395ca142086dcb45e8ac3d3d66cc1fcbd30572.tar.zst freebsd-ports-gnome-67395ca142086dcb45e8ac3d3d66cc1fcbd30572.zip |
Maintenance update to 0.88.
Diffstat (limited to 'www/man2web/files')
-rw-r--r-- | www/man2web/files/freebsd.h | 16 | ||||
-rw-r--r-- | www/man2web/files/patch-configure | 26 | ||||
-rw-r--r-- | www/man2web/files/patch-src_cover__page.h | 30 |
3 files changed, 42 insertions, 30 deletions
diff --git a/www/man2web/files/freebsd.h b/www/man2web/files/freebsd.h new file mode 100644 index 000000000000..37f8684bb06f --- /dev/null +++ b/www/man2web/files/freebsd.h @@ -0,0 +1,16 @@ +/* $FreeBSD$ */ + +/* default section entries that are used if configuration file is disabled*/ +#define SECTION_COUNT 9 +struct section_entry section_matrix[] = { + { "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" }, + { "7", "7", "Miscellaneous Information Pages" }, + { "8", "8", "System Maintenance and Operation Commands" }, + { "9", "9", "Kernel Interfaces" } +}; + diff --git a/www/man2web/files/patch-configure b/www/man2web/files/patch-configure new file mode 100644 index 000000000000..2a97781accd8 --- /dev/null +++ b/www/man2web/files/patch-configure @@ -0,0 +1,26 @@ + +$FreeBSD$ + +--- configure.orig Mon Apr 28 03:07:10 2003 ++++ configure Mon Apr 28 16:41:10 2003 +@@ -4593,6 +4593,20 @@ + distro=debian-3 + ;; + ++ freebsd) ++ if test x$section_switch = x ++ then ++ section_switch="-S" ++ fi ++ ++ if test x$manpath_switch = x ++ then ++ manpath_switch="-M" ++ fi ++ ++ distro=freebsd ++ ;; ++ + *) + distro=generic + ;; diff --git a/www/man2web/files/patch-src_cover__page.h b/www/man2web/files/patch-src_cover__page.h deleted file mode 100644 index e3e41eb7bf61..000000000000 --- a/www/man2web/files/patch-src_cover__page.h +++ /dev/null @@ -1,30 +0,0 @@ - -$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" } - }; - |