diff options
author | Donny Davies <woodchip@gentoo.org> | 2003-05-29 09:07:18 +0000 |
---|---|---|
committer | Donny Davies <woodchip@gentoo.org> | 2003-05-29 09:07:18 +0000 |
commit | 7651585c803e74cd31460e6da466ee19c8a0c8f4 (patch) | |
tree | 1e071859f4900ad863fc1e18fa5d6da981fa3113 /net-fs | |
parent | renamed (diff) | |
download | historical-7651585c803e74cd31460e6da466ee19c8a0c8f4.tar.gz historical-7651585c803e74cd31460e6da466ee19c8a0c8f4.tar.bz2 historical-7651585c803e74cd31460e6da466ee19c8a0c8f4.zip |
Try to workaround LDAP build problems.
Diffstat (limited to 'net-fs')
-rw-r--r-- | net-fs/samba/Manifest | 2 | ||||
-rw-r--r-- | net-fs/samba/samba-3.0_alpha24-r1.ebuild | 11 |
2 files changed, 11 insertions, 2 deletions
diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest index 42eaaa96b2d0..b6ee144fa301 100644 --- a/net-fs/samba/Manifest +++ b/net-fs/samba/Manifest @@ -1,6 +1,6 @@ MD5 b4f7c9e6b05c610bf52033ed430de265 samba-2.2.8.ebuild 10688 MD5 ffaa2e0509dbf5a45ca4e11c784e797a samba-2.2.8a.ebuild 10687 -MD5 6956de85f5c55a2e1961531ecbd883c7 samba-3.0_alpha24-r1.ebuild 10223 +MD5 2c510c360d7683331aa6b80013682e13 samba-3.0_alpha24-r1.ebuild 10223 MD5 46aef10a567ec3e66120a6e1c8bdc362 samba-3.0_alpha23.ebuild 9178 MD5 2ab0faba442e90d708515fc02c81cb5b ChangeLog 8355 MD5 033f952b5f3e9b41f652cc8c54b71740 samba-3.0_alpha22.ebuild 8922 diff --git a/net-fs/samba/samba-3.0_alpha24-r1.ebuild b/net-fs/samba/samba-3.0_alpha24-r1.ebuild index 9575aaf8cba8..1c2829d80a22 100644 --- a/net-fs/samba/samba-3.0_alpha24-r1.ebuild +++ b/net-fs/samba/samba-3.0_alpha24-r1.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/net-fs/samba/samba-3.0_alpha24-r1.ebuild,v 1.1 2003/05/29 03:28:36 woodchip Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/samba-3.0_alpha24-r1.ebuild,v 1.2 2003/05/29 09:07:12 woodchip Exp $ inherit eutils @@ -45,6 +45,15 @@ src_unpack() { find . -name CVS | xargs rm -rf cd source; epatch ${FILESDIR}/samba-pdb_ldap-exop.patch; cd .. + #HACK!! else get linker errors starting with vfstest + #and then the build will fail. not sure whats going on + #with this yet. + if use ldap || use kerberos; then + cd source; cp Makefile.in Makefile.in.orig + sed -e "s%^\(LIBS=.*\)%\1 -llber -lldap%" Makefile.in.orig >Makefile.in + cd .. + fi + # For clean docs packaging sake. rm -rf ${S}/examples.bin ; cp -a ${S}/examples ${S}/examples.bin |