blob: 4b80eff518061e8686eff0f9a762dd46868b08e3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# New ports collection makefile for: mountsmb2
# Date created: 17 Mar 2006
# Whom: Rashid N. Achilov <shelton@granch.ru>
#
# $FreeBSD$
#
PORTNAME= mountsmb2
PORTVERSION= 0.90.2
CATEGORIES= sysutils net
MASTER_SITES= ftp://ftp.granch.ru/pub/other/
MAINTAINER= achilov-rn@askd.ru
COMMENT= SMB/CIFS shares mounting scripts to do it at login
RUN_DEPENDS= nbtscan:${PORTSDIR}/net-mgmt/nbtscan \
sudo:${PORTSDIR}/security/sudo \
.if !exists(/usr/bin/host)
RUN_DEPENDS+= host:${PORTSDIR}/dns/bind9
.endif
USE_BZIP2= yes
NO_BUILD= yes
do-install:
.for i in smb2nsmbrc mountsmb2
${INSTALL_SCRIPT} ${WRKSRC}/${i} ${PREFIX}/bin
.endfor
.if !defined(NOPORTDOCS)
-@${MKDIR} ${EXAMPLESDIR}
.for i in sudoers .login .nsmbrc .mssmbrc nsmb.conf
${INSTALL_DATA} ${WRKSRC}/${i} ${EXAMPLESDIR}
.endfor
-@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README.FreeBSD ${DOCSDIR}
@${SED} -e "s,%%EXAMPLESDIR%%,${EXAMPLESDIR},g" ${PKGMESSAGE}
.endif
.include <bsd.port.mk>
|