diff options
author | hubertf <hubertf> | 2001-02-18 04:52:34 +0000 |
---|---|---|
committer | hubertf <hubertf> | 2001-02-18 04:52:34 +0000 |
commit | 7ab2658220fd83638f791636b0ddf1531e186d70 (patch) | |
tree | 1e69d12d8aa3490904a20b40ebd69141fc772460 /net/smb2www/Makefile | |
parent | 0c2343a9763e1bc2b584e8a2cb511d71788288be (diff) | |
download | pkgsrc-7ab2658220fd83638f791636b0ddf1531e186d70.tar.gz |
Add smb2www V980804:
SMB2WWW, the gateway to Windows networking, is a Windows Network client
that is accessible through a web browser. It is based on the samba
package.
Add this to your apache config:
Alias /smb2www/images @PREFIX@/libexec/smb2www/images
ScriptAlias /smb2www/ @PREFIX@/libexec/smb2www/cgi-bin/
AddHandler cgi-script .pl
You can access the gateway at the following URL:
http://localhost/smb2www/smb2www.pl
To make modifications to the smb2www setup, edit
@PREFIX@/libexec/smb2www/etc/smb2www.conf
Diffstat (limited to 'net/smb2www/Makefile')
-rw-r--r-- | net/smb2www/Makefile | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/net/smb2www/Makefile b/net/smb2www/Makefile new file mode 100644 index 00000000000..ac74466ee20 --- /dev/null +++ b/net/smb2www/Makefile @@ -0,0 +1,56 @@ +# $NetBSD: Makefile,v 1.1.1.1 2001/02/18 04:52:34 hubertf Exp $ +# + +DISTNAME= smb2www-980804 +CATEGORIES= net +MASTER_SITES= http://us1.samba.org/samba/smb2www/ \ + http://www.samba.org/samba/smb2www/ + +MAINTAINER= hubertf@netbsd.org +HOMEPAGE= http://www.samba.org/samba/smb2www/ +COMMENT= Gateway to Windows networking + +DEPENDS+= p5-MIME-Base64-*:../../converters/p5-MIME-Base64 +DEPENDS+= samba-[0-9]*:../../net/samba +DEPENDS+= perl-[0-9]*:../../lang/perl5 +DEPENDS+= apache{,6}-[0-9]*:../../www/apache + +NO_WRKSUBDIR= yes + +SMB2WWW_MASTER_BROWSER_SERVER?= # set for non-empty +APACHE_USER?= nobody +DESCR_SRC= ${WRKSRC}/.DESCRX +NO_BUILD= yes + +pre-install: + if [ -d ${PREFIX}/libexec/smb2www ]; then \ + ${ECHO} "" ; \ + ${ECHO} "----------------------------------------------" ; \ + ${ECHO} "Please remove ${PREFIX}/libexec/smb2www first!" ; \ + ${ECHO} "----------------------------------------------" ; \ + ${ECHO} "" ; \ + exit 1 ; \ + fi + +do-install: + cd ${WRKSRC} ; \ + ( \ + ${ECHO} "" ; \ + ${ECHO} "${APACHE_USER}" ; \ + ${ECHO} "nobody" ; \ + ${ECHO} "${PREFIX}/libexec/smb2www" ; \ + ${ECHO} "${LOCALBASE}/bin" ; \ + ${ECHO} "${LOCALBASE}/bin/perl" ; \ + ${ECHO} "${SMB2WWW_MASTER_BROWSER_SERVER}" ; \ + ${ECHO} "english" ; \ + ${ECHO} "/smb2www/images" ; \ + ${ECHO} "/smb2www" ; \ + ${ECHO} "${LOCALBASE}/etc/httpd" ; \ + ) | perl Install.pl + +post-install: + ${SED} \ + 's,@PREFIX@,${PREFIX},' \ + <${PKGDIR}/DESCR >${DESCR_SRC} + +.include "../../mk/bsd.pkg.mk" |