#!/bin/sh
# -*- indent-tabs-mode: t; tab-width: 2 -*-
#
# Copyright 2009 Canonical Ltd
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

EXTRA_ARGS=""
PROJ=""

for arg in $*; do
	if [ $arg = "--save" ]; then
		EXTRA_ARGS="--save-after-login"
	else
		PROJ="$arg"
	fi
done

if [ -z "$PROJ" ]; then
	echo "You must specify a project name"
	exit 1
fi

xhost +SI:localuser:root

echo "Remember to run export DISPLAY=localhost$DISPLAY if you want to test graphical apps"

SRCDIR=${PBUILDER_SRCDIR:-$HOME/Projects}
mkdir -p "$SRCDIR/$PROJ"

sudo pbuilder --login --basetgz "/var/cache/pbuilder/$PROJ.tgz" --bindmounts "$SRCDIR/$PROJ $HOME/.ssh" "$EXTRA_ARGS"

