mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
7ff1144766
- Use option helpers. - Fix portlint warnings. - Add USES=iconv to fix build on FreeBSD 10.
37 lines
901 B
Makefile
37 lines
901 B
Makefile
# Created by: Denis Barov
|
||
# $FreeBSD$
|
||
|
||
PORTNAME= smbnetfs
|
||
PORTVERSION= 0.5.3a
|
||
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= libsmbclient.so:${PORTSDIR}/net/samba-libsmbclient
|
||
|
||
OPTIONS_DEFINE= DOCS GNOME_KEYRING
|
||
OPTIONS_DEFAULT=GNOME_KEYRING
|
||
|
||
GNOME_KEYRING_DESC= Build with gnome-keyring support
|
||
GNOME_KEYRING_CONFIGURE_WITH= gnome-keyring
|
||
GNOME_KEYRING_LIB_DEPENDS= libgnome-keyring.so:${PORTSDIR}/security/libgnome-keyring
|
||
|
||
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION}
|
||
|
||
USE_BZIP2= yes
|
||
USES= fuse iconv pkgconfig
|
||
|
||
GNU_CONFIGURE= yes
|
||
CFLAGS+= -I${LOCALBASE}/include
|
||
LDFLAGS+= -L${LOCALBASE}/lib
|
||
SUB_FILES= pkg-message
|
||
|
||
post-patch:
|
||
${REINPLACE_CMD} -e 's|а|a|g' ${WRKSRC}/${CONFIGURE_SCRIPT}
|
||
|
||
.include <bsd.port.mk>
|