Hi all,
i'm have very little experienced on squid.

I would like to authenticate user and password of users in an Active
Directory based network (windows Server 2003) in order to assign
specific ACL to each of them. I do not nead to read group membership...

I founded on the internet this tutorial:

https://tiifp.org/quentin/squid.html

and i'm trying it on a 4.2 machine.

Kerberos configuration went smooth, without any problem. Them I
downloaded this patch:

https://www.tiifp.org/quentin/samba_winbind.patch

as stated in the howto for systems newer than 4.0 -current. I patched
samba makefile, but when I run make I got this error:

# env FLAVOR=winbind make install
"Makefile", line 107: Need an operator
Fatal errors encountered -- cannot continue

The lines generating this error are:

.if ${FLAVOR:L:Mwinbind}
post-extract:
        @cp ${FILESDIR}/krb5-config ${WRKDIR}/bin
        @chmod a+x ${WRKDIR}/bin/krb5-config
%%winbind%%
.endif

specifically the %%winbind%%.
I pasted right below the complete patched makefile.

Am I following the right procedure? Is there any other alternative? I
found out many tutorial about this but they are all for linux...

Thanks to all.

Ciao, Luca.




# $OpenBSD: Makefile,v 1.85 2007/07/02 21:56:57 mbalmer Exp $

COMMENT-main=   "SMB and CIFS client and server for UNIX"
COMMENT-docs=   "documentation and examples for samba"

DISTNAME=               samba-3.0.25b
PKGNAME-main=           ${DISTNAME}
FULLPKGNAME-docs=       ${DISTNAME:S/-/-docs-/}
SHARED_LIBS=            smbclient       1.0 \
                        msrpc           1.0

CATEGORIES=     net

HOMEPAGE=       http://www.samba.org/

MAINTAINER=     Marc Balmer <[EMAIL PROTECTED]>

# GPL
PERMIT_PACKAGE_CDROM=   Yes
PERMIT_PACKAGE_FTP=     Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP=   Yes

WANTLIB=        c ncurses readline

MASTER_SITES=   http://download.samba.org/samba/ftp/ \
                http://us2.samba.org/samba/ftp/ \
                http://us2.samba.org/samba/ftp/old-versions/

MODULES=        converters/libiconv

LIB_DEPENDS=    popt::devel/popt

MAKE_FLAGS=     PASSWD_PROGRAM="/usr/bin/passwd" \
                LIBsmbclient_VERSION=${LIBsmbclient_VERSION} \
                LIBmsrpc_VERSION=${LIBmsrpc_VERSION}
FAKE_FLAGS=     DESTDIR="${DESTDIR}" \
                LIBsmbclient_VERSION=${LIBsmbclient_VERSION} \
                LIBmsrpc_VERSION=${LIBmsrpc_VERSION}

CONFDIR=        ${SYSCONFDIR}/samba
SAMBA_LOGDIR=   /var/log
SUBST_VARS=     CONFDIR LOCALBASE SYSCONFDIR

SEPARATE_BUILD= concurrent
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS= --localstatedir="/var" \
                --sbindir="${PREFIX}/libexec" \
                --with-configdir="${CONFDIR}" \
                --with-libdir="${PREFIX}/lib/samba" \
                --with-lockdir="/var/spool/samba" \
                --with-piddir="/var/run" \
                --with-logfilebase="${SAMBA_LOGDIR}" \
                --with-privatedir="${CONFDIR}" \
                --with-libsmbclient \
                --with-swatdir="${PREFIX}/share/swat" \
                --with-ssl \
                --with-sslinc="/usr/include/ssl" \
                --with-ssllib="/usr/lib" \
                --with-syslog \
                --with-utmp

CONFIGURE_ENV=  CPPFLAGS="-I${LOCALBASE}/include" \
                LDFLAGS="-L${LOCALBASE}/lib -Wl,--export-dynamic"

FLAVORS=        cups ldap winbind
FLAVOR?=

MULTI_PACKAGES= -main -docs

.if ${FLAVOR:L:Mcups}
CONFIGURE_ARGS+= --enable-cups
LIB_DEPENDS+=   cups::print/cups
WANTLIB+=       ssl crypto m pthread z
.else
CONFIGURE_ARGS+= --disable-cups
.endif

.if ${FLAVOR:L:Mldap}
CONFIGURE_ARGS+= --with-ldap --without-ads
LIB_DEPENDS+=   ldap,lber::databases/openldap
BUILD_DEPENDS+= ::misc/libutf8
.else
CONFIGURE_ARGS+= --without-ldap --without-ads .endif

PKG_ARCH-docs=  *
LIB_DEPENDS-docs=
WANTLIB-docs=
RUN_DEPENDS-docs=

NO_REGRESS=     Yes

WRKDIST=        ${WRKDIR}/${DISTNAME}/source

SAMBA_DOCS=${WRKSRC}/../README \
        ${WRKSRC}/../docs/THANKS \
        ${WRKSRC}/../docs/history \
        ${WRKSRC}/../docs/registry/*.reg

SAMPLE_CONFIG=  ${PREFIX}/share/examples/samba/smb.conf.default

.if ${FLAVOR:L:Mwinbind}
post-extract:
        @cp ${FILESDIR}/krb5-config ${WRKDIR}/bin
        @chmod a+x ${WRKDIR}/bin/krb5-config
%%winbind%%
.endif

pre-configure:
        @perl -pi -e 's,!!SYSCONFDIR!!,${SYSCONFDIR},g;' \
                -e 's,!!LOCALBASE!!,${LOCALBASE},g' \
                ${WRKSRC}/../docs/manpages/swat.8

post-install:
        ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/samba/pdf
        ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/samba/htmldocs
        ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/samba
        @cp -R ${WRKSRC}/../examples/* ${PREFIX}/share/examples/samba
        @chown -R ${SHAREOWN}:${SHAREGRP} ${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/*.pdf ; do \
         ${INSTALL_DATA} $$i ${PREFIX}/share/doc/samba/pdf ; \
        done
        @for i in ${WRKSRC}/../docs/htmldocs/* ; do \
         if [ -f $$i ]; then \
          ${INSTALL_DATA} $$i ${PREFIX}/share/doc/samba/htmldocs ;\
         fi \
        done
        @sed -e 's:/usr/spool/samba:/var/spool/samba: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/mksmbpasswd
        @chown ${BINOWN}:${BINGRP} ${PREFIX}/bin/smbpasswd
        @ln -s samba/libsmbclient.so.${LIBsmbclient_VERSION} \
         ${PREFIX}/lib/libsmbclient.so.${LIBsmbclient_VERSION}
        @ln -s samba/libmsrpc.so.${LIBmsrpc_VERSION} \
         ${PREFIX}/lib/libmsrpc.so.${LIBmsrpc_VERSION}
        @rmdir ${WRKINST}${SYSCONFDIR}/samba
        @rmdir ${WRKINST}/var/spool/samba

.include <bsd.port.mk>

Reply via email to