ba7396eb94
- update to 1.0 - switch form GOOGLE_CODE to GITHUB - add LICENSE - switch to autoplist - use @sample for etc/farbot.conf.sample PR: 216972 Submitted by: Chris Hutchinson <portmaster@bsdforge.com>
37 lines
787 B
Makefile
37 lines
787 B
Makefile
# Created by: Nick Barkas <snb@threerings.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= farbot
|
|
PORTVERSION= 1.0
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= portmaster@BSDforge.com
|
|
COMMENT= FreeBSD Automated Release Bot
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/bin/zconfig:devel/py-zconfig
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= threerings
|
|
GH_PROJECT= farbot
|
|
GH_TAGNAME= c824009
|
|
|
|
USES= python
|
|
USE_PYTHON= distutils autoplist
|
|
PYDISTUTILS_PKGNAME= farb
|
|
PYDISTUTILS_PKGVERSION= 0.1
|
|
NO_ARCH= yes
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/farbot.conf ${STAGEDIR}${PREFIX}/etc/farbot.conf.sample
|
|
|
|
post-install-DOCS-on:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}/xhtml
|
|
${INSTALL_MAN} ${WRKSRC}/docs/xhtml/* ${STAGEDIR}${DOCSDIR}/xhtml
|
|
|
|
.include <bsd.port.mk>
|