summaryrefslogtreecommitdiffstats
path: root/man
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-11 19:15:23 +0100
committerLukc <lukc@upyum.com>2010-12-11 19:15:35 +0100
commit6d908a38e05b9d4135c65d23114a5874215b5bb8 (patch)
treeb5e6da6d95b9a1235d82032b509b80483a886ff5 /man
downloadbase-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.gz
base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.bz2
base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.xz
base-6d908a38e05b9d4135c65d23114a5874215b5bb8.zip
Engagement initial.
Diffstat (limited to 'man')
-rw-r--r--man/.footprint24
-rw-r--r--man/.md5sum2
-rw-r--r--man/Pkgfile18
-rw-r--r--man/Pkgfile.old22
-rwxr-xr-xman/makewhatis8
5 files changed, 74 insertions, 0 deletions
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