diff options
author | Lina Pezzella <j4rg0n@gentoo.org> | 2004-09-29 03:42:17 +0000 |
---|---|---|
committer | Lina Pezzella <j4rg0n@gentoo.org> | 2004-09-29 03:42:17 +0000 |
commit | b2cbe3a5d16e7dc3418724c9f855395ffac338c3 (patch) | |
tree | 99d29098c87021860a35ad2d239c46c24fde60e5 /sys-libs/readline | |
parent | added ~ppc64, bug #64243 (Manifest recommit) (diff) | |
download | gentoo-2-b2cbe3a5d16e7dc3418724c9f855395ffac338c3.tar.gz gentoo-2-b2cbe3a5d16e7dc3418724c9f855395ffac338c3.tar.bz2 gentoo-2-b2cbe3a5d16e7dc3418724c9f855395ffac338c3.zip |
Fixes collision with existing history(3) manpage on ppc-macos.
Diffstat (limited to 'sys-libs/readline')
-rw-r--r-- | sys-libs/readline/readline-4.3-r6.ebuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys-libs/readline/readline-4.3-r6.ebuild b/sys-libs/readline/readline-4.3-r6.ebuild index fe9e1852641d..f1fa07942804 100644 --- a/sys-libs/readline/readline-4.3-r6.ebuild +++ b/sys-libs/readline/readline-4.3-r6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/readline/readline-4.3-r6.ebuild,v 1.7 2004/09/16 02:28:09 pvdabeel Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/readline/readline-4.3-r6.ebuild,v 1.8 2004/09/29 03:42:17 j4rg0n Exp $ inherit eutils gnuconfig @@ -75,6 +75,12 @@ src_install() { fi fi + # history(3) is MacOS's manpage for editline. We can delete the file as below since we are keeping the .gz. man knows to show both. + if (use macos || use ppc-macos); then + rm ${D}/usr/share/man/man3/history.3 || die "Unable to remove conflicting manpage from the image." + einfo "Not installing /usr/share/man/man3/history.3 on MacOS" + fi + dodoc CHANGELOG CHANGES README USAGE docinto ps dodoc doc/*.ps |