diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2003-03-11 05:10:15 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2003-03-11 05:10:15 +0000 |
commit | 9b4e6736ecb03de59530f9a301e65e1d285c6e28 (patch) | |
tree | 00c2b33f25966f31aafe70656224ce2be19bdabf /sys-apps | |
parent | fix invalid symlinks; fix not installing all manpages (diff) | |
download | historical-9b4e6736ecb03de59530f9a301e65e1d285c6e28.tar.gz historical-9b4e6736ecb03de59530f9a301e65e1d285c6e28.tar.bz2 historical-9b4e6736ecb03de59530f9a301e65e1d285c6e28.zip |
redo man fix
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/coreutils/ChangeLog | 4 | ||||
-rw-r--r-- | sys-apps/coreutils/coreutils-4.5.9.ebuild | 15 |
2 files changed, 13 insertions, 6 deletions
diff --git a/sys-apps/coreutils/ChangeLog b/sys-apps/coreutils/ChangeLog index 08dfaa906294..692f54bb584a 100644 --- a/sys-apps/coreutils/ChangeLog +++ b/sys-apps/coreutils/ChangeLog @@ -1,12 +1,14 @@ # ChangeLog for sys-apps/coreutils # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/coreutils/ChangeLog,v 1.2 2003/03/11 04:43:07 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/coreutils/ChangeLog,v 1.3 2003/03/11 05:10:15 azarah Exp $ 11 Mar 2003; Martin Schlemmer <azarah@gentoo.org> coreutils-4.5.9.ebuild : Move symlink stuff till after we remove stuff we do not use, else we have invalid symlinks. Change einstall to 'make DESTDIR=$D install', else it do not install all the manpages. + Fix manpages again by manually installing. + *coreutils-4.5.9 (06 Mar 2003) 06 Mar 2003; Seemant Kulleen <seemant@gentoo.org> coreutils-4.5.9.ebuild diff --git a/sys-apps/coreutils/coreutils-4.5.9.ebuild b/sys-apps/coreutils/coreutils-4.5.9.ebuild index d35bcdde29e1..61c1659d399f 100644 --- a/sys-apps/coreutils/coreutils-4.5.9.ebuild +++ b/sys-apps/coreutils/coreutils-4.5.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/coreutils/coreutils-4.5.9.ebuild,v 1.2 2003/03/11 04:43:07 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/coreutils/coreutils-4.5.9.ebuild,v 1.3 2003/03/11 05:10:15 azarah Exp $ inherit eutils @@ -51,10 +51,15 @@ src_compile() { } src_install() { -# Do not install all the manpages, etc -# einstall \ -# bindir=${D}/bin || die - make DESTDIR=${D} install || die + einstall \ + bindir=${D}/bin || die + + # Do manpages manually, as else it do not install them all + rm -rf ${D}/usr/share/man + for x in ${S}/man/*.1 + do + [ -f "${x}" ] && doman ${x} + done # hostname comes from net-base # hostname does not work with the -f switch, which breaks gnome2 |