1ff6a80ea4
simple configuration file based on the concept of "Installations", "PackageSets", and "PartitionMaps." Farbot currently handles the following: * Building FreeBSD releases, including grabbing any source needed. * Building packages for each release, derived from per installation package sets. * Laying out an NFS/TFTP exportable file system structure for all built releases, customized for each installation type. * Generation of a customized bootloader with options to install each installation type WWW: http://dpw.threerings.net/projects/farbot/ PR: ports/106037 Submitted by: Nick Barkas <snb at threerings.net>
33 lines
818 B
Makefile
33 lines
818 B
Makefile
# New ports collection makefile for: farbot
|
|
# Date created: 29 November 2006
|
|
# Whom: Nick Barkas <snb@threerings.net>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= farbot
|
|
PORTVERSION= 1.0.a2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://dpw.threerings.net/projects/farbot/
|
|
DISTNAME= farbot-1.0-alpha2
|
|
|
|
MAINTAINER= snb@threerings.net
|
|
COMMENT= FreeBSD Automated Release Bot
|
|
|
|
BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/ZConfig:${PORTSDIR}/devel/py-zconfig \
|
|
${PYTHON_SITELIBDIR}/twisted:${PORTSDIR}/devel/py-twistedCore
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}
|
|
|
|
USE_PYTHON= 2.4+
|
|
USE_PYDISTUTILS= yes
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/farbot.conf ${PREFIX}/etc/farbot.conf.sample
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}/xhtml
|
|
${INSTALL_MAN} ${WRKSRC}/docs/xhtml/* ${DOCSDIR}/xhtml
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|