mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
eccf5db03a
Maintainers for these ports have been notified on 5 separate occasions over the course of several months about pending actions required. We really appreciate the time and effort you put in to maintain these ports. If you are still interested in helping to maintain these ports just reply to me or file a PR and I will happily assign the port to you again. Approved by: portmgr (implicit)
45 lines
1.2 KiB
Makefile
45 lines
1.2 KiB
Makefile
# Created by: Andrew Stevenson <andrew@ugh.net.au>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= rsmb
|
|
PORTVERSION= 1.1.0
|
|
CATEGORIES= net linux
|
|
MASTER_SITES= #
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Really Small Message Broker, an MQTT supporting server
|
|
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
USES= zip
|
|
USE_LINUX= yes
|
|
LINUX_OSRELEASE=2.6.16
|
|
IA32_BINARY_PORT= yes
|
|
RESTRICTED= \nPlease visit http://www.alphaworks.ibm.com/tech/rsmb/download
|
|
RESTRICTED+= \nto register for an account, agree to the license and download
|
|
RESTRICTED+= \n${DISTFILES}.
|
|
RESTRICTED+= \nMove the file to ${DISTDIR} and restart the build.\n\n
|
|
USE_RC_SUBR= rsmbd
|
|
PLIST_SUB= PORTVERSION=${PORTVERSION}
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
|
|
ECHO_MSG= ${PRINTF}
|
|
IGNORE= ${RESTRICTED}
|
|
.endif
|
|
|
|
do-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_MAN} ${WRKSRC}/gettingstarted.htm ${DOCSDIR}
|
|
.endif
|
|
${MKDIR} ${PREFIX}/libexec/rsmb
|
|
${INSTALL_PROGRAM} ${WRKSRC}/broker.redhat ${PREFIX}/libexec/rsmb/broker
|
|
${INSTALL_DATA} ${WRKSRC}/Messages.${PORTVERSION} ${PREFIX}/libexec/rsmb/
|
|
${INSTALL_DATA} ${FILESDIR}/broker.cfg ${PREFIX}/etc/broker.cfg.dist
|
|
|
|
.include <bsd.port.post.mk>
|