summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernard Cafarelli <voyageur@gentoo.org>2017-03-20 12:09:13 +0100
committerBernard Cafarelli <voyageur@gentoo.org>2017-03-20 14:40:26 +0100
commit7afb248095aafea7b4dc1020cd31804df982fe45 (patch)
treeba586e2463cbf79483c0211b39f27b0b41920c2f /gnustep-base/gnustep-make/files
parentgnustep-base/gnustep-base: drop old (diff)
downloadgentoo-7afb248095aafea7b4dc1020cd31804df982fe45.tar.gz
gentoo-7afb248095aafea7b4dc1020cd31804df982fe45.tar.bz2
gentoo-7afb248095aafea7b4dc1020cd31804df982fe45.zip
gnustep-base/gnustep-make: drop old
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'gnustep-base/gnustep-make/files')
-rw-r--r--gnustep-base/gnustep-make/files/gnustep-4.csh18
-rw-r--r--gnustep-base/gnustep-make/files/gnustep-4.sh22
-rw-r--r--gnustep-base/gnustep-make/files/gnustep-make-2.0.1-destdir.patch21
3 files changed, 0 insertions, 61 deletions
diff --git a/gnustep-base/gnustep-make/files/gnustep-4.csh b/gnustep-base/gnustep-make/files/gnustep-4.csh
deleted file mode 100644
index cb5d3c030b2e..000000000000
--- a/gnustep-base/gnustep-make/files/gnustep-4.csh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/env csh
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-# Test for an interactive shell
-if ( $?prompt ) then
-
- setenv GNUSTEP_SYSTEM_TOOLS "@GENTOO_PORTAGE_EPREFIX@"/usr/bin
-
- if ( -x $GNUSTEP_SYSTEM_TOOLS/make_services ) then
- $GNUSTEP_SYSTEM_TOOLS/make_services
- endif
-
- if ( -x $GNUSTEP_SYSTEM_TOOLS/gdnc ) then
- $GNUSTEP_SYSTEM_TOOLS/gdnc
- endif
-
-endif
diff --git a/gnustep-base/gnustep-make/files/gnustep-4.sh b/gnustep-base/gnustep-make/files/gnustep-4.sh
deleted file mode 100644
index 04ae66157a3c..000000000000
--- a/gnustep-base/gnustep-make/files/gnustep-4.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env sh
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-# Test for an interactive shell
-case $- in
- *i*)
- ;;
- *)
- return
- ;;
-esac
-
-GNUSTEP_SYSTEM_TOOLS="@GENTOO_PORTAGE_EPREFIX@"/usr/bin
-
-if [ -x ${GNUSTEP_SYSTEM_TOOLS}/make_services ]; then
- ${GNUSTEP_SYSTEM_TOOLS}/make_services
-fi
-
-if [ -x ${GNUSTEP_SYSTEM_TOOLS}/gdnc ]; then
- ${GNUSTEP_SYSTEM_TOOLS}/gdnc
-fi
diff --git a/gnustep-base/gnustep-make/files/gnustep-make-2.0.1-destdir.patch b/gnustep-base/gnustep-make/files/gnustep-make-2.0.1-destdir.patch
deleted file mode 100644
index 407a5145724e..000000000000
--- a/gnustep-base/gnustep-make/files/gnustep-make-2.0.1-destdir.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-* grobian@gentoo.org: because we use sandbox this check fails (cannot
- write outside the DESTDIR. Allowing to write in the
- GNUSTEP_INSTALLATION_DIR means our sandbox is useless, since then
- everything can be written, so prefer to just check the DESTDIR
- location instead.
-
---- Master/rules.make
-+++ Master/rules.make
-@@ -107,9 +107,9 @@
-
- ifneq ($(GNUSTEP_INSTALLATION_DIR),)
- internal-check-install-permissions:
-- @if [ -d "$(GNUSTEP_INSTALLATION_DIR)" \
-- -a ! -w "$(GNUSTEP_INSTALLATION_DIR)" ]; then \
-- echo "*ERROR*: the software is configured to install itself into $(GNUSTEP_INSTALLATION_DIR)"; \
-+ @if [ -d "$(DESTDIR)$(GNUSTEP_INSTALLATION_DIR)" \
-+ -a ! -w "$(DESTDIR)$(GNUSTEP_INSTALLATION_DIR)" ]; then \
-+ echo "*ERROR*: the software is configured to install itself into $(DESTDIR)$(GNUSTEP_INSTALLATION_DIR)"; \
- echo "but you do not have permissions to write in that directory:";\
- echo "Aborting installation."; \
- echo ""; \