[csw-devel] SF.net SVN: gar:[10686] csw/mgar/pkg

dmichelsen at users.sourceforge.net dmichelsen at users.sourceforge.net
Tue Aug 3 12:21:37 CEST 2010


Revision: 10686
          http://gar.svn.sourceforge.net/gar/?rev=10686&view=rev
Author:   dmichelsen
Date:     2010-08-03 10:21:36 +0000 (Tue, 03 Aug 2010)

Log Message:
-----------
liborc: Initial commit, most tests fail

Added Paths:
-----------
    csw/mgar/pkg/liborc/
    csw/mgar/pkg/liborc/branches/
    csw/mgar/pkg/liborc/tags/
    csw/mgar/pkg/liborc/trunk/
    csw/mgar/pkg/liborc/trunk/Makefile
    csw/mgar/pkg/liborc/trunk/checksums
    csw/mgar/pkg/liborc/trunk/files/
    csw/mgar/pkg/liborc/trunk/files/0001-Use-getisax-on-Solaris-only-when-available-not-avail.patch


Property changes on: csw/mgar/pkg/liborc/trunk
___________________________________________________________________
Added: svn:ignore
   + cookies
download
work


Added: svn:externals
   + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2


Added: csw/mgar/pkg/liborc/trunk/Makefile
===================================================================
--- csw/mgar/pkg/liborc/trunk/Makefile	                        (rev 0)
+++ csw/mgar/pkg/liborc/trunk/Makefile	2010-08-03 10:21:36 UTC (rev 10686)
@@ -0,0 +1,29 @@
+# $Id$
+GARNAME = liborc
+GARVERSION = 0.4.6
+CATEGORIES = lib
+
+DESCRIPTION = The Oil Runtime Compiler
+define BLURB
+  Orc is a library and set of tools for compiling and executing very simple programs that operate on arrays of data.
+  The language is a generic assembly language that represents many of the features available in SIMD architectures,
+  including saturated addition and subtraction, and many arithmetic operations.
+endef
+
+MASTER_SITES = http://code.entropywave.com/download/orc/
+DISTNAME = orc-$(GARVERSION)
+DISTFILES  = $(DISTNAME).tar.gz
+
+# File name regex to get notifications about upstream software releases
+UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz
+
+VENDOR_URL = http://code.entropywave.com/projects/orc/
+
+BUILD64 = 1
+NOISAEXEC = 1
+NOISALIST = 1
+CONFIGURE_ARGS = $(DIRPATHS)
+
+TEST_TARGET = check
+
+include gar/category.mk


Property changes on: csw/mgar/pkg/liborc/trunk/Makefile
___________________________________________________________________
Added: svn:keywords
   + Id

Added: csw/mgar/pkg/liborc/trunk/checksums
===================================================================
--- csw/mgar/pkg/liborc/trunk/checksums	                        (rev 0)
+++ csw/mgar/pkg/liborc/trunk/checksums	2010-08-03 10:21:36 UTC (rev 10686)
@@ -0,0 +1 @@
+98e0a61bbfee84a0a6dfd8f7e5600d5c  orc-0.4.6.tar.gz

Added: csw/mgar/pkg/liborc/trunk/files/0001-Use-getisax-on-Solaris-only-when-available-not-avail.patch
===================================================================
--- csw/mgar/pkg/liborc/trunk/files/0001-Use-getisax-on-Solaris-only-when-available-not-avail.patch	                        (rev 0)
+++ csw/mgar/pkg/liborc/trunk/files/0001-Use-getisax-on-Solaris-only-when-available-not-avail.patch	2010-08-03 10:21:36 UTC (rev 10686)
@@ -0,0 +1,26 @@
+From 7dea861f0db034574600ce648c173dd1a359e61c Mon Sep 17 00:00:00 2001
+From: Dagobert Michelsen <dam at opencsw.org>
+Date: Tue, 3 Aug 2010 10:28:33 +0200
+Subject: [PATCH] Use getisax on Solaris only when available (not available before Solaris 10)
+
+---
+ orc/orccpu-x86.c |    2 ++
+ 1 files changed, 2 insertions(+), 0 deletions(-)
+
+diff --git a/orc/orccpu-x86.c b/orc/orccpu-x86.c
+index a63e8db..8e62ed3 100644
+--- a/orc/orccpu-x86.c
++++ b/orc/orccpu-x86.c
+@@ -54,7 +54,9 @@
+ /***** i386, amd64 *****/
+ 
+ #if defined(__sun)
++#if defined(_SYS_AUXV_386_H)
+ #define USE_I386_GETISAX
++#endif
+ #else
+ #define USE_I386_CPUID
+ #endif
+-- 
+1.7.1
+


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