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

dmichelsen at users.sourceforge.net dmichelsen at users.sourceforge.net
Thu Nov 25 12:56:17 CET 2010


Revision: 11718
          http://gar.svn.sourceforge.net/gar/?rev=11718&view=rev
Author:   dmichelsen
Date:     2010-11-25 11:56:16 +0000 (Thu, 25 Nov 2010)

Log Message:
-----------
mc: Initial commit

Added Paths:
-----------
    csw/mgar/pkg/mc/
    csw/mgar/pkg/mc/branches/
    csw/mgar/pkg/mc/tags/
    csw/mgar/pkg/mc/trunk/
    csw/mgar/pkg/mc/trunk/Makefile
    csw/mgar/pkg/mc/trunk/checksums
    csw/mgar/pkg/mc/trunk/files/
    csw/mgar/pkg/mc/trunk/files/0001-Honour-HAVE_STDINT_H.patch


Property changes on: csw/mgar/pkg/mc/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/mc/trunk/Makefile
===================================================================
--- csw/mgar/pkg/mc/trunk/Makefile	                        (rev 0)
+++ csw/mgar/pkg/mc/trunk/Makefile	2010-11-25 11:56:16 UTC (rev 11718)
@@ -0,0 +1,20 @@
+# $Id$
+GARNAME = mc
+GARVERSION = 4.7.0.10
+CATEGORIES = utils
+
+DESCRIPTION = A curses-based visual shell and file manager
+define BLURB
+endef
+
+MASTER_SITES = http://www.midnight-commander.org/downloads/
+DISTFILES  = $(DISTNAME).tar.lzma
+
+PATCHFILES = 0001-Honour-HAVE_STDINT_H.patch
+
+# File name regex to get notifications about upstream software releases
+UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz
+
+CONFIGURE_ARGS = $(DIRPATHS)
+
+include gar/category.mk


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

Added: csw/mgar/pkg/mc/trunk/checksums
===================================================================
--- csw/mgar/pkg/mc/trunk/checksums	                        (rev 0)
+++ csw/mgar/pkg/mc/trunk/checksums	2010-11-25 11:56:16 UTC (rev 11718)
@@ -0,0 +1 @@
+1c906166fcf1025c93ed37607085f33f  mc-4.7.0.10.tar.lzma

Added: csw/mgar/pkg/mc/trunk/files/0001-Honour-HAVE_STDINT_H.patch
===================================================================
--- csw/mgar/pkg/mc/trunk/files/0001-Honour-HAVE_STDINT_H.patch	                        (rev 0)
+++ csw/mgar/pkg/mc/trunk/files/0001-Honour-HAVE_STDINT_H.patch	2010-11-25 11:56:16 UTC (rev 11718)
@@ -0,0 +1,68 @@
+From 0bad1a848932b074637ea76251f3da1a655ff3ea Mon Sep 17 00:00:00 2001
+From: Dagobert Michelsen <dam at opencsw.org>
+Date: Thu, 25 Nov 2010 12:42:22 +0100
+Subject: [PATCH] Honour HAVE_STDINT_H
+
+---
+ lib/vfs/mc-vfs/direntry.c |    6 ++++++
+ lib/vfs/mc-vfs/fish.c     |    6 ++++++
+ lib/vfs/mc-vfs/ftpfs.c    |    6 ++++++
+ 3 files changed, 18 insertions(+), 0 deletions(-)
+
+diff --git a/lib/vfs/mc-vfs/direntry.c b/lib/vfs/mc-vfs/direntry.c
+index 055b1e7..311c715 100644
+--- a/lib/vfs/mc-vfs/direntry.c
++++ b/lib/vfs/mc-vfs/direntry.c
+@@ -35,7 +35,13 @@
+ 				/* includes fcntl.h see IEEE Std 1003.1-2008 */
+ #include <time.h>
+ #include <sys/time.h>		/* gettimeofday() */
++#ifdef HAVE_STDINT_H_WITH_UINTMAX
+ #include <stdint.h>             /* uintmax_t */
++#else
++#ifdef HAVE_INTTYPES_H_WITH_UINTMAX
++#include <inttypes.h>           /* uintmax_t */
++#endif
++#endif
+ 
+ #include "lib/global.h"
+ 
+diff --git a/lib/vfs/mc-vfs/fish.c b/lib/vfs/mc-vfs/fish.c
+index 6502549..e9d0406 100644
+--- a/lib/vfs/mc-vfs/fish.c
++++ b/lib/vfs/mc-vfs/fish.c
+@@ -54,7 +54,13 @@
+ #include <sys/time.h>           /* gettimeofday() */
+ #include <stdlib.h>
+ #include <string.h>
++#ifdef HAVE_STDINT_H_WITH_UINTMAX
+ #include <stdint.h>             /* uintmax_t */
++#else
++#ifdef HAVE_INTTYPES_H_WITH_UINTMAX
++#include <inttypes.h>           /* uintmax_t */
++#endif
++#endif
+ 
+ #include "lib/global.h"
+ #include "lib/fs.h"
+diff --git a/lib/vfs/mc-vfs/ftpfs.c b/lib/vfs/mc-vfs/ftpfs.c
+index 7c35749..d607dd1 100644
+--- a/lib/vfs/mc-vfs/ftpfs.c
++++ b/lib/vfs/mc-vfs/ftpfs.c
+@@ -84,7 +84,13 @@ What to do with this?
+ #include <ctype.h>
+ #include <fcntl.h>
+ #include <sys/time.h>           /* gettimeofday() */
++#ifdef HAVE_STDINT_H_WITH_UINTMAX
+ #include <stdint.h>             /* uintmax_t */
++#else
++#ifdef HAVE_INTTYPES_H_WITH_UINTMAX
++#include <inttypes.h>           /* uintmax_t */
++#endif
++#endif
+ 
+ #include "lib/global.h"
+ 
+-- 
+1.7.3
+


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