diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-01-12 18:34:13 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-01-12 18:34:13 +0000 |
commit | 091cd90c429cbb5cdc79409a644337245f122cbb (patch) | |
tree | f47ed0f692111104e570df537702927d604e43d7 /sys-apps/man/files | |
parent | stabilize (Manifest recommit) (diff) | |
download | gentoo-2-091cd90c429cbb5cdc79409a644337245f122cbb.tar.gz gentoo-2-091cd90c429cbb5cdc79409a644337245f122cbb.tar.bz2 gentoo-2-091cd90c429cbb5cdc79409a644337245f122cbb.zip |
Version bump.
Diffstat (limited to 'sys-apps/man/files')
-rw-r--r-- | sys-apps/man/files/digest-man-1.5p | 1 | ||||
-rw-r--r-- | sys-apps/man/files/man-1.5p-defmanpath-symlinks.patch | 20 | ||||
-rw-r--r-- | sys-apps/man/files/man-1.5p-parallel-make.patch | 18 | ||||
-rw-r--r-- | sys-apps/man/files/man-1.5p-search-order.patch | 17 |
4 files changed, 56 insertions, 0 deletions
diff --git a/sys-apps/man/files/digest-man-1.5p b/sys-apps/man/files/digest-man-1.5p new file mode 100644 index 000000000000..a87e48b72e5e --- /dev/null +++ b/sys-apps/man/files/digest-man-1.5p @@ -0,0 +1 @@ +MD5 037d5644f8ef9ea0ef22b271bae0297d man-1.5p.tar.gz 233732 diff --git a/sys-apps/man/files/man-1.5p-defmanpath-symlinks.patch b/sys-apps/man/files/man-1.5p-defmanpath-symlinks.patch new file mode 100644 index 000000000000..277f7a91f67a --- /dev/null +++ b/sys-apps/man/files/man-1.5p-defmanpath-symlinks.patch @@ -0,0 +1,20 @@ +--- man-1.5o2/src/makewhatis.sh.orig 2005-01-07 21:19:37.812163552 -0500 ++++ man-1.5o2/src/makewhatis.sh 2005-01-07 21:20:43.023249960 -0500 +@@ -41,7 +41,7 @@ + # and should be first. + # It is a bug to add /var/cache/man to DEFCATPATH. + dm= +-for d in /usr/man /usr/share/man /usr/X11R6/man /usr/local/man ++for d in /usr/local/man /usr/share/man + do + if [ -d $d ]; then + if [ x$dm = x ]; then dm=$d; else dm=$dm:$d; fi +@@ -49,7 +49,7 @@ + done + DEFMANPATH=$dm + dc= +-for d in /usr/man/preformat /usr/man /usr/share/man/preformat /usr/share/man ++for d in /usr/local/man /usr/share/man + do + if [ -d $d ]; then + if [ x$dc = x ]; then dc=$d; else dc=$dc:$d; fi diff --git a/sys-apps/man/files/man-1.5p-parallel-make.patch b/sys-apps/man/files/man-1.5p-parallel-make.patch new file mode 100644 index 000000000000..22f15fd7eadc --- /dev/null +++ b/sys-apps/man/files/man-1.5p-parallel-make.patch @@ -0,0 +1,18 @@ +--- Makefile.in.orig 2005-01-12 10:59:10.934526728 -0500 ++++ Makefile.in 2005-01-12 11:01:22.765485376 -0500 +@@ -33,13 +33,13 @@ + source: src/Makefile + cd src; $(MAKE) + +-manhtml: man2html/Makefile ++manhtml: man2html/Makefile source + cd man2html; $(MAKE) + + manpages: man/Makefile + cd man; $(MAKE) subdirs + +-%messages: gencat/gencat msgs/Makefile ++%messages: gencat/gencat msgs/Makefile source + % cd msgs; $(MAKE) + + %gencat/gencat: diff --git a/sys-apps/man/files/man-1.5p-search-order.patch b/sys-apps/man/files/man-1.5p-search-order.patch new file mode 100644 index 000000000000..a3cbd1201d9d --- /dev/null +++ b/sys-apps/man/files/man-1.5p-search-order.patch @@ -0,0 +1,17 @@ +diff -Narup man-1.5p.orig/src/man.conf.in man-1.5p/src/man.conf.in +--- man-1.5p.orig/src/man.conf.in 2002-07-17 15:08:40.000000000 -0400 ++++ man-1.5p/src/man.conf.in 2002-12-19 09:04:28.000000000 -0500 +@@ -36,11 +36,11 @@ + # + # Every automatically generated MANPATH includes these fields + # +-MANPATH /usr/man + MANPATH /usr/share/man +-MANPATH /usr/local/man + MANPATH /usr/local/share/man + MANPATH /usr/X11R6/man ++MANPATH /usr/local/man ++MANPATH /usr/man + # + # Uncomment if you want to include one of these by default + # |