diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-06-12 01:23:45 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-06-12 01:23:45 +0000 |
commit | 337603ccca4f01531ac85f5f32990182bcc9a969 (patch) | |
tree | dd110a5ed5a828156b80e3c4f69d0d4aaef095d9 /sys-apps/man-pages | |
parent | killed some old files and fixed a bug (diff) | |
download | gentoo-2-337603ccca4f01531ac85f5f32990182bcc9a969.tar.gz gentoo-2-337603ccca4f01531ac85f5f32990182bcc9a969.tar.bz2 gentoo-2-337603ccca4f01531ac85f5f32990182bcc9a969.zip |
version bump
Diffstat (limited to 'sys-apps/man-pages')
-rw-r--r-- | sys-apps/man-pages/man-pages-1.51.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/sys-apps/man-pages/man-pages-1.51.ebuild b/sys-apps/man-pages/man-pages-1.51.ebuild new file mode 100644 index 000000000000..3f87210acca8 --- /dev/null +++ b/sys-apps/man-pages/man-pages-1.51.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/man-pages-1.51.ebuild,v 1.1 2002/06/12 01:23:45 seemant Exp $ + +MY_PN=${PN/-/} +S=${WORKDIR}/${P} +DESCRIPTION="A somewhat comprehensive collection of Linux man pages" +SRC_URI="ftp://ftp.kernel.org/pub/linux/docs/${MY_PN}/${P}.tar.bz2" +HOMEPAGE="http://www.win.tue.nl/~aeb/linux/man/" +# Modern netman versions are part of the standard man-pages for Linux +# ftp://ftp.suse.com/pub/people/ak/netman/netman-20000610.tgz" + +RDEPEND="sys-apps/man" + + +src_unpack() { + + unpack ${P}.tar.bz2 + + cd ${S} + tar xzf ${FILESDIR}/man2.tar.gz +} + +src_install() { + +# for x in 1 2 3 4 5 6 7 8 +# do +# doman man$x/*.[1-9] +# done + einstall MANDIR=${D}/usr/share/man || die + dodoc man-pages-*.Announce README +} |