pkgsrc/mk/bulk/build.conf-example
dmcmahill c341f514d3 -add support for a BULK_PREREQ make variable. BULK_PREREQ contains a list
of packages which must stay installed during the build, but are not pulled
 in by the DEPENDS for each package.  Currently, BULK_PREREQ will always include
 pkgtools/digest.  At this time, the primary use will be to add
 BULK_PREREQ+=pkgtools/xpkgwedge
 in /etc/mk.conf to do an xpkgwedge'd bulk build.  It is up to the user to make
 sure that the list of packages in BULK_PREREQ is a flattened list (ie all the
 DEPENDS are listed too).  Again, at this time, xpkgwedge is really the only
 package that should be added to the list.

-add an ADMINSIG build.conf variable.  This is the signature at the end of the
 email report.  Maybe now I'll quit forwarding reports signed as "-Hubert".

-while here, eliminate grep|awk lines and `grep >/dev/null` replacing them
 with pure awk and grep -q.
2001-03-19 11:25:39 +00:00

46 lines
1.3 KiB
Text

# build.conf
# $NetBSD: build.conf-example,v 1.8 2001/03/19 11:25:39 dmcmahill Exp $
#
# config file in /bin/sh syntax for {,pre,post}-build
#
# Some paths for output files and paths to log files
FTPx=`date +%Y%m%d.%H%M`
FTPURL="pub/NetBSD/pkgstat/${FTPx}" # relative to ~ftp !
FTP="/home/ftp/${FTPURL}" # absolute base path
FTPHOST="ftp://ftp.machi.ne" # host for broken.html
# Where build will mail the report
ADMIN="you@some.whe.re"
# Who the report is signed by
ADMINSIG="-Your Name"
# The OS release this bulk build is happening on
osrev=`uname -r`
# The machine architecture this is happening on
arch=`uname -m`
# Where our pkgsrc is located
USR_PKGSRC="/usr/pkgsrc"
# As which user to run "cvs updates". Leave empty for no update.
CVS_USER="yourlogin"
# prune distfiles to remove those which are out of date
# can be set to 'yes' or 'no'.
PRUNEDISTFILES=yes
# Proxies (optional):
#ftp_proxy=http://proxy.machi.ne:3128/
#http_proxy=http://proxy.machi.ne:3128/
###########################################################################
### No changes should be needed below this line !!!
###########################################################################
# Name of the (generated) HTML file which lists all broken pkgs
REPORT="$FTP/broken.html"