diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2000-12-28 15:31:10 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2000-12-28 15:31:10 +0000 |
commit | 6919a82824d234c808d0b05b974c6748f4541ce1 (patch) | |
tree | 1d28a732d303fd743de415720a2f71359a7ea301 /net-fs | |
parent | *** empty log message *** (diff) | |
download | historical-6919a82824d234c808d0b05b974c6748f4541ce1.tar.gz historical-6919a82824d234c808d0b05b974c6748f4541ce1.tar.bz2 historical-6919a82824d234c808d0b05b974c6748f4541ce1.zip |
new fixes
Diffstat (limited to 'net-fs')
-rw-r--r-- | net-fs/samba/samba-2.0.7-r1.ebuild | 85 |
1 files changed, 44 insertions, 41 deletions
diff --git a/net-fs/samba/samba-2.0.7-r1.ebuild b/net-fs/samba/samba-2.0.7-r1.ebuild index 9359987fa33b..d98bb7c0a098 100644 --- a/net-fs/samba/samba-2.0.7-r1.ebuild +++ b/net-fs/samba/samba-2.0.7-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/samba-2.0.7-r1.ebuild,v 1.7 2000/11/01 04:44:19 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/samba-2.0.7-r1.ebuild,v 1.8 2000/12/28 15:31:10 drobbins Exp $ P=samba-2.0.7 A=${P}.tar.gz @@ -13,58 +13,61 @@ HOMEPAGE="http://www.samba.org" DEPEND=">=sys-apps/bash-2.04 >=sys-apps/gawk-3.0.6 >=sys-libs/glibc-2.1.3 - >=sys-libs/pam-0.72 - >=dev-libs/openssl-0.9.6" + >=sys-libs/pam-0.72" + +#ssl support removed -- it doesn't work... src_compile() { cd ${S}/source CFLAGS="$CFLAGS -I/usr/include/openssl" try ./configure --prefix=/usr \ --sysconfdir=/etc/smb --localstatedir=/var/log --libdir=/etc/smb --sbindir=/usr/sbin \ - --with-ssl --with-sslinc=/usr/include/openssl --with-automount \ + --with-automount \ --with-utmp --without-sambabook --with-netatalk \ --with-smbmount --with-pam --with-syslog \ - --with-privatedir=/etc/smb --with-lockdir=/var/lock --with-swatdir=/usr/share/swat + --with-privatedir=/etc/smb/private --with-lockdir=/var/lock --with-swatdir=/usr/share/swat try make } src_install() { - cd ${S}/source - dodir /usr - dodir /etc/smb - dodir /usr/share/swat - dodir /usr/doc/${P}/html/book - dodir /var/log - dodir /var/lock - try make install prefix=${D}/usr BASEDIR=${D}/usr LIBDIR=${D}/etc/smb VARDIR=${D}/var/log \ - PRIVATEDIR=${D}/etc/smb SWATDIR=${D}/usr/share/swat \ + cd ${S}/source + dodir /usr + dodir /etc/smb + dodir /usr/share/swat + dodir /usr/doc/${P}/html/book + dodir /var/log + dodir /var/lock + try make install prefix=${D}/usr BASEDIR=${D}/usr LIBDIR=${D}/etc/smb VARDIR=${D}/var/log \ + PRIVATEDIR=${D}/etc/smb/private SWATDIR=${D}/usr/share/swat \ LOCKDIR=${D}/var/lock SBINDIR=${D}/usr/sbin - prepman - - into /usr - cd ${S} - dodoc COPYING Manifest README README-smbmount Roadmap WHATSNEW.txt - cd ${S}/docs - dodoc announce history NT4-Locking.reg NT4-Locking.txt NT4_PlainPassword.reg - dodoc samba.lsm THANKS Win* - docinto html - dodoc htmldocs/*.html - docinto html/book - dodoc htmldocs/using_samba/*.html - docinto html/book/gifs - dodoc htmldocs/using_samba/gifs/* - docinto html/book/figs - dodoc htmldocs/using_samba/figs/* - docinto faq - dodoc faq/*.txt - docinto html/faq - dodoc faq/*.html - docinto textdocs - dodoc textdocs/* - cd ${S} - cp -a examples ${D}/usr/doc/${PF} - cp examples/smb.conf.default ${D}/etc/smb/smb.conf - dodir /etc/rc.d/init.d - cp ${O}/files/samba ${D}/etc/rc.d/init.d + prepman + + into /usr + cd ${S} + dodoc COPYING Manifest README README-smbmount Roadmap WHATSNEW.txt + cd ${S}/docs + dodoc announce history NT4-Locking.reg NT4-Locking.txt NT4_PlainPassword.reg + dodoc samba.lsm THANKS Win* + docinto html + dodoc htmldocs/*.html + docinto html/book + dodoc htmldocs/using_samba/*.html + docinto html/book/gifs + dodoc htmldocs/using_samba/gifs/* + docinto html/book/figs + dodoc htmldocs/using_samba/figs/* + docinto faq + dodoc faq/*.txt + docinto html/faq + dodoc faq/*.html + docinto textdocs + dodoc textdocs/* + cd ${S} + cp -a examples ${D}/usr/doc/${PF} + cp examples/smb.conf.default ${D}/etc/smb/smb.conf.example + dodir /etc/rc.d/init.d + cp ${O}/files/samba ${D}/etc/rc.d/init.d + diropts -m0700 + dodir /etc/smb/private } pkg_config() { |