Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
# $NetBSD: crontab,v 1.1 2012/07/25 12:20:08 jmmv Exp $
# crontab(5) file for the unprivileged sysbuild user.
PATH=@PREFIX@/bin:@PREFIX@/sbin:/usr/bin:/usr/sbin:/bin:/sbin
SHELL=/bin/sh
# Cheatsheet: minute hour day-of-month month day-of-week(0,7=Sun)
@daily @PREFIX@/bin/sysbuild4cron -l "${HOME}/log" -- build

View File

@@ -0,0 +1,38 @@
# $NetBSD: default.conf,v 1.3 2013/03/08 19:37:17 jmmv Exp $
# Configuration file for the unprivileged sysbuild user.
#
# Because the unprivileged user's purpose is solely to peform NetBSD
# system builds, we can assume that its home directory is dedicated to
# us and thus can keep a simpler directory layout.
# Place all files in the user's home directory.
BUILD_ROOT="${HOME}"
RELEASEDIR="${HOME}/release"
SRCDIR="${HOME}/src"
[ ! -f /etc/mtree/set.xbase ] || XSRCDIR="${HOME}/xsrc"
# Build for the current machine only.
MACHINES="$(uname -m)"
# What to build for every machine.
BUILD_TARGETS="release"
# Take advantage of update builds.
INCREMENTAL_BUILD="yes"
# Set CVS-related settings.
CVSROOT=":ext:anoncvs@anoncvs.NetBSD.org:/cvsroot"
if ! head -n 1 /etc/release | grep 99 >/dev/null; then
CVSTAG="$(head -n 1 /etc/release | cut -d . -f 1 \
| tr '[A-Z] ' '[a-z]-')"
fi
# Use as many CPUs as are available.
NJOBS="$(/sbin/sysctl -n hw.ncpuonline)"
# Push the build results to a file server.
#post_build_hook() {
# rsync -acv --delete-after "${RELEASEDIR}/" \
# "server.example.com:/pub/NetBSD/release"
#}