freebsd-ports/ports-mgmt/poudriere-devel/Makefile
Bryan Drewery 46a3d5fb82 - Update to checkin e5f36a7de8
Changes:

  * Package builds are now atomic. They will not update the
    package repository directory until the build finishes.
    This can be disabled with ATOMIC_PACKAGE_REPOSITORY (default yes).
    This will convert the repository to a new format on first build.
    If a build fails, all of the successful packages are retained
    for the next attempt, but the old packages do not get modified.
  * Disabling COMMIT_PACKAGES_ON_FAILURE (default yes) will have it
    not touch the repository if the build fails; the package repository
    will only be updated once a build succeeds.
  * bulk now has a dry run mode (-n). Requires ATOMIC_PACKAGE_REPOSITORY
  * Add KEEP_OLD_PACKAGES which will keep KEEP_OLD_PACKAGES_COUNT
    number of old repositories. This can be useful for rollbacks
    or bisecting. Requires ATOMIC_PACKAGE_REPOSITORY
  * Add RESTRICT_NETWORKING (default yes) which can be used to disable
    the network restrictions outside of 'fetch' phase.
  * Add new PORTTESTING_FATAL (default yes) which can be disabled so that
    failed ports (leftovers) do not cause ports depending on that port to be
    skipped. This is useful for QAT.
  * Fix stage orphans excluding /var/run/PORTNAME
  * Stage orphan fixes for ports using kdeprefix
  * /proc and /compat/linux/proc now excluded for leftovers
  * nmtree fixes for head
  * Misc performance improvements
  * build_fs_violation was broken
  * Poudriere now requires pkg-1.2 in its ports tree
2013-12-19 15:50:10 +00:00

104 lines
3.6 KiB
Makefile

# $FreeBSD$
PORTNAME= poudriere
PORTVERSION= 3.0.99.20131219
CATEGORIES= ports-mgmt
MASTER_SITES= http://fossil.etoilebsd.net/poudriere/tarball/ \
LOCAL/bdrewery/${PORTNAME}/
PKGNAMESUFFIX= -devel
DISTFILES= ${PORTNAME}-${PORTVERSION}.tar.gz?uuid=${FSL_CHKIN}
MAINTAINER= bdrewery@FreeBSD.org
COMMENT= Port build and test system
LICENSE= BSD
FSL_CHKIN= e5f36a7de8
OPTIONS_DEFINE= ZSH
CONFLICTS_INSTALL= poudriere-[0-9]*
USES= uidfix
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 \
man/man8/poudriere.8.gz \
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/bootstrap/css/bootstrap-responsive.min.css \
share/poudriere/html/assets/bootstrap/css/bootstrap.min.css \
share/poudriere/html/assets/bootstrap/img/glyphicons-halflings-white.png \
share/poudriere/html/assets/bootstrap/img/glyphicons-halflings.png \
share/poudriere/html/assets/bootstrap/js/bootstrap.min.js \
share/poudriere/html/assets/dataTables/css/jquery.dataTables.css \
share/poudriere/html/assets/dataTables/images/back_disabled.png \
share/poudriere/html/assets/dataTables/images/back_enabled.png \
share/poudriere/html/assets/dataTables/images/back_enabled_hover.png \
share/poudriere/html/assets/dataTables/images/forward_disabled.png \
share/poudriere/html/assets/dataTables/images/forward_enabled.png \
share/poudriere/html/assets/dataTables/images/forward_enabled_hover.png \
share/poudriere/html/assets/dataTables/images/sort_asc.png \
share/poudriere/html/assets/dataTables/images/sort_asc_disabled.png \
share/poudriere/html/assets/dataTables/images/sort_both.png \
share/poudriere/html/assets/dataTables/images/sort_desc.png \
share/poudriere/html/assets/dataTables/images/sort_desc_disabled.png \
share/poudriere/html/assets/dataTables/js/jquery.dataTables.min.js \
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/common.sh.dragonfly \
share/poudriere/common.sh.freebsd \
share/poudriere/daemon.sh \
share/poudriere/distclean.sh \
share/poudriere/jail.sh \
share/poudriere/options.sh \
share/poudriere/pkgclean.sh \
share/poudriere/ports.sh \
share/poudriere/processonelog.sh \
share/poudriere/processonelog2.sh \
share/poudriere/queue.sh \
share/poudriere/status.sh \
share/poudriere/testport.sh
PLIST_DIRS= libexec/poudriere \
share/poudriere/awk \
share/poudriere/html/assets/bootstrap/css \
share/poudriere/html/assets/bootstrap/img \
share/poudriere/html/assets/bootstrap/js \
share/poudriere/html/assets/bootstrap \
share/poudriere/html/assets/dataTables/css \
share/poudriere/html/assets/dataTables/images \
share/poudriere/html/assets/dataTables/js \
share/poudriere/html/assets/dataTables \
share/poudriere/html/assets \
share/poudriere/html \
share/poudriere
PLIST_DIRSTRY= etc/poudriere.d/hooks \
etc/poudriere.d
.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>