summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Robbins <drobbins@gentoo.org>2002-01-26 05:28:10 +0000
committerDaniel Robbins <drobbins@gentoo.org>2002-01-26 05:28:10 +0000
commit14a9fe11ec53c1d2e3f3ad39faf9ec4d2b550dd8 (patch)
tree2f5cae3a9351b1d5715c9f820c8a20568b229be0 /sys-apps/man
parentpostfix version change (diff)
downloadgentoo-2-14a9fe11ec53c1d2e3f3ad39faf9ec4d2b550dd8.tar.gz
gentoo-2-14a9fe11ec53c1d2e3f3ad39faf9ec4d2b550dd8.tar.bz2
gentoo-2-14a9fe11ec53c1d2e3f3ad39faf9ec4d2b550dd8.zip
fixing bug #125
Diffstat (limited to 'sys-apps/man')
-rw-r--r--sys-apps/man/files/man.conf2
-rw-r--r--sys-apps/man/man-1.5i-r2.ebuild (renamed from sys-apps/man/man-1.5i-r1.ebuild)2
-rw-r--r--sys-apps/man/man-1.5i.ebuild68
3 files changed, 2 insertions, 70 deletions
diff --git a/sys-apps/man/files/man.conf b/sys-apps/man/files/man.conf
index 98fa5df46cba..c93d135913ce 100644
--- a/sys-apps/man/files/man.conf
+++ b/sys-apps/man/files/man.conf
@@ -80,7 +80,7 @@ REFER
PIC
VGRIND
GRAP
-PAGER
+PAGER /usr/bin/less -is
CAT
#
# The command "man -a xyzzy" will show all man pages for xyzzy.
diff --git a/sys-apps/man/man-1.5i-r1.ebuild b/sys-apps/man/man-1.5i-r2.ebuild
index 33f71d1de8bf..f334d2690e80 100644
--- a/sys-apps/man/man-1.5i-r1.ebuild
+++ b/sys-apps/man/man-1.5i-r2.ebuild
@@ -1,7 +1,7 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: Daniel Robbins <drobbins@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/man/man-1.5i-r1.ebuild,v 1.6 2002/01/17 18:44:57 azarah Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/man/man-1.5i-r2.ebuild,v 1.1 2002/01/26 05:28:10 drobbins Exp $
NV=1.5i2
S=${WORKDIR}/${PN}-${NV}
diff --git a/sys-apps/man/man-1.5i.ebuild b/sys-apps/man/man-1.5i.ebuild
deleted file mode 100644
index 115b6bd3c578..000000000000
--- a/sys-apps/man/man-1.5i.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2000 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Author Daniel Robbins <drobbins@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/man/man-1.5i.ebuild,v 1.2 2001/05/16 14:16:48 achim Exp $
-
-P=man-1.5i
-A=${P}.tar.gz
-S=${WORKDIR}/${P}
-DESCRIPTION="Standard commands to read man pages"
-SRC_URI="ftp://ftp.win.tue.nl/pub/linux-local/utils/man/${A}"
-
-DEPEND="virtual/glibc"
-RDEPEND="virtual/glibc
- sys-apps/groff"
-
-src_unpacks() {
- unpack ${A}
- cd ${S}
- cp configure configure.orig
- sed -e 's!/bin:/usr/bin:/usr/ucb:/usr/local/bin:$PATH!/bin /usr/bin /usr/ucb /usr/local/bin $PATH!' configure.orig > configure
-}
-
-src_compile() {
-
- try ./configure +sgid +fsstnd +lang all
- for FOOF in src man2html
- do
- try pmake ${FOOF}/Makefile MANCONFIG=/usr/share/misc/man.conf
- cd ${S}/${FOOF}
- cp Makefile Makefile.orig
- sed -e "s/gcc -O/gcc ${CFLAGS}/" Makefile.orig > Makefile
- cd ${S}
- done
- try make
-
-}
-
-
-src_install() {
-
- cd src
-
- exeopts -s -m 2555 -o root -g man
- exeinto /usr/bin
- doexe man
-
- dobin apropos whatis
- dosbin makewhatis
-
- insinto /usr/share/misc
-
- doins ${FILESDIR}/man.conf
-
- cd ${S}/man2html
- dobin man2html
- doman man2html.1
-
- cd ${S}/man
- cat Makefile >> Makefile.orig
- sed -e "s:usr/man:usr/share/man:" Makefile.orig > Makefile
- try make PREFIX=${D} installsubdirs
-
- cd ${S}
- dodoc COPYING LSM README* TODO
-
-}
-
-