55ae413eca
in the same manner as the network neighborhood in Microsoft Windows. Featuries: * you can use Samba/Microsoft network as a regular unix filesystem * workgroup/computer/share entries are dynamically created * windows domain supported * kerberos support (New) * user defined workgroup/link/hosts are supported * national character supported * in config files you can specify different user/password to access different network shares * you can access any computer in the world by "cd mountpoint/ip-addr" command, where "ip-addr" is the IP address of the desired computer. Do not warry that there is no file with such name :-) * command "cd mountpoint/username:password@computer_or_ip" allows you to access "computer_or_ip" as user "username" with password "password" (this is insecure, but usefull) WWW: http://sourceforge.net/projects/smbnetfs PR: ports/101451 Submitted by: Denis Barov <dindin@freebsd.org.ua>
38 lines
971 B
Makefile
38 lines
971 B
Makefile
# New ports collection makefile for: smbnetfs
|
|
# Date created: 06 August 2006
|
|
# Whom: Denis Barov
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= smbnetfs
|
|
PORTVERSION= 0.3.6
|
|
CATEGORIES= sysutils net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
PKGNAMEPREFIX= fusefs-
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= dindin@freebsd.org.ua
|
|
COMMENT= Mount smb shares (Fuse filesystem)
|
|
|
|
LIB_DEPENDS= fuse.2:${PORTSDIR}/sysutils/fusefs-libs \
|
|
smbclient.0:${PORTSDIR}/net/samba-libsmbclient
|
|
RUN_DEPENDS= ${LOCALBASE}/modules/fuse.ko:${PORTSDIR}/sysutils/fusefs-kmod
|
|
BUILD_DEPENDS= fusefs-libs>2.4.1:${PORTSDIR}/sysutils/fusefs-libs
|
|
|
|
USE_BZIP2= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV+= CFLAGS="${CFLAGS} ${PTHREAD_CFLAGS} -I${LOCALBASE}/include"
|
|
SUB_FILES= pkg-message
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 600000
|
|
IGNORE= depends on kernel module that requires FreeBSD 6 or later
|
|
.endif
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|