man-pages: update to 3.00

This commit is contained in:
Johannes Winkelmann 2008-06-19 17:13:20 +02:00
parent c5d1a220cb
commit b043f57981
2 changed files with 11 additions and 4 deletions

View File

@ -1 +1,2 @@
888f88a21844be81bb60326cea621eed man-pages-2.80.tar.gz e33a7c2e5ae9e5d3b3ed71568a740e30 man-pages-3.00.tar.bz2
7c78aff03c0a6767ba483d34f19e4b09 man-pages-posix-2003-a.tar.bz2

View File

@ -1,17 +1,23 @@
# Description: The Linux manpages collection # Description: The Linux manpages collection
# URL: http://www.win.tue.nl/~aeb/linux/man/ # URL: http://www.kernel.org/doc/man-pages/
# Maintainer: CRUX System Team, core-ports at crux dot nu # Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: man # Depends on: man
name=man-pages name=man-pages
version=2.80 version=3.00
release=1 release=1
source=(ftp://ftp.win.tue.nl/pub/linux-local/manpages/$name-$version.tar.gz) source=(http://www.kernel.org/pub/linux/docs/man-pages/$name-$version.tar.bz2 \
http://www.kernel.org/pub/linux/docs/man-pages/man-pages-posix/man-pages-posix-2003-a.tar.bz2)
build() { build() {
cd $name-$version cd $name-$version
rm man1/time.1 man5/passwd.5 man2/quotactl.2 rm man1/time.1 man5/passwd.5 man2/quotactl.2
make gz make gz
make MANDIR=/usr/man DESTDIR=$PKG install make MANDIR=/usr/man DESTDIR=$PKG install
cd ../$name-posix-2003-a
make gz
make MANDIR=/usr/man DESTDIR=$PKG install
touch $PKG/usr/man/whatis touch $PKG/usr/man/whatis
} }