summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Boshell <leonardop@gentoo.org>2005-06-24 04:23:36 +0000
committerLeonardo Boshell <leonardop@gentoo.org>2005-06-24 04:23:36 +0000
commitc1a739baf8c38759c3c8890c55714adc6b4d14a0 (patch)
treeba63b1cab2668d2a39bfda18d392a0a99926f75d /gnome-base/orbit
parentversion bump (bug #96905) (diff)
downloadgentoo-2-c1a739baf8c38759c3c8890c55714adc6b4d14a0.tar.gz
gentoo-2-c1a739baf8c38759c3c8890c55714adc6b4d14a0.tar.bz2
gentoo-2-c1a739baf8c38759c3c8890c55714adc6b4d14a0.zip
Removing obsolete ebuild/patch
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'gnome-base/orbit')
-rw-r--r--gnome-base/orbit/files/digest-orbit-2.10.21
-rw-r--r--gnome-base/orbit/files/orbit2-alignment-fix.patch11
-rw-r--r--gnome-base/orbit/orbit-2.10.2.ebuild46
3 files changed, 0 insertions, 58 deletions
diff --git a/gnome-base/orbit/files/digest-orbit-2.10.2 b/gnome-base/orbit/files/digest-orbit-2.10.2
deleted file mode 100644
index d1d2fc769497..000000000000
--- a/gnome-base/orbit/files/digest-orbit-2.10.2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 c862e3261b52a84321e89f57e5600da6 ORBit2-2.10.2.tar.bz2 649720
diff --git a/gnome-base/orbit/files/orbit2-alignment-fix.patch b/gnome-base/orbit/files/orbit2-alignment-fix.patch
deleted file mode 100644
index 5a62f9fb0ca6..000000000000
--- a/gnome-base/orbit/files/orbit2-alignment-fix.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -Naur ORBit2-2.10.0/src/orb/orb-core/allocators.c ORBit2-2.10.0.1-cbl/src/orb/orb-core/allocators.c
---- ORBit2-2.10.0/src/orb/orb-core/allocators.c 2003-07-07 13:11:31.000000000 +0000
-+++ ORBit2-2.10.0.1-cbl/src/orb/orb-core/allocators.c 2004-06-16 04:11:27.642691407 +0000
-@@ -59,6 +59,7 @@
- }
- case CORBA_tk_except:
- case CORBA_tk_struct:
-+ mem = ALIGN_ADDRESS (mem, tc->c_align);
- for (i = 0; i < tc->sub_parts; i++) {
- subtc = tc->subtypes [i];
- mem = ALIGN_ADDRESS (mem, subtc->c_align);
diff --git a/gnome-base/orbit/orbit-2.10.2.ebuild b/gnome-base/orbit/orbit-2.10.2.ebuild
deleted file mode 100644
index 5e73f624453a..000000000000
--- a/gnome-base/orbit/orbit-2.10.2.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.10.2.ebuild,v 1.3 2005/01/08 23:35:35 slarti Exp $
-
-inherit gnome2 eutils
-
-MY_P="ORBit2-${PV}"
-PVP=(${PV//[-\._]/ })
-S=${WORKDIR}/${MY_P}
-
-DESCRIPTION="ORBit2 is a high-performance CORBA ORB"
-HOMEPAGE="http://www.gnome.org/"
-SRC_URI="mirror://gnome/sources/ORBit2/${PVP[0]}.${PVP[1]}/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2 LGPL-2"
-SLOT="2"
-KEYWORDS="x86 ~ppc ~alpha ~sparc ~hppa amd64 ~ia64 ~mips ppc64 arm"
-IUSE="doc ssl"
-
-RDEPEND=">=dev-libs/glib-2
- >=dev-libs/popt-1.5
- >=dev-libs/libIDL-0.7.4
- dev-util/indent
- ssl? ( >=dev-libs/openssl-0.9.6 )"
-# FIXME linc is now integrated, but a block isn't necessary
-# and probably complicated FIXME
-
-# FIXME ssl is optional, but not switchable
-
-DEPEND="${RDEPEND}
- >=dev-util/pkgconfig-0.14
- doc? ( >=dev-util/gtk-doc-1 )"
-
-MAKEOPTS="${MAKEOPTS} -j1"
-
-DOCS="AUTHORS ChangeLog COPYING* README* HACKING INSTALL NEWS TODO MAINTAINERS"
-
-src_unpack() {
- unpack ${A}
-
- # this patch fixes a bug in CORBA_free() where it doesnt take proper
- # structure alignment into account. the nautilus bug on amd64, alpha, and
- # various other non-x86 archs that caused it to segfault with more than
- # two fstab entries with the user option is now fixed.
- cd ${S} ; epatch ${FILESDIR}/orbit2-alignment-fix.patch
-}