mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-18 00:10:04 +00:00
72b5d47b6f
ChangeLog: https://github.com/christgau/wsdd/blob/v0.8/CHANGELOG.md PR: 278107
41 lines
1003 B
Makefile
41 lines
1003 B
Makefile
PORTNAME= wsdd
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.8
|
|
CATEGORIES= net python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= hiroo.ono+freebsd@gmail.com
|
|
COMMENT= Web Service Discovery (WSD) host daemon for Samba
|
|
WWW= https://github.com/christgau/wsdd
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= python: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} \
|
|
share/man/man8/${PORTNAME}.8.gz
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} 's|PYTHON|${PYTHON_CMD}|' ${WRKSRC}/etc/rc.d/${PORTNAME}.freebsd
|
|
|
|
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}.freebsd \
|
|
${STAGEDIR}${PREFIX}/etc/rc.d/${PORTNAME}
|
|
${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.8 \
|
|
${STAGEDIR}${PREFIX}/share/man/man8/
|
|
|
|
.include <bsd.port.mk>
|