summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Ruppert <idl0r@gentoo.org>2009-11-11 02:34:57 +0000
committerChristian Ruppert <idl0r@gentoo.org>2009-11-11 02:34:57 +0000
commit2b65b3030f0eb15688693cc0873c03fab242d4b4 (patch)
treeca93a333342807eb65d9408ae740433f05669736
parentRemove obsolete files. (diff)
downloadgentoo-2-2b65b3030f0eb15688693cc0873c03fab242d4b4.tar.gz
gentoo-2-2b65b3030f0eb15688693cc0873c03fab242d4b4.tar.bz2
gentoo-2-2b65b3030f0eb15688693cc0873c03fab242d4b4.zip
Remove obsolete patch.
(Portage version: 2.2_rc49/cvs/Linux x86_64)
-rw-r--r--app-portage/euses/ChangeLog6
-rw-r--r--app-portage/euses/files/euses-2.5.0.patch42
2 files changed, 5 insertions, 43 deletions
diff --git a/app-portage/euses/ChangeLog b/app-portage/euses/ChangeLog
index e3d0c6fa3529..0eeaf457003b 100644
--- a/app-portage/euses/ChangeLog
+++ b/app-portage/euses/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-portage/euses
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/euses/ChangeLog,v 1.49 2009/09/07 13:42:06 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/euses/ChangeLog,v 1.50 2009/11/11 02:34:55 idl0r Exp $
+
+ 11 Nov 2009; Christian Ruppert <idl0r@gentoo.org>
+ -files/euses-2.5.0.patch:
+ Remove obsolete patch.
07 Sep 2009; Raúl Porcel <armin76@gentoo.org> euses-2.5.6.ebuild:
Add ~arm wrt #283101
diff --git a/app-portage/euses/files/euses-2.5.0.patch b/app-portage/euses/files/euses-2.5.0.patch
deleted file mode 100644
index 55397b0bc8e1..000000000000
--- a/app-portage/euses/files/euses-2.5.0.patch
+++ /dev/null
@@ -1,42 +0,0 @@
---- euses.c 2006-11-18 05:28:40.000000000 +0100
-+++ euses.c 2006-11-18 23:06:44.000000000 +0100
-@@ -124,8 +124,6 @@
- }
- }
-
--#define PORTDIR_SCRIPT " -c 'source /etc/make.globals; source /etc/make.conf; echo -n $PORTDIR'"
--
- static char *getportdir(char *portdir)
- {
- FILE *fd;
-@@ -135,8 +133,9 @@
-
- /* or load it from make.{globals,conf} */
- if (strlen(portdir) == 0) {
-- /* Open a pipe to bash */
-- fd = popen(BIN_BASH PORTDIR_SCRIPT, "r");
-+ /* Open a pipe to sh */
-+ fd = popen("source " "/etc/make.globals;" "source "
-+ "/etc/make.conf" ";" "echo -n ${PORTDIR}", "r");
-
- /* Get the first line from the pipe */
- if (fgets(portdir, (int)FILENAME_MAX, fd) == NULL)
---- Makefile.in 2006-11-18 05:28:40.000000000 +0100
-+++ Makefile.in 2006-11-18 22:44:56.000000000 +0100
-@@ -1,14 +1,13 @@
- CC = @CC@
- CFLAGS = @CFLAGS@ -Wall -pedantic
--BIN_BASH = $(shell which bash)
-
- all: euses
-
- euses: euses.c
- @echo
- @echo ' = Compiling $@ ='
-- $(CC) $(CFLAGS) $(DEFS) -DBIN_BASH="\"$(BIN_BASH)\"" $< -o $@.o -c
-- $(CC) $(CFLAGS) $(DEFS) -DBIN_BASH="\"$(BIN_BASH)\"" $@.o -o $@
-+ $(CC) $(CFLAGS) $(DEFS) $< -o $@.o -c
-+ $(CC) $(CFLAGS) $(DEFS) $@.o -o $@
-
- test: euses
- @echo