forked from Lainports/freebsd-ports
- convert all fuse ports to use the new macro The macro makes sure sysutils/fusefs-libs gets installed and depending on fuse being in base or not it installs sysutils/fusefs-kmod. Approved by: portmgr (bapt)
30 lines
671 B
Makefile
30 lines
671 B
Makefile
# Created by: Denis Barov
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= smbnetfs
|
|
PORTVERSION= 0.5.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils net
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/SMBNetFS-${PORTVERSION}
|
|
PKGNAMEPREFIX= fusefs-
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Mount smb shares (Fuse filesystem)
|
|
|
|
LIB_DEPENDS= smbclient.0:${PORTSDIR}/net/samba-libsmbclient \
|
|
gnome-keyring.0:${PORTSDIR}/security/libgnome-keyring
|
|
|
|
DOCSDIR+= ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION}
|
|
|
|
USE_BZIP2= yes
|
|
USE_FUSE= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
CFLAGS+= ${PTHREAD_CFLAGS} -I${LOCALBASE}/include
|
|
LDFLAGS= -L${LOCALBASE}/lib
|
|
SUB_FILES= pkg-message
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|