summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Ostorga <vostorga@gentoo.org>2009-09-15 01:45:03 +0000
committerVictor Ostorga <vostorga@gentoo.org>2009-09-15 01:45:03 +0000
commit71fcce36a1f8320214a96f1526110341e5872b78 (patch)
tree711de9e497bae297db69d21663523aae07a86274 /net-fs/samba-client
parentstable on ppc64, #bug #284062 (diff)
downloadgentoo-2-71fcce36a1f8320214a96f1526110341e5872b78.tar.gz
gentoo-2-71fcce36a1f8320214a96f1526110341e5872b78.tar.bz2
gentoo-2-71fcce36a1f8320214a96f1526110341e5872b78.zip
Fixing missing dohtml and doman. Patch thanks to Jonathan Callen <abcd@gentoo.org> bug 283454
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'net-fs/samba-client')
-rw-r--r--net-fs/samba-client/ChangeLog6
-rw-r--r--net-fs/samba-client/samba-client-3.3.7.ebuild18
2 files changed, 14 insertions, 10 deletions
diff --git a/net-fs/samba-client/ChangeLog b/net-fs/samba-client/ChangeLog
index 1faa1a2e9d6d..dc49a8404282 100644
--- a/net-fs/samba-client/ChangeLog
+++ b/net-fs/samba-client/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-fs/samba-client
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/samba-client/ChangeLog,v 1.4 2009/09/07 23:18:22 vostorga Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/samba-client/ChangeLog,v 1.5 2009/09/15 01:45:03 vostorga Exp $
+
+ 15 Sep 2009; Víctor Ostorga <vostorga@gentoo.org> samba-client-3.3.7.ebuild:
+ Fixing missing dohtml and doman. Patch thanks to Jonathan Callen
+ <abcd@gentoo.org> bug 283454
07 Sep 2009; Víctor Ostorga <vostorga@gentoo.org>
samba-client-3.3.7.ebuild:
diff --git a/net-fs/samba-client/samba-client-3.3.7.ebuild b/net-fs/samba-client/samba-client-3.3.7.ebuild
index 6aa91640d389..a314bcc5fa01 100644
--- a/net-fs/samba-client/samba-client-3.3.7.ebuild
+++ b/net-fs/samba-client/samba-client-3.3.7.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/samba-client/samba-client-3.3.7.ebuild,v 1.2 2009/09/07 23:18:22 vostorga Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/samba-client/samba-client-3.3.7.ebuild,v 1.3 2009/09/15 01:45:03 vostorga Exp $
EAPI="2"
@@ -170,27 +170,27 @@ src_compile() {
src_install() {
into /
dosbin bin/mount.cifs bin/umount.cifs || die "u/mount.cifs not around"
- doman ../docs/manpages/{u,}mount.cifs.8
- dohtml ../docs/htmldocs/manpages/{u,}mount.cifs.8.html
+ doman ../docs/manpages/{u,}mount.cifs.8 || die "can't create man pages"
+ dohtml ../docs/htmldocs/manpages/{u,}mount.cifs.8.html || die "dohtml failed"
into /usr
if use ads ; then
dosbin bin/cifs.upcall || die "cifs.upcall not around"
- doman ../docs/manpages/cifs.upcall.8
- doman ../docs/htmldocs/cifs.upcall.8.html
+ doman ../docs/manpages/cifs.upcall.8 || die "doman failed"
+ dohtml ../docs/htmldocs/manpages/cifs.upcall.8.html || die "doman failed"
fi
if ! use minimal ; then
dobin ${BINPROGS} || die "not all bins around"
for prog in ${BINPROGS} ; do
- doman ../docs/manpages/${prog/bin\/}*
- dohtml ../docs/htmldocs/${prog/bin\/}*.html
+ doman ../docs/manpages/${prog/bin\/}* || die "doman failed"
+ dohtml ../docs/htmldocs/manpages/${prog/bin\/}*.html || die "dohtml failed"
done
if use cups ; then
dobin bin/smbspool || die "smbspool not around"
- doman ../docs/manpages/smbspool.8
- dohtml ../docs/htmldocs/smbspool.8.html
+ doman ../docs/manpages/smbspool.8 || die "doman failed"
+ dohtml ../docs/htmldocs/manpages/smbspool.8.html || die "dohtml failed"
dosym /usr/bin/smbspool $(cups-config --serverbin)/backend/smb
fi
fi