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

dmichelsen at users.sourceforge.net dmichelsen at users.sourceforge.net
Wed Mar 14 15:48:08 CET 2012


Revision: 17402
          http://gar.svn.sourceforge.net/gar/?rev=17402&view=rev
Author:   dmichelsen
Date:     2012-03-14 14:48:08 +0000 (Wed, 14 Mar 2012)
Log Message:
-----------
redis/trunk: Initial commit

Added Paths:
-----------
    csw/mgar/pkg/redis/
    csw/mgar/pkg/redis/Makefile
    csw/mgar/pkg/redis/branches/
    csw/mgar/pkg/redis/tags/
    csw/mgar/pkg/redis/trunk/
    csw/mgar/pkg/redis/trunk/Makefile
    csw/mgar/pkg/redis/trunk/checksums
    csw/mgar/pkg/redis/trunk/files/
    csw/mgar/pkg/redis/trunk/files/0001-backtrace-is-only-available-on-Solaris-11.patch

Added: csw/mgar/pkg/redis/Makefile
===================================================================
--- csw/mgar/pkg/redis/Makefile	                        (rev 0)
+++ csw/mgar/pkg/redis/Makefile	2012-03-14 14:48:08 UTC (rev 17402)
@@ -0,0 +1,2 @@
+%:
+	$(MAKE) -C trunk $*


Property changes on: csw/mgar/pkg/redis/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/redis/trunk/Makefile
===================================================================
--- csw/mgar/pkg/redis/trunk/Makefile	                        (rev 0)
+++ csw/mgar/pkg/redis/trunk/Makefile	2012-03-14 14:48:08 UTC (rev 17402)
@@ -0,0 +1,43 @@
+# $Id$
+# TODO (release-critical prefixed with !, non release-critical with *)
+#
+NAME = redis
+VERSION = 2.4.8
+GARTYPE = v2
+CATEGORIES = server
+
+DESCRIPTION = An advanced key-value store
+define BLURB
+endef
+
+MASTER_SITES = $(GOOGLE_MIRROR)
+DISTFILES  = $(DISTNAME).tar.gz
+
+PATCHFILES += 0001-backtrace-is-only-available-on-Solaris-11.patch
+
+PACKAGING_PLATFORMS = solaris10-sparc solaris10-i386
+
+PACKAGES += CSWredis
+SPKG_DESC_CSWredis = An advanced key-value store
+# PKGFILES is catchall
+
+GARCOMPILER = GCC4
+
+# These are set in the Makefile and are not inherited when we force our CFLAGS in
+EXTRA_CFLAGS += -std=c99 -pedantic -Wall -W -D__EXTENSIONS__ -D_XPG6
+
+# There is no configure
+CONFIGURE_SCRIPTS =
+
+BUILD_ARGS += V=1
+
+TEST_TARGET = test
+
+# We need TCL 8.5 for this which we don't have yet
+SKIPTEST ?= 1
+
+INSTALL_OVERRIDE_VARS += PREFIX
+INSTALL_OVERRIDE_VAR_PREFIX = $(DESTDIR)$(prefix)
+
+include gar/category.mk
+


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

Added: csw/mgar/pkg/redis/trunk/checksums
===================================================================
--- csw/mgar/pkg/redis/trunk/checksums	                        (rev 0)
+++ csw/mgar/pkg/redis/trunk/checksums	2012-03-14 14:48:08 UTC (rev 17402)
@@ -0,0 +1 @@
+ac776d25f238b142d3d526cfcdc621ab  redis-2.4.8.tar.gz

Added: csw/mgar/pkg/redis/trunk/files/0001-backtrace-is-only-available-on-Solaris-11.patch
===================================================================
--- csw/mgar/pkg/redis/trunk/files/0001-backtrace-is-only-available-on-Solaris-11.patch	                        (rev 0)
+++ csw/mgar/pkg/redis/trunk/files/0001-backtrace-is-only-available-on-Solaris-11.patch	2012-03-14 14:48:08 UTC (rev 17402)
@@ -0,0 +1,25 @@
+From d1163310acf3800e43c3d0cf92dfc543b1c874a8 Mon Sep 17 00:00:00 2001
+From: Dagobert Michelsen <da\xC2m at opencsw.org>
+Date: Wed, 14 Mar 2012 15:27:11 +0100
+Subject: [PATCH] backtrace() is only available on Solaris 11+
+
+---
+ src/config.h |    2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/src/config.h b/src/config.h
+index 77fed7d..1057b8b 100644
+--- a/src/config.h
++++ b/src/config.h
+@@ -25,7 +25,7 @@
+ #endif
+ 
+ /* Test for backtrace() */
+-#if defined(__APPLE__) || defined(__linux__) || defined(__sun)
++#if defined(__APPLE__) || defined(__linux__)
+ #define HAVE_BACKTRACE 1
+ #endif
+ 
+-- 
+1.7.9
+

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