diff options
author | 2005-03-17 02:50:26 +0000 | |
---|---|---|
committer | 2005-03-17 02:50:26 +0000 | |
commit | c49ee8e2d9589795cba570a81da8e724617901f6 (patch) | |
tree | 47d46d104617000c87c2451054bd53941921a623 /sys-apps/man-pages | |
parent | Marked stable on amd64. (diff) | |
download | gentoo-2-c49ee8e2d9589795cba570a81da8e724617901f6.tar.gz gentoo-2-c49ee8e2d9589795cba570a81da8e724617901f6.tar.bz2 gentoo-2-c49ee8e2d9589795cba570a81da8e724617901f6.zip |
misc fixes round() #75221 epoll_wait() #58424 ln/readlink #81949
(Portage version: 2.0.51.19)
Diffstat (limited to 'sys-apps/man-pages')
-rw-r--r-- | sys-apps/man-pages/files/man-pages-2.01-updates.patch | 51 | ||||
-rw-r--r-- | sys-apps/man-pages/man-pages-2.01.ebuild | 12 |
2 files changed, 61 insertions, 2 deletions
diff --git a/sys-apps/man-pages/files/man-pages-2.01-updates.patch b/sys-apps/man-pages/files/man-pages-2.01-updates.patch new file mode 100644 index 000000000000..3abe47db36d5 --- /dev/null +++ b/sys-apps/man-pages/files/man-pages-2.01-updates.patch @@ -0,0 +1,51 @@ +Misc corrections/updates/etc... + +round.3 http://bugs.gentoo.org/show_bug.cgi?id=75221 + +epoll_wait.2 http://bugs.gentoo.org/show_bug.cgi?id=58424 + +ln.1 http://bugs.gentoo.org/show_bug.cgi?id=81949 +readlink.2 http://bugs.gentoo.org/show_bug.cgi?id=81949 + +--- man3/round.3 ++++ man3/round.3 +@@ -25,6 +25,8 @@ + round, roundf, roundl \- round to nearest integer, away from zero + .SH SYNOPSIS + .nf ++.B #define _GNU_SOURCE ++.br + .B #include <math.h> + .sp + .BI "double round(double " x ); +--- man2/epoll_wait.2 ++++ man2/epoll_wait.2 +@@ -96,6 +96,9 @@ + .I epfd + is not a valid file descriptor. + .TP ++.B EINTR ++A signal occured before any requested events. ++.TP + .B EFAULT + The memory area pointed to by + .I events +--- man1/ln.1 ++++ man1/ln.1 +@@ -218,6 +218,7 @@ + .BR link (2), + .BR lstat (2), + .BR open (2), ++.BR readlink (1), + .BR readlink (2), + .BR stat (2), + .BR unlink (2) +--- man2/readlink.2 ++++ man2/readlink.2 +@@ -105,5 +105,6 @@ + .SH "SEE ALSO" + .BR lstat (2), + .BR path_resolution (2), ++.BR readlink (1), + .BR stat (2), + .BR symlink (2) diff --git a/sys-apps/man-pages/man-pages-2.01.ebuild b/sys-apps/man-pages/man-pages-2.01.ebuild index 292cb6aa628d..602dea8143cc 100644 --- a/sys-apps/man-pages/man-pages-2.01.ebuild +++ b/sys-apps/man-pages/man-pages-2.01.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/man-pages-2.01.ebuild,v 1.2 2005/01/29 06:35:42 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/man-pages-2.01.ebuild,v 1.3 2005/03/17 02:50:26 vapier Exp $ + +inherit eutils DESCRIPTION="A somewhat comprehensive collection of Linux man pages" HOMEPAGE="http://www.win.tue.nl/~aeb/linux/man/" @@ -8,11 +10,17 @@ SRC_URI="mirror://kernel/linux/docs/manpages/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sh sparc x86" +KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86" IUSE="" RDEPEND="sys-apps/man" +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-updates.patch +} + src_compile() { :; } src_install() { |