1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
#
# This file is a bourne shell snippet, and is sourced by the
# cvs-buildpackage script for configuration.
#
#
# The following variables are available, derived from the changelog
# file at run time
#
# $package: Name of the package
# $version: The raw version of the package
# $sversion: The version number stripped of epochs
# $uversion: The upstream version
# $tversion: Debian revision number, if any
#
# There is nothing preventing you from over riding any of those, or,
# in fact, from modifying internal variables used in the script,
# though you should know what you are doing before doing so, know
# that all your warranties become void if you do so.
#
# Debugging information: The default value is 0 (no debugging
# information is printed). To change the default behaviour, uncomment
# the following line and set the value to 1.
#
# DEBUG=0
#
# The directories.
#
# The root directory is used to set the default value of the work
# directory, using the package name. The default value is
# /usr/src/Packages (note that this directory is not created
# automatically). To change the default behaviour, uncomment the
# following line and set the value to match the local setup.
#
# conf_rootdir='/usr/src/Packages'
# The work directory. This directory is where the original sources are
# expected, and this is where the module shall be exported from CVS.
# If you set this value, the value of the root directory, either set
# up above or on the command line, would be ignored. To change the
# default behaviour, uncomment the following line and set the value to
# match the local setup.
#
# conf_workdir="$rootdir/$package"
|