cf118ccf87
Reported by: lwhsu
40 lines
961 B
Makefile
40 lines
961 B
Makefile
PORTNAME= wsdd
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.6.4
|
|
PORTREVISION= 2
|
|
CATEGORIES= net python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= hiroo.ono+freebsd@gmail.com
|
|
COMMENT= Web Service Discovery (WSD) host daemon for Samba
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= python:3.5+,run shebangfix
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= christgau
|
|
SHEBANG_FILES= src/${PORTNAME}.py
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
USERS= _wsdd
|
|
GROUPS= _wsdd
|
|
|
|
PLIST_FILES= bin/${PORTNAME} \
|
|
etc/rc.d/${PORTNAME} \
|
|
man/man1/${PORTNAME}.1.gz
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} 's|PYTHON|${PYTHON_CMD}|' ${WRKSRC}/etc/rc.d/${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/src/${PORTNAME}.py \
|
|
${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/etc/rc.d
|
|
${INSTALL_SCRIPT} ${WRKSRC}/etc/rc.d/${PORTNAME} \
|
|
${STAGEDIR}${PREFIX}/etc/rc.d/${PORTNAME}
|
|
${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.1 \
|
|
${STAGEDIR}${MANPREFIX}/man/man1/
|
|
|
|
.include <bsd.port.mk>
|