[csw-devel] SF.net SVN: gar:[9487] csw/mgar/pkg/orbit2/trunk
dmichelsen at users.sourceforge.net
dmichelsen at users.sourceforge.net
Wed Mar 31 14:29:32 CEST 2010
Revision: 9487
http://gar.svn.sourceforge.net/gar/?rev=9487&view=rev
Author: dmichelsen
Date: 2010-03-31 12:29:31 +0000 (Wed, 31 Mar 2010)
Log Message:
-----------
orbit2: Update to 2.14.18
Modified Paths:
--------------
csw/mgar/pkg/orbit2/trunk/Makefile
csw/mgar/pkg/orbit2/trunk/checksums
Removed Paths:
-------------
csw/mgar/pkg/orbit2/trunk/files/patch-test-foo.diff
Modified: csw/mgar/pkg/orbit2/trunk/Makefile
===================================================================
--- csw/mgar/pkg/orbit2/trunk/Makefile 2010-03-31 12:22:43 UTC (rev 9486)
+++ csw/mgar/pkg/orbit2/trunk/Makefile 2010-03-31 12:29:31 UTC (rev 9487)
@@ -1,5 +1,5 @@
GARNAME = ORBit2
-GARVERSION = 2.14.17
+GARVERSION = 2.14.18
CATEGORIES = lib
DESCRIPTION = ORBit 2.x CORBA tools and libs
@@ -18,13 +18,6 @@
SPKG_SOURCEURL = http://projects.gnome.org/ORBit2/
-# Patch from
-# https://bugzilla.gnome.org/show_bug.cgi?id=563046
-# This also solves
-# https://bugzilla.gnome.org/show_bug.cgi?id=558796
-PATCHFILES = patch-test-foo.diff
-PATCHDIRLEVEL = 0
-
CONFIGURE_ARGS = $(DIRPATHS)
STRIP_LIBTOOL = 1
@@ -38,8 +31,7 @@
EXTRA_MERGE_INCLUDE_FILES = $(libdir)/libname-server-2.a
CPP = /usr/lib/cpp
-EXTRA_COMMON_EXPORTS += CPP
CXXCPP = /usr/lib/cpp
-EXTRA_COMMON_EXPORTS += CXXCPP
+EXTRA_COMMON_EXPORTS = CPP CXXCPP
include gar/category.mk
Modified: csw/mgar/pkg/orbit2/trunk/checksums
===================================================================
--- csw/mgar/pkg/orbit2/trunk/checksums 2010-03-31 12:22:43 UTC (rev 9486)
+++ csw/mgar/pkg/orbit2/trunk/checksums 2010-03-31 12:29:31 UTC (rev 9487)
@@ -1,2 +1 @@
-10bfb957fa4a8935a0b4afaee7d71df7 download/ORBit2-2.14.17.tar.bz2
-f0854ac5f081775fc2b7c8afbf769843 download/patch-test-foo.diff
+3e80596171b1ea652707219c7144ff53 ORBit2-2.14.18.tar.bz2
Deleted: csw/mgar/pkg/orbit2/trunk/files/patch-test-foo.diff
===================================================================
--- csw/mgar/pkg/orbit2/trunk/files/patch-test-foo.diff 2010-03-31 12:22:43 UTC (rev 9486)
+++ csw/mgar/pkg/orbit2/trunk/files/patch-test-foo.diff 2010-03-31 12:29:31 UTC (rev 9487)
@@ -1,46 +0,0 @@
-$NetBSD: patch-aa,v 1.7 2009/03/06 14:02:32 wiz Exp $
-
---- src/idl-compiler/orbit-idl-c-headers.c.orig 2008-08-31 14:04:43.000000000 +0000
-+++ src/idl-compiler/orbit-idl-c-headers.c
-@@ -574,21 +574,29 @@ static void
- ch_output_codefrag(IDL_tree tree, OIDL_Run_Info *rinfo, OIDL_C_Info *ci)
- {
- GSList *list;
-+ char *ctmp;
-
- for(list = IDL_CODEFRAG(tree).lines; list;
- list = g_slist_next(list)) {
-- if(!strncmp(list->data,
-- "#pragma include_defs",
-- sizeof("#pragma include_defs")-1)) {
-- char *ctmp, *cte;
-- ctmp = ((char *)list->data) + sizeof("#pragma include_defs");
-- while(*ctmp && (isspace((int)*ctmp) || *ctmp == '"')) ctmp++;
-- cte = ctmp;
-- while(*cte && !isspace((int)*cte) && *cte != '"') cte++;
-- *cte = '\0';
-- fprintf(ci->fh, "#include <%s>\n", ctmp);
-- } else
-- fprintf(ci->fh, "%s\n", (char *)list->data);
-+ ctmp = list->data;
-+ if(!strncmp(ctmp, "#pragma", sizeof("#pragma")-1)) {
-+ ctmp += sizeof("#pragma")-1;
-+ if (*ctmp && (isspace((int)*ctmp))) {
-+ while(*ctmp && (isspace((int)*ctmp))) ctmp++;
-+ if(!strncmp(ctmp, "include_defs", sizeof("include_defs")-1)) {
-+ char *cte;
-+
-+ ctmp += sizeof("include_defs")-1;
-+ while(*ctmp && (isspace((int)*ctmp) || *ctmp == '"')) ctmp++;
-+ cte = ctmp;
-+ while(*cte && !isspace((int)*cte) && *cte != '"') cte++;
-+ *cte = '\0';
-+ fprintf(ci->fh, "#include <%s>\n", ctmp);
-+ continue;
-+ }
-+ }
-+ }
-+ fprintf(ci->fh, "%s\n", (char *)list->data);
- }
- }
-
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the devel
mailing list