diff options
author | Vlastimil Babka <caster@gentoo.org> | 2010-04-23 20:04:01 +0000 |
---|---|---|
committer | Vlastimil Babka <caster@gentoo.org> | 2010-04-23 20:04:01 +0000 |
commit | 34772e772f603cc9381af67b926dea7df79fad91 (patch) | |
tree | 61bd10e0ce1bd1a943bf63d38efd514e5d8ad893 /net-misc/omniORB/files | |
parent | Delete calls to deprecated python_version(). (diff) | |
download | historical-34772e772f603cc9381af67b926dea7df79fad91.tar.gz historical-34772e772f603cc9381af67b926dea7df79fad91.tar.bz2 historical-34772e772f603cc9381af67b926dea7df79fad91.zip |
Remove old.
Package-Manager: portage-2.2_rc67/cvs/Linux x86_64
Diffstat (limited to 'net-misc/omniORB/files')
-rw-r--r-- | net-misc/omniORB/files/omniORB-4.0.0 | 27 | ||||
-rw-r--r-- | net-misc/omniORB/files/omniORB-4.1.3-glibc-2.10.patch | 93 |
2 files changed, 0 insertions, 120 deletions
diff --git a/net-misc/omniORB/files/omniORB-4.0.0 b/net-misc/omniORB/files/omniORB-4.0.0 deleted file mode 100644 index e86c73c59d8f..000000000000 --- a/net-misc/omniORB/files/omniORB-4.0.0 +++ /dev/null @@ -1,27 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/files/omniORB-4.0.0,v 1.4 2004/07/15 00:07:09 agriffis Exp $ - -depend() { - need net -} - -start() { - if [ ! -d "/var/log/omniORB" ] ; then - install -d /var/log/omniORB - fi - if [ "/var/log/omniORB/omninames*" ] ; then - rm -f /var/log/omniORB/omninames* - fi - ebegin "Starting omniORB" - exec /usr/bin/omniNames -start 2809 -logdir /var/log/omniORB \ - -errlog /var/log/omniORB/omniORB.errors 1>&2 & - eend $? "Error starting omniORB." -} - -stop() { - ebegin "Stopping omniORB" - killall omniNames 1>&2 - eend $? "Error stopping omniORB." -} diff --git a/net-misc/omniORB/files/omniORB-4.1.3-glibc-2.10.patch b/net-misc/omniORB/files/omniORB-4.1.3-glibc-2.10.patch deleted file mode 100644 index 5eb702c9d08d..000000000000 --- a/net-misc/omniORB/files/omniORB-4.1.3-glibc-2.10.patch +++ /dev/null @@ -1,93 +0,0 @@ -diff -NrU5 omniORB-4.1.3.original/src/appl/utils/catior/catior.cc omniORB-4.1.3/src/appl/utils/catior/catior.cc ---- omniORB-4.1.3.original/src/appl/utils/catior/catior.cc 2009-06-11 15:09:32.000000000 +0000 -+++ omniORB-4.1.3/src/appl/utils/catior/catior.cc 2009-06-11 15:20:45.000000000 +0000 -@@ -358,11 +358,11 @@ - - int c; - int hexflag = 0; - int omniflag = 0; - -- while((c = getopt(argc,argv,"xo")) != EOF) { -+ while((c = getopt(argc,argv,"xo")) != -1) { - switch(c) { - case 'x': - hexflag = 1; - break; - case 'o': -diff -NrU5 omniORB-4.1.3.original/src/appl/utils/convertior/convertior.cc omniORB-4.1.3/src/appl/utils/convertior/convertior.cc ---- omniORB-4.1.3.original/src/appl/utils/convertior/convertior.cc 2009-06-11 15:09:32.000000000 +0000 -+++ omniORB-4.1.3/src/appl/utils/convertior/convertior.cc 2009-06-11 15:21:11.000000000 +0000 -@@ -148,11 +148,11 @@ - - // Get options: - - int c; - -- while((c = getopt(argc,argv,"x")) != EOF) -+ while((c = getopt(argc,argv,"x")) != -1) - { - switch(c) - { - case '?': - case 'h': -diff -NrU5 omniORB-4.1.3.original/src/tool/omkdepend/def.h omniORB-4.1.3/src/tool/omkdepend/def.h ---- omniORB-4.1.3.original/src/tool/omkdepend/def.h 2009-06-11 15:09:32.000000000 +0000 -+++ omniORB-4.1.3/src/tool/omkdepend/def.h 2009-06-11 15:21:34.000000000 +0000 -@@ -126,11 +126,11 @@ - char *realloc(); - #endif - - char *copy(); - char *base_name(); --char *getline(); -+char *get_line(); - struct symtab *slookup(); - struct symtab *isdefined(); - struct symtab *fdefined(); - struct filepointer *getfile(); - struct inclist *newinclude(); -diff -NrU5 omniORB-4.1.3.original/src/tool/omkdepend/main.c omniORB-4.1.3/src/tool/omkdepend/main.c ---- omniORB-4.1.3.original/src/tool/omkdepend/main.c 2009-06-11 15:09:32.000000000 +0000 -+++ omniORB-4.1.3/src/tool/omkdepend/main.c 2009-06-11 15:22:23.000000000 +0000 -@@ -467,11 +467,11 @@ - - /* - * Get the next line. We only return lines beginning with '#' since that - * is all this program is ever interested in. - */ --char *getline(filep) -+char *get_line(filep) - register struct filepointer *filep; - { - register char *p, /* walking pointer */ - *eof, /* end of file pointer */ - *bol; /* beginning of line pointer */ -diff -NrU5 omniORB-4.1.3.original/src/tool/omkdepend/parse.c omniORB-4.1.3/src/tool/omkdepend/parse.c ---- omniORB-4.1.3.original/src/tool/omkdepend/parse.c 2009-06-11 15:09:32.000000000 +0000 -+++ omniORB-4.1.3/src/tool/omkdepend/parse.c 2009-06-11 15:23:19.000000000 +0000 -@@ -39,11 +39,11 @@ - { - register char *line; - register int type; - boolean recfailOK; - -- while (line = getline(filep)) { -+ while (line = get_line(filep)) { - switch(type = deftype(line, filep, file_red, file, TRUE)) { - case IF: - doif: - type = find_includes(filep, file, - file_red, recursion+1, failOK); -@@ -164,11 +164,11 @@ - struct inclist *file, *file_red; - { - register char *line; - register int type; - -- while (line = getline(filep)) { -+ while (line = get_line(filep)) { - switch(type = deftype(line, filep, file_red, file, FALSE)) { - case IF: - case IFFALSE: - case IFGUESSFALSE: - case IFDEF: |