diff options
author | Victor Ostorga <vostorga@gentoo.org> | 2010-05-24 21:56:45 +0000 |
---|---|---|
committer | Victor Ostorga <vostorga@gentoo.org> | 2010-05-24 21:56:45 +0000 |
commit | cd293b9462f0e6d5875a2a573cfc30399e5284e0 (patch) | |
tree | 21e6bbc2e64f921159e98c78cb222daf11447a3c /net-fs/samba/samba-3.5.3.ebuild | |
parent | Add REE18 support (diff) | |
download | historical-cd293b9462f0e6d5875a2a573cfc30399e5284e0.tar.gz historical-cd293b9462f0e6d5875a2a573cfc30399e5284e0.tar.bz2 historical-cd293b9462f0e6d5875a2a573cfc30399e5284e0.zip |
Fixing krbplugin install, and server examples location, bug #320953 , patch thanks to Honza Macháček <Hloupy.Honza@centrum.cz>
Package-Manager: portage-2.1.8.3/cvs/Linux i686
Diffstat (limited to 'net-fs/samba/samba-3.5.3.ebuild')
-rw-r--r-- | net-fs/samba/samba-3.5.3.ebuild | 40 |
1 files changed, 22 insertions, 18 deletions
diff --git a/net-fs/samba/samba-3.5.3.ebuild b/net-fs/samba/samba-3.5.3.ebuild index 5dcb775e3b4a..ab6d4a960b93 100644 --- a/net-fs/samba/samba-3.5.3.ebuild +++ b/net-fs/samba/samba-3.5.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/samba-3.5.3.ebuild,v 1.3 2010/05/21 17:31:08 vostorga Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/samba-3.5.3.ebuild,v 1.4 2010/05/24 21:56:45 vostorga Exp $ EAPI="2" @@ -285,19 +285,21 @@ src_install() { done # install krbplugin - if has_version app-crypt/mit-krb5 ; then - insinto /usr/$(get_libdir)/krb5/plugins/libkrb5 - doins ${KRBPLUGIN}${PLUGINEXT} || die "installing - ${KRBPLUGIN}${PLUGINEXT} failed" - elif has_version app-crypt/heimdal ; then - insinto /usr/$(get_libdir)/plugin/krb5 - doins ${KRBPLUGIN}${PLUGINEXT} || die "installing - ${KRBPLUGIN}${PLUGINEXT} failed" + if [ -n "${KRBPLUGIN}" ] ; then + if has_version app-crypt/mit-krb5 ; then + insinto /usr/$(get_libdir)/krb5/plugins/libkrb5 + doins ${KRBPLUGIN}${PLUGINEXT} || die "installing + ${KRBPLUGIN}${PLUGINEXT} failed" + elif has_version app-crypt/heimdal ; then + insinto /usr/$(get_libdir)/plugin/krb5 + doins ${KRBPLUGIN}${PLUGINEXT} || die "installing + ${KRBPLUGIN}${PLUGINEXT} failed" + fi + insinto /usr + for prog in ${KRBPLUGIN} ; do + doman ../docs/manpages/${prog/bin\/}* || die "doman failed" + done fi - insinto /usr - for prog in ${KRBPLUGIN} ; do - doman ../docs/manpages/${prog/bin\/}* || die "doman failed" - done # install server components if use server ; then @@ -344,7 +346,9 @@ src_install() { fi # install the spooler to cups - use cups && dosym /usr/bin/smbspool $(cups-config --serverbin)/backend/smb + if use cups ; then + dosym /usr/bin/smbspool $(cups-config --serverbin)/backend/smb + fi # install misc files insinto /etc/samba @@ -362,7 +366,6 @@ src_install() { # install examples if use examples ; then - einfo "install examples" insinto /usr/share/doc/${PF}/examples if use smbclient ; then @@ -374,9 +377,10 @@ src_install() { fi if use server ; then - doins -r \ - auth autofs dce-dfs LDAP logon misc pdb perfcounter \ - printer-accounting printing scripts tridge validchars VFS + cd ../examples + doins -r auth autofs dce-dfs LDAP logon misc pdb \ + perfcounter printer-accounting printing scripts tridge \ + validchars VFS fi fi |