From 6d908a38e05b9d4135c65d23114a5874215b5bb8 Mon Sep 17 00:00:00 2001 From: Lukc Date: Sat, 11 Dec 2010 19:15:23 +0100 Subject: Engagement initial. --- man/.footprint | 24 ++++++++++++++++++++++++ man/.md5sum | 2 ++ man/Pkgfile | 18 ++++++++++++++++++ man/Pkgfile.old | 22 ++++++++++++++++++++++ man/makewhatis | 8 ++++++++ 5 files changed, 74 insertions(+) create mode 100644 man/.footprint create mode 100644 man/.md5sum create mode 100644 man/Pkgfile create mode 100644 man/Pkgfile.old create mode 100755 man/makewhatis (limited to 'man') diff --git a/man/.footprint b/man/.footprint new file mode 100644 index 0000000..1d5691a --- /dev/null +++ b/man/.footprint @@ -0,0 +1,24 @@ +drwxr-xr-x root/root etc/ +drwxr-xr-x root/root etc/cron/ +drwxr-xr-x root/root etc/cron/daily/ +-rwxr-xr-x root/root etc/cron/daily/makewhatis +-rw-r--r-- root/root etc/man.conf +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/apropos +-rwxr-xr-x root/root usr/bin/man +-rwxr-xr-x root/root usr/bin/man2dvi +-rwxr-xr-x root/root usr/bin/man2html +-rwxr-xr-x root/root usr/bin/whatis +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/apropos.1.gz +-rw-r--r-- root/root usr/man/man1/man.1.gz +-rw-r--r-- root/root usr/man/man1/man2html.1.gz +-rw-r--r-- root/root usr/man/man1/whatis.1.gz +drwxr-xr-x root/root usr/man/man5/ +-rw-r--r-- root/root usr/man/man5/man.conf.5.gz +drwxr-xr-x root/root usr/man/man8/ +-rw-r--r-- root/root usr/man/man8/makewhatis.8.gz +drwxr-xr-x root/root usr/sbin/ +-rwxr-xr-- root/root usr/sbin/makewhatis diff --git a/man/.md5sum b/man/.md5sum new file mode 100644 index 0000000..85d4fc4 --- /dev/null +++ b/man/.md5sum @@ -0,0 +1,2 @@ +a5617e86e5fb22dc38e40e1cd5ef00a4 makewhatis +67aaaa6df35215e812fd7d89472c44b6 man-1.6f.tar.gz diff --git a/man/Pkgfile b/man/Pkgfile new file mode 100644 index 0000000..95a8c30 --- /dev/null +++ b/man/Pkgfile @@ -0,0 +1,18 @@ +description="The man page suite used to read most of the documentation for Linux" +packager="" +maintainer="CRUX System Team, core-ports at crux dot nu" +url="http://primates.ximian.com/~flucifredi/man/" +depends=() + +name=man +version=1.6f +release=1 +source=(http://www.ibiblio.org/pub/Linux/apps/doctools/man/man-1.6f.tar.gz makewhatis) +build () +{ + cd $name-$version; + ./configure -prefix=/usr -confdir=/etc -mandir=/usr/man -compatibility_mode_for_colored_groff +lang none -default; + make; + make PREFIX=$PKG install; + install -D -m 755 $SRC/makewhatis $PKG/etc/cron/daily/makewhatis +} diff --git a/man/Pkgfile.old b/man/Pkgfile.old new file mode 100644 index 0000000..446455a --- /dev/null +++ b/man/Pkgfile.old @@ -0,0 +1,22 @@ +# Description: The man page suite used to read most of the documentation for Linux +# URL: http://primates.ximian.com/~flucifredi/man/ +# Maintainer: CRUX System Team, core-ports at crux dot nu + +name=man +version=1.6f +release=1 +source=(http://www.ibiblio.org/pub/Linux/apps/doctools/man/$name-$version.tar.gz \ + makewhatis) + +build() { + cd $name-$version + ./configure -prefix=/usr \ + -confdir=/etc \ + -mandir=/usr/man \ + -compatibility_mode_for_colored_groff \ + +lang none \ + -default + make + make PREFIX=$PKG install + install -D -m 755 $SRC/makewhatis $PKG/etc/cron/daily/makewhatis +} diff --git a/man/makewhatis b/man/makewhatis new file mode 100755 index 0000000..a59432c --- /dev/null +++ b/man/makewhatis @@ -0,0 +1,8 @@ +#!/bin/sh +# +# /etc/cron/daily/makewhatis: update the whatis database +# + +/usr/sbin/makewhatis -w + +# End of file -- cgit v1.2.3-54-g00ecf