From 0fa74d11e8a61ae0a11f9f6ee9daf6e21d18a20a Mon Sep 17 00:00:00 2001 From: "chess.griffin" Date: Sun, 24 Aug 2008 22:01:58 +0000 Subject: [PATCH] modify sbopkg.conf.new to export TMP among other changes; a big thanks to Ken Roberts for the bug report and diff, and for putting up with my questions and dialog while hashing this out. :-) --- src/etc/sbopkg/sbopkg.conf.new | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/src/etc/sbopkg/sbopkg.conf.new b/src/etc/sbopkg/sbopkg.conf.new index b61d681..51d34b3 100644 --- a/src/etc/sbopkg/sbopkg.conf.new +++ b/src/etc/sbopkg/sbopkg.conf.new @@ -2,16 +2,18 @@ # # Please read the sbopkg.conf(5) man page for information about this # configuration file, including an explanation of how to set these -# variables and others (like $OUTPUT that is used in the SBo -# SlackBuilds) in ways that will be honored by the SlackBuilds. Doing -# so will allow you to segregate all SBo-related directories if you -# wish, i.e. /home/sbo/tmp, /home/sbo/cache, /home/sbo/packages. This -# can be helpful if you wish to keep all SBo stuff on a separate -# share, partition, or machine. +# variables. +# The following are variables used by sbopkg. NOTE: $TMP must be +# exported as it is used by the SlackBuild scripts as well. Any of +# the other variables could be exported as well, if desired. RSYNCMIRROR=slackbuilds.org::slackbuilds SLACKVER=12.1 -LOCALREPO=/home/sbo -SRCDIR=/var/cache/sbopkg -TMP=/tmp +LOCALREPO=${LOCALREPO:-/home/sbo} +SRCDIR=${SRCDIR:-/var/cache/sbopkg} +export TMP=${TMP:-/tmp/SBo} KEEPLOG=YES + +# Optional - the $OUTPUT variable is used by SlackBuild scripts only +# and can be used to change the output location of compiled packages. +#export OUTPUT=${OUTPUT:-/tmp}