[Midnightbsd-cvs] mports [19011] trunk/devel/motor/files: update patches for motor

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Fri May 15 20:50:52 EDT 2015


Revision: 19011
          http://svnweb.midnightbsd.org/mports/?rev=19011
Author:   laffer1
Date:     2015-05-15 20:50:51 -0400 (Fri, 15 May 2015)
Log Message:
-----------
update patches for motor

Added Paths:
-----------
    trunk/devel/motor/files/patch-kksystr_include_kkiproc.h
    trunk/devel/motor/files/patch-share_Makefile.in
    trunk/devel/motor/files/patch-src__Makefile.in
    trunk/devel/motor/files/patch-src__configuration__Makefile.in
    trunk/devel/motor/files/patch-src__debugger__motordebugger.cc
    trunk/devel/motor/files/patch-src__manager__Makefile.in

Removed Paths:
-------------
    trunk/devel/motor/files/patch-parser::include::strfn.h
    trunk/devel/motor/files/patch-parser::src::strfn.c
    trunk/devel/motor/files/patch-share::Makefile.in
    trunk/devel/motor/files/patch-src::Makefile.in
    trunk/devel/motor/files/patch-src::configuration::Makefile.in
    trunk/devel/motor/files/patch-src::debugger::motordebugger.cc
    trunk/devel/motor/files/patch-src::manager::Makefile.in

Added: trunk/devel/motor/files/patch-kksystr_include_kkiproc.h
===================================================================
--- trunk/devel/motor/files/patch-kksystr_include_kkiproc.h	                        (rev 0)
+++ trunk/devel/motor/files/patch-kksystr_include_kkiproc.h	2015-05-16 00:50:51 UTC (rev 19011)
@@ -0,0 +1,12 @@
+--- kksystr/include/kkiproc.h.orig	2010-01-19 11:48:25.000000000 +0100
++++ kksystr/include/kkiproc.h	2010-01-19 11:48:55.000000000 +0100
+@@ -9,7 +9,9 @@
+ #include <string.h>
+ #include <sys/stat.h>
+ #include <sys/types.h>
++#ifdef __linux__
+ #include <utmp.h>
++#endif
+ #include <string.h>
+ #include <ctype.h>
+ 


Property changes on: trunk/devel/motor/files/patch-kksystr_include_kkiproc.h
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Deleted: trunk/devel/motor/files/patch-parser::include::strfn.h
===================================================================
--- trunk/devel/motor/files/patch-parser::include::strfn.h	2015-05-16 00:50:15 UTC (rev 19010)
+++ trunk/devel/motor/files/patch-parser::include::strfn.h	2015-05-16 00:50:51 UTC (rev 19011)
@@ -1,23 +0,0 @@
---- parser/include/strfn.h.orig	Wed Aug 22 04:32:11 2007
-+++ parser/include/strfn.h	Wed Aug 22 04:32:24 2007
-@@ -37,20 +37,6 @@
- /*****************************************************************************/
- 
- /*
--* strndup - Duplicate string with maximum length specified.
--*
--* WARNING: This function can process memory allocation.
--* 
--* Parameters:
--*	char *src - source string
--*	int size - new string maximum size
--*
--* Return value:
--* 	char * - new string
--*/
--char *strndup(const char *src, int size);
--
--/*
- * strappend - Append source string to destination.
- *
- * WARNING: This function can process memory allocation.

Deleted: trunk/devel/motor/files/patch-parser::src::strfn.c
===================================================================
--- trunk/devel/motor/files/patch-parser::src::strfn.c	2015-05-16 00:50:15 UTC (rev 19010)
+++ trunk/devel/motor/files/patch-parser::src::strfn.c	2015-05-16 00:50:51 UTC (rev 19011)
@@ -1,22 +0,0 @@
---- parser/src/strfn.c.orig	Wed Aug 22 04:31:48 2007
-+++ parser/src/strfn.c	Wed Aug 22 04:31:59 2007
-@@ -44,19 +44,6 @@
-     return z;
- }
- 
--/* string function */
--char *strndup(const char *src, int size) {
--    int s;
--    char *r;
--
--    if ((s = strlen(src)) > size) s = size;
--    
--    r = calloc(1, s + 1);
--    memcpy(r, src, s);
--    
--    return r;
--}
--
- char *strappend(char *dst, const char *src) {
-     int dlen;
-     

Deleted: trunk/devel/motor/files/patch-share::Makefile.in
===================================================================
--- trunk/devel/motor/files/patch-share::Makefile.in	2015-05-16 00:50:15 UTC (rev 19010)
+++ trunk/devel/motor/files/patch-share::Makefile.in	2015-05-16 00:50:51 UTC (rev 19011)
@@ -1,13 +0,0 @@
---- share/Makefile.in.orig	Wed Aug 22 06:08:40 2007
-+++ share/Makefile.in	Wed Aug 22 06:09:12 2007
-@@ -225,8 +225,8 @@
- 	-if test -d templates; then rm -f tmpl.tar.gz; fi
- 
- install-data-local: tmpl.tar.gz
--	tar zxvf tmpl.tar.gz -C $(datadir)/motor/
--	-find $(datadir)/motor/ -name CVS -type d -exec rm -rf {} \;
-+	tar zxvf tmpl.tar.gz -C ${DESTDIR}$(datadir)/motor/
-+	-find ${DESTDIR}$(datadir)/motor/ -name CVS -type d -exec rm -rf {} \;
- 	if test -d templates; then rm -f tmpl.tar.gz; fi
- 
- uninstall-local:

Added: trunk/devel/motor/files/patch-share_Makefile.in
===================================================================
--- trunk/devel/motor/files/patch-share_Makefile.in	                        (rev 0)
+++ trunk/devel/motor/files/patch-share_Makefile.in	2015-05-16 00:50:51 UTC (rev 19011)
@@ -0,0 +1,13 @@
+--- share/Makefile.in.bak	2005-02-12 15:07:17.000000000 +0000
++++ share/Makefile.in	2014-05-12 14:01:17.878391804 +0000
+@@ -225,8 +225,8 @@
+ 	-if test -d templates; then rm -f tmpl.tar.gz; fi
+ 
+ install-data-local: tmpl.tar.gz
+-	tar zxvf tmpl.tar.gz -C $(datadir)/motor/
+-	-find $(datadir)/motor/ -name CVS -type d -exec rm -rf {} \;
++	tar zxvfo tmpl.tar.gz -C $(DESTDIR)$(datadir)/motor/
++	-find $(DESTDIR)$(datadir)/motor/ -name CVS -type d -exec rm -rf {} \;
+ 	if test -d templates; then rm -f tmpl.tar.gz; fi
+ 
+ uninstall-local:


Property changes on: trunk/devel/motor/files/patch-share_Makefile.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Deleted: trunk/devel/motor/files/patch-src::Makefile.in
===================================================================
--- trunk/devel/motor/files/patch-src::Makefile.in	2015-05-16 00:50:15 UTC (rev 19010)
+++ trunk/devel/motor/files/patch-src::Makefile.in	2015-05-16 00:50:51 UTC (rev 19011)
@@ -1,14 +0,0 @@
-
-$FreeBSD: ports/devel/motor/files/patch-src::Makefile.in,v 1.4 2002/05/16 11:22:06 sobomax Exp $
-
---- src/Makefile.in	2002/05/16 11:05:11	1.1
-+++ src/Makefile.in	2002/05/16 11:05:22
-@@ -90,7 +90,7 @@
- INCLUDES = -I$(top_srcdir)/kkstrtext -I$(top_srcdir)/kksystr/include     -I$(top_srcdir)/kkconsui/include -I$(top_srcdir)/intl     -I$(top_srcdir)/src/ui -I$(top_srcdir)/src/ui/ncurses     -I$(top_srcdir)/src/debugger -I$(top_srcdir)/src/executor     -I$(top_srcdir)/src/project -I$(top_srcdir)/src/configuration     -I$(top_srcdir)/src/manager -I$(top_srcdir)/src/grepper     -I$(top_srcdir)/src/tagbrowser -I$(top_srcdir)/src/vcs     -I$(top_srcdir)/parser/include
- 
- 
--CPPFLAGS = -DSHARE_DIR=\"$(pkgdatadir)\" -DLOCALE_DIR=\"$(datadir)/locale\"
-+CPPFLAGS = @CPPFLAGS@ -DSHARE_DIR=\"$(pkgdatadir)\" -DLOCALE_DIR=\"$(datadir)/locale\"
- 
- bin_PROGRAMS = motor
- motor_SOURCES = main.cc motormisc.cc

Deleted: trunk/devel/motor/files/patch-src::configuration::Makefile.in
===================================================================
--- trunk/devel/motor/files/patch-src::configuration::Makefile.in	2015-05-16 00:50:15 UTC (rev 19010)
+++ trunk/devel/motor/files/patch-src::configuration::Makefile.in	2015-05-16 00:50:51 UTC (rev 19011)
@@ -1,14 +0,0 @@
-
-$FreeBSD: ports/devel/motor/files/patch-src::configuration::Makefile.in,v 1.2 2002/05/16 11:22:06 sobomax Exp $
-
---- src/configuration/Makefile.in	2002/05/16 11:01:44	1.1
-+++ src/configuration/Makefile.in	2002/05/16 11:02:59
-@@ -89,7 +89,7 @@
- INCLUDES = -I$(top_srcdir)/kkstrtext -I$(top_srcdir)/kkconsui/include     -I$(top_srcdir)/kksystr/include -I$(top_srcdir)/intl     -I$(top_srcdir)/src/ui/ncurses -I$(top_srcdir)/src/debugger     -I$(top_srcdir)/src/executor -I$(top_srcdir)/src/project     -I$(top_srcdir)/src/ui -I$(top_srcdir)/src/tagbrowser -I$(top_srcdir)/src     -I$(top_srcdir)/parser/include
- 
- 
--CPPFLAGS = -DSHARE_DIR=\"$(pkgdatadir)\" -DLOCALE_DIR=\"$(datadir)/locale\"
-+CPPFLAGS = @CPPFLAGS@ -DSHARE_DIR=\"$(pkgdatadir)\" -DLOCALE_DIR=\"$(datadir)/locale\"
- 
- libconfiguration_a_SOURCES = motorconfiguration.cc extkey.cc
- 

Deleted: trunk/devel/motor/files/patch-src::debugger::motordebugger.cc
===================================================================
--- trunk/devel/motor/files/patch-src::debugger::motordebugger.cc	2015-05-16 00:50:15 UTC (rev 19010)
+++ trunk/devel/motor/files/patch-src::debugger::motordebugger.cc	2015-05-16 00:50:51 UTC (rev 19011)
@@ -1,10 +0,0 @@
---- src/debugger/motordebugger.cc.orig	Tue Oct 12 12:34:20 2004
-+++ src/debugger/motordebugger.cc	Tue Oct 12 12:34:52 2004
-@@ -9,6 +9,7 @@
- 
- #include <strstream>
- #include <iostream>
-+#include <memory>
- #include <fcntl.h>
- #include <sys/ioctl.h>
- #include <sys/wait.h>

Deleted: trunk/devel/motor/files/patch-src::manager::Makefile.in
===================================================================
--- trunk/devel/motor/files/patch-src::manager::Makefile.in	2015-05-16 00:50:15 UTC (rev 19010)
+++ trunk/devel/motor/files/patch-src::manager::Makefile.in	2015-05-16 00:50:51 UTC (rev 19011)
@@ -1,14 +0,0 @@
-
-$FreeBSD: ports/devel/motor/files/patch-src::manager::Makefile.in,v 1.2 2002/05/16 11:22:06 sobomax Exp $
-
---- src/manager/Makefile.in	2002/05/16 11:03:39	1.1
-+++ src/manager/Makefile.in	2002/05/16 11:03:53
-@@ -89,7 +89,7 @@
- INCLUDES = -I$(top_srcdir)/kkstrtext -I$(top_srcdir)/kkconsui/include     -I$(top_srcdir)/kksystr/include -I$(top_srcdir)/intl     -I$(top_srcdir)/src/ui/ncurses -I$(top_srcdir)/src/debugger     -I$(top_srcdir)/src/executor -I$(top_srcdir)/src/project     -I$(top_srcdir)/src/configuration -I$(top_srcdir)/src     -I$(top_srcdir)/src/tagbrowser -I$(top_srcdir)/parser/include
- 
- 
--CPPFLAGS = -DSHARE_DIR=\"$(pkgdatadir)\" -DLOCALE_DIR=\"$(datadir)/locale\"
-+CPPFLAGS = @CPPFLAGS@ -DSHARE_DIR=\"$(pkgdatadir)\" -DLOCALE_DIR=\"$(datadir)/locale\"
- 
- libmanager_a_SOURCES = motormanager.cc
- 

Added: trunk/devel/motor/files/patch-src__Makefile.in
===================================================================
--- trunk/devel/motor/files/patch-src__Makefile.in	                        (rev 0)
+++ trunk/devel/motor/files/patch-src__Makefile.in	2015-05-16 00:50:51 UTC (rev 19011)
@@ -0,0 +1,14 @@
+
+$FreeBSD: head/devel/motor/files/patch-src__Makefile.in 363362 2014-07-29 17:12:47Z adamw $
+
+--- src/Makefile.in	2002/05/16 11:05:11	1.1
++++ src/Makefile.in	2002/05/16 11:05:22
+@@ -90,7 +90,7 @@
+ INCLUDES = -I$(top_srcdir)/kkstrtext -I$(top_srcdir)/kksystr/include     -I$(top_srcdir)/kkconsui/include -I$(top_srcdir)/intl     -I$(top_srcdir)/src/ui -I$(top_srcdir)/src/ui/ncurses     -I$(top_srcdir)/src/debugger -I$(top_srcdir)/src/executor     -I$(top_srcdir)/src/project -I$(top_srcdir)/src/configuration     -I$(top_srcdir)/src/manager -I$(top_srcdir)/src/grepper     -I$(top_srcdir)/src/tagbrowser -I$(top_srcdir)/src/vcs     -I$(top_srcdir)/parser/include
+ 
+ 
+-CPPFLAGS = -DSHARE_DIR=\"$(pkgdatadir)\" -DLOCALE_DIR=\"$(datadir)/locale\"
++CPPFLAGS = @CPPFLAGS@ -DSHARE_DIR=\"$(pkgdatadir)\" -DLOCALE_DIR=\"$(datadir)/locale\"
+ 
+ bin_PROGRAMS = motor
+ motor_SOURCES = main.cc motormisc.cc


Property changes on: trunk/devel/motor/files/patch-src__Makefile.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/devel/motor/files/patch-src__configuration__Makefile.in
===================================================================
--- trunk/devel/motor/files/patch-src__configuration__Makefile.in	                        (rev 0)
+++ trunk/devel/motor/files/patch-src__configuration__Makefile.in	2015-05-16 00:50:51 UTC (rev 19011)
@@ -0,0 +1,14 @@
+
+$FreeBSD: head/devel/motor/files/patch-src__configuration__Makefile.in 363362 2014-07-29 17:12:47Z adamw $
+
+--- src/configuration/Makefile.in	2002/05/16 11:01:44	1.1
++++ src/configuration/Makefile.in	2002/05/16 11:02:59
+@@ -89,7 +89,7 @@
+ INCLUDES = -I$(top_srcdir)/kkstrtext -I$(top_srcdir)/kkconsui/include     -I$(top_srcdir)/kksystr/include -I$(top_srcdir)/intl     -I$(top_srcdir)/src/ui/ncurses -I$(top_srcdir)/src/debugger     -I$(top_srcdir)/src/executor -I$(top_srcdir)/src/project     -I$(top_srcdir)/src/ui -I$(top_srcdir)/src/tagbrowser -I$(top_srcdir)/src     -I$(top_srcdir)/parser/include
+ 
+ 
+-CPPFLAGS = -DSHARE_DIR=\"$(pkgdatadir)\" -DLOCALE_DIR=\"$(datadir)/locale\"
++CPPFLAGS = @CPPFLAGS@ -DSHARE_DIR=\"$(pkgdatadir)\" -DLOCALE_DIR=\"$(datadir)/locale\"
+ 
+ libconfiguration_a_SOURCES = motorconfiguration.cc extkey.cc
+ 


Property changes on: trunk/devel/motor/files/patch-src__configuration__Makefile.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/devel/motor/files/patch-src__debugger__motordebugger.cc
===================================================================
--- trunk/devel/motor/files/patch-src__debugger__motordebugger.cc	                        (rev 0)
+++ trunk/devel/motor/files/patch-src__debugger__motordebugger.cc	2015-05-16 00:50:51 UTC (rev 19011)
@@ -0,0 +1,10 @@
+--- src/debugger/motordebugger.cc.orig	Tue Oct 12 12:34:20 2004
++++ src/debugger/motordebugger.cc	Tue Oct 12 12:34:52 2004
+@@ -9,6 +9,7 @@
+ 
+ #include <strstream>
+ #include <iostream>
++#include <memory>
+ #include <fcntl.h>
+ #include <sys/ioctl.h>
+ #include <sys/wait.h>


Property changes on: trunk/devel/motor/files/patch-src__debugger__motordebugger.cc
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/devel/motor/files/patch-src__manager__Makefile.in
===================================================================
--- trunk/devel/motor/files/patch-src__manager__Makefile.in	                        (rev 0)
+++ trunk/devel/motor/files/patch-src__manager__Makefile.in	2015-05-16 00:50:51 UTC (rev 19011)
@@ -0,0 +1,14 @@
+
+$FreeBSD: head/devel/motor/files/patch-src__manager__Makefile.in 363362 2014-07-29 17:12:47Z adamw $
+
+--- src/manager/Makefile.in	2002/05/16 11:03:39	1.1
++++ src/manager/Makefile.in	2002/05/16 11:03:53
+@@ -89,7 +89,7 @@
+ INCLUDES = -I$(top_srcdir)/kkstrtext -I$(top_srcdir)/kkconsui/include     -I$(top_srcdir)/kksystr/include -I$(top_srcdir)/intl     -I$(top_srcdir)/src/ui/ncurses -I$(top_srcdir)/src/debugger     -I$(top_srcdir)/src/executor -I$(top_srcdir)/src/project     -I$(top_srcdir)/src/configuration -I$(top_srcdir)/src     -I$(top_srcdir)/src/tagbrowser -I$(top_srcdir)/parser/include
+ 
+ 
+-CPPFLAGS = -DSHARE_DIR=\"$(pkgdatadir)\" -DLOCALE_DIR=\"$(datadir)/locale\"
++CPPFLAGS = @CPPFLAGS@ -DSHARE_DIR=\"$(pkgdatadir)\" -DLOCALE_DIR=\"$(datadir)/locale\"
+ 
+ libmanager_a_SOURCES = motormanager.cc
+ 


Property changes on: trunk/devel/motor/files/patch-src__manager__Makefile.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property


More information about the Midnightbsd-cvs mailing list