104 lines
3.2 KiB
Makefile
104 lines
3.2 KiB
Makefile
# $OpenBSD: Makefile,v 1.36 2001/04/18 12:24:24 naddy Exp $
|
|
|
|
COMMENT= "SMB and CIFS client and server for UNIX"
|
|
|
|
DISTNAME= samba-2.0.8
|
|
CATEGORIES= net
|
|
NEED_VERSION= 1.384
|
|
MASTER_SITES= ftp://ftp.samba.org/pub/samba/ \
|
|
http://us1.samba.org/samba/ftp/ \
|
|
ftp://ca.samba.org/pub/samba/ \
|
|
ftp://ftp.uni-trier.de/pub/unix/network/samba/ \
|
|
ftp://ring.asahi-net.or.jp/pub/net/samba/
|
|
|
|
HOMEPAGE= http://www.samba.org/
|
|
|
|
MAINTAINER= ports@openbsd.org
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
SEPARATE_BUILD= concurrent
|
|
CONFIGURE_STYLE= autoconf
|
|
CONFIGURE_ARGS= --libdir="${PREFIX}/lib/samba" \
|
|
--localstatedir="/var" \
|
|
--with-privatedir="${SYSCONFDIR}/samba" \
|
|
--with-lockdir="/var/spool/lock" \
|
|
--with-swatdir="${PREFIX}/swat"
|
|
|
|
FAKE_FLAGS= prefix="${WRKINST}${PREFIX}" \
|
|
LIBDIR="${WRKINST}${PREFIX}/lib/samba" \
|
|
SWATDIR="${WRKINST}${PREFIX}/swat"
|
|
|
|
# Warning: these aditional options have not been tested.
|
|
|
|
# uncomment these to add SSL support, note that this is only useful
|
|
# for connections with other samba clients, Windows machines do not
|
|
# support SSL encrypted SMB
|
|
#CONFIGURE_ARGS+= --with-ssl
|
|
#CONFIGURE_ARGS+= --with-sslinc=/usr/include/ssl
|
|
#CONFIGURE_ARGS+= --with-ssllib=/usr/lib
|
|
|
|
# uncomment this if you want to build the smbwrapper library
|
|
#CONFIGURE_ARGS+= --with-smbwrapper
|
|
|
|
# uncomment this if you want to include support for AFS
|
|
#CONFIGURE_ARGS+= --with-afs
|
|
|
|
# uncomment this if you want to include support for DFS
|
|
#CONFIGURE_ARGS+= --with-dfs
|
|
|
|
# uncomment this if you want support for Kerberos IV
|
|
#CONFIGURE_ARGS+= --with-krb4=/etc/kerberosIV
|
|
|
|
# uncomment this if you want support for Kerberos 5
|
|
#CONFIGURE_ARGS+= --with-krb5=base-dir
|
|
|
|
# uncomment this if you want LDAP support
|
|
#CONFIGURE_ARGS+= --with-ldap
|
|
|
|
# uncomment this if you want NISPLUS password database support
|
|
#CONFIGURE_ARGS+= --with-nisplus
|
|
|
|
# uncomment this if you want NISPLUS_HOME support
|
|
#CONFIGURE_ARGS+= --with-nisplus-home
|
|
|
|
WRKDIST= ${WRKDIR}/${DISTNAME}/source
|
|
|
|
SAMBA_SPOOL= /var/spool/samba
|
|
SAMBA_LOGDIR= /var/log
|
|
|
|
SAMBA_DOCS=${WRKSRC}/../README \
|
|
${WRKSRC}/../docs/THANKS \
|
|
${WRKSRC}/../docs/history \
|
|
${WRKSRC}/../docs/announce \
|
|
${WRKSRC}/../docs/*.reg
|
|
SAMPLE_CONFIG= ${PREFIX}/share/examples/samba/smb.conf.default
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/samba/faq
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/samba/textdocs
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/samba
|
|
@cp -r ${WRKSRC}/../examples/* ${PREFIX}/share/examples/samba
|
|
@chown -R root.bin ${PREFIX}/share/examples/samba
|
|
${INSTALL_DATA} ${FILESDIR}/README.OpenBSD ${PREFIX}/share/doc/samba
|
|
@for i in ${SAMBA_DOCS}; do \
|
|
${INSTALL_DATA} $$i ${PREFIX}/share/doc/samba ; \
|
|
done
|
|
@for i in ${WRKSRC}/../docs/faq/* ; do \
|
|
${INSTALL_DATA} $$i ${PREFIX}/share/doc/samba/faq ; \
|
|
done
|
|
@for i in ${WRKSRC}/../docs/textdocs/* ; do \
|
|
${INSTALL_DATA} $$i ${PREFIX}/share/doc/samba/textdocs ;\
|
|
done
|
|
@sed -e 's:/usr/spool/samba/:${SAMBA_SPOOL}:g' \
|
|
-e 's:/usr/local/samba/var/log:${SAMBA_LOGDIR}/smbd:g' \
|
|
${WRKSRC}/../examples/smb.conf.default > ${SAMPLE_CONFIG}
|
|
${INSTALL_SCRIPT} ${WRKSRC}/script/mksmbpasswd.sh ${PREFIX}/bin
|
|
@chown root.bin ${PREFIX}/bin/smbpasswd
|
|
@chmod 111 ${PREFIX}/bin/smbpasswd
|
|
|
|
.include <bsd.port.mk>
|