summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-misc/ltsp-server/files')
-rw-r--r--net-misc/ltsp-server/files/ltsp-server-5.2.6-bootstrap.patch22
-rw-r--r--net-misc/ltsp-server/files/ltsp-server-5.2.6-setstage.patch17
2 files changed, 0 insertions, 39 deletions
diff --git a/net-misc/ltsp-server/files/ltsp-server-5.2.6-bootstrap.patch b/net-misc/ltsp-server/files/ltsp-server-5.2.6-bootstrap.patch
deleted file mode 100644
index b596691..0000000
--- a/net-misc/ltsp-server/files/ltsp-server-5.2.6-bootstrap.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- server/plugins/ltsp-build-client/Gentoo/010-bootstrap.orig 2011-03-28 21:06:00.700447978 +0200
-+++ server/plugins/ltsp-build-client/Gentoo/010-bootstrap 2011-03-28 21:09:09.358697514 +0200
-@@ -6,7 +6,7 @@
- add_option "quickstart-host" "`eval_gettext "Get profile from a Quickstart server"`" "advanced" "true"
- ;;
- configure)
-- if [ -n "$option_quickstart_profile_value" ] || [ -n ${QUICKSTART_PROFILE} ]; then
-+ if [ -n "$option_quickstart_profile_value" ] || [ -n "$QUICKSTART_PROFILE" ]; then
- QUICKSTART_PROFILE=${option_quickstart_profile_value:-$QUICKSTART_PROFILE}
- printf "`eval_gettext "Manual Quickstart: %s"`\n" $QUICKSTART_PROFILE
- else
-@@ -26,8 +26,8 @@
- if [ -n "$option_quickstart_verbose_value" ] || [ "${QUICKSTART_VERBOSE}" = true ]; then
- QUICKSTART_ARGS="$QUICKSTART_ARGS --verbose"
- fi
-- if [ -n "$option_quickstart_host_value" ] || [ -n ${QUICKSTART_HOST} ]; then
-- QUICKSTART_ARGS="$QUICKSTART_ARGS --client=${option_quickstart_host_value:-$QUICKSTART_HOST}"
-+ if [ -n "$option_quickstart_host_value" ] || [ -n "$QUICKSTART_HOST" ]; then
-+ QUICKSTART_ARGS="$QUICKSTART_ARGS --client ${option_quickstart_host_value:-$QUICKSTART_HOST}"
- fi
- ;;
- install)
diff --git a/net-misc/ltsp-server/files/ltsp-server-5.2.6-setstage.patch b/net-misc/ltsp-server/files/ltsp-server-5.2.6-setstage.patch
deleted file mode 100644
index 0750309..0000000
--- a/net-misc/ltsp-server/files/ltsp-server-5.2.6-setstage.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- server/plugins/ltsp-build-client/Gentoo/002-set-stage-file.orig 2011-03-28 21:05:48.460448127 +0200
-+++ server/plugins/ltsp-build-client/Gentoo/002-set-stage-file 2011-03-29 18:44:14.002448307 +0200
-@@ -3,8 +3,13 @@
- add_option "stage-uri" "`eval_gettext "Stage 3 URI"`" "advanced" "true"
- ;;
- configure)
-- if [ -n "$option_stage_uri_value" ] || [ -n $STAGE_URI ]; then
-+ if [ -n "$option_stage_uri_value" ] || [ -n "$STAGE_URI" ]; then
- STAGE_URI="${option_stage_uri_value:-$STAGE_URI}"
-+ PROTOCOL=$(echo ${STAGE_URI} | sed -e 's|://.\+$||')
-+ fi
-+
-+ # only download if stage not local
-+ if [[ "$PROTOCOL" != "file" ]]; then
- STAGE_ARCH=${ARCH}
- DISTFILES_BASE="http://distfiles.gentoo.org/releases/${ARCH}/autobuilds"
-