freebsd-ports/ports-mgmt/poudriere-devel/Makefile
Bryan Drewery decbf93793 - Update to checkin 6abae2a52c
Changes:
  * Speedup sanity checks by only checking ports that are required
    by the build and not all existing packages.
  * Switch to embedded cpdup(1) for creating jails instead of pax(1)
  * Implement port blacklisting defined in
    etc/poudriere.d/[(setname|jailname)-]blacklist
  * Add hooks for bulk start/stop
  * status: Always show actual path to logs instead of /latest
  * bulk: Add check for missing PKGNAME (empty port dir)
  * Disable tracking buildtimes by default
    TRACK_BUILDTIMES=yes to enable
  * bulk: Fixed dependency calculation for CHECK_CHANGED_DEPS.
    There are still some ports with issues.
  * Add portbuild/tinderbox error reasons [1]

Submitted by:	linimon [1]
2013-07-21 23:42:04 +00:00

75 lines
1.9 KiB
Makefile

# $FreeBSD$
PORTNAME= poudriere
PORTVERSION= 3.0.99.20130721
CATEGORIES= ports-mgmt
MASTER_SITES= http://fossil.etoilebsd.net/poudriere/tarball/ \
LOCAL/bdrewery/${PORTNAME}/
PKGNAMESUFFIX= -devel
DISTFILES= ${PORTNAME}-${PORTVERSION}.tar.gz?uuid=${FSL_CHKIN}
# Also maintained by bdrewery@FreeBSD.org
MAINTAINER= bapt@FreeBSD.org
COMMENT= Port build and test system
LICENSE= BSD
FSL_CHKIN= 6abae2a52c
MANCOMPRESSED= yes
MAN8= poudriere.8
OPTIONS_DEFINE= ZSH
CONFLICTS_INSTALL= poudriere-[0-9]*
PLIST_FILES= etc/poudriere.conf.sample \
etc/poudriere.d/hooks/bulk.sh.sample \
etc/poudriere.d/hooks/pkgbuild.sh.sample \
etc/rc.d/poudriere \
bin/poudriere \
libexec/poudriere/cpdup \
libexec/poudriere/dirwatch \
libexec/poudriere/dirempty \
libexec/poudriere/make_index \
share/poudriere/awk/dependency_loop.awk \
share/poudriere/awk/humanize.awk \
share/poudriere/awk/json.awk \
share/poudriere/awk/siginfo_buildtime.awk \
share/poudriere/html/index.html \
share/poudriere/html/assets/jquery-1.9.1.min.js \
share/poudriere/html/assets/logo.jpg \
share/poudriere/html/assets/poudriere.css \
share/poudriere/html/assets/poudriere.js \
share/poudriere/bulk.sh \
share/poudriere/clean.sh \
share/poudriere/common.sh \
share/poudriere/daemon.sh \
share/poudriere/distclean.sh \
share/poudriere/jail.sh \
share/poudriere/options.sh \
share/poudriere/ports.sh \
share/poudriere/processonelog.sh \
share/poudriere/queue.sh \
share/poudriere/status.sh \
share/poudriere/testport.sh
PLIST_DIRS= libexec/poudriere \
etc/poudriere.d/hooks \
etc/poudriere.d \
share/poudriere/awk \
share/poudriere/html/assets \
share/poudriere/html \
share/poudriere
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MZSH}
PLIST_FILES+= share/zsh/site-functions/_poudriere
PLIST_DIRSTRY+= share/zsh/site-functions
PLIST_DIRSTRY+= share/zsh/
.else
MAKE_ENV+= NO_ZSH=yes
.endif
.include <bsd.port.mk>