summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThilo Bangert <bangert@gentoo.org>2002-04-24 17:21:24 +0000
committerThilo Bangert <bangert@gentoo.org>2002-04-24 17:21:24 +0000
commite737d01ada0e57659bb63eb6c9f2dc29499bcaaa (patch)
tree41d2e476df247d9d79d1e87f2679e67a4f8aebce /sys-apps/man
parentnew esound version (diff)
downloadhistorical-e737d01ada0e57659bb63eb6c9f2dc29499bcaaa.tar.gz
historical-e737d01ada0e57659bb63eb6c9f2dc29499bcaaa.tar.bz2
historical-e737d01ada0e57659bb63eb6c9f2dc29499bcaaa.zip
close bug #61 (yeah) - add a makewhatis.cron
Diffstat (limited to 'sys-apps/man')
-rw-r--r--sys-apps/man/ChangeLog7
-rw-r--r--sys-apps/man/files/makewhatis.cron10
-rw-r--r--sys-apps/man/man-1.5i-r3.ebuild7
3 files changed, 22 insertions, 2 deletions
diff --git a/sys-apps/man/ChangeLog b/sys-apps/man/ChangeLog
index c29d600558e6..b1408931bc26 100644
--- a/sys-apps/man/ChangeLog
+++ b/sys-apps/man/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-apps/man
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/man/ChangeLog,v 1.2 2002/04/15 20:52:27 jhhudso Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/man/ChangeLog,v 1.3 2002/04/24 17:21:24 bangert Exp $
+
+ 24 Apr 2002; t.bangert <bangert@gentoo.org> :
+
+ added makewhatis.cron and cronbase dependancy
+
*man-1.5i-r3 (15 Apr 2002)
diff --git a/sys-apps/man/files/makewhatis.cron b/sys-apps/man/files/makewhatis.cron
new file mode 100644
index 000000000000..38a576829cd9
--- /dev/null
+++ b/sys-apps/man/files/makewhatis.cron
@@ -0,0 +1,10 @@
+#!/bin/sh
+#
+# Uncomment the following if you want
+# your whatis database rebuilt regularly
+#
+# this is part of the man package
+#
+#
+
+#/usr/sbin/makewhatis
diff --git a/sys-apps/man/man-1.5i-r3.ebuild b/sys-apps/man/man-1.5i-r3.ebuild
index 8e82b7d02127..ee527985c94b 100644
--- a/sys-apps/man/man-1.5i-r3.ebuild
+++ b/sys-apps/man/man-1.5i-r3.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-r3.ebuild,v 1.1 2002/04/15 20:52:27 jhhudso Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/man/man-1.5i-r3.ebuild,v 1.2 2002/04/24 17:21:24 bangert Exp $
NV=1.5i2
S=${WORKDIR}/${PN}-${NV}
@@ -11,6 +11,7 @@ SRC_URI="http://www.kernel.org/pub/linux/utils/man/man-${NV}.tar.gz"
DEPEND="virtual/glibc"
RDEPEND="virtual/glibc
+ sys-apps/cronbase
sys-apps/groff"
src_unpack() {
@@ -60,6 +61,10 @@ src_install() {
cd ${S}
doins src/man.conf
dodoc COPYING LSM README* TODO
+
+ exeinto /etc/cron.daily
+ doexe ${FILESDIR}/makewhatis.cron
+
}