pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/sysutils/boxbackup-client



Module Name:    pkgsrc
Committed By:   joerg
Date:           Thu Sep 29 12:19:48 UTC 2016

Modified Files:
        pkgsrc/sysutils/boxbackup-client: distinfo
Added Files:
        pkgsrc/sysutils/boxbackup-client/patches:
            patch-infrastructure_BoxPlatform.pm.in

Log Message:
Always write GNU make rules.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/sysutils/boxbackup-client/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/sysutils/boxbackup-client/patches/patch-infrastructure_BoxPlatform.pm.in

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/sysutils/boxbackup-client/distinfo
diff -u pkgsrc/sysutils/boxbackup-client/distinfo:1.6 pkgsrc/sysutils/boxbackup-client/distinfo:1.7
--- pkgsrc/sysutils/boxbackup-client/distinfo:1.6       Wed Nov  4 01:32:07 2015
+++ pkgsrc/sysutils/boxbackup-client/distinfo   Thu Sep 29 12:19:48 2016
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.6 2015/11/04 01:32:07 agc Exp $
+$NetBSD: distinfo,v 1.7 2016/09/29 12:19:48 joerg Exp $
 
 SHA1 (boxbackup-0.11.1.tgz) = 254253dbfc8cbfc2e5272d1e3589d4d73ccf3597
 RMD160 (boxbackup-0.11.1.tgz) = 17553b3ff06d19f353dbadc0166b7dceaa11c271
@@ -7,3 +7,4 @@ Size (boxbackup-0.11.1.tgz) = 1863270 by
 SHA1 (patch-aa) = d6c76bce9a706ee05a19705c80f367519316667f
 SHA1 (patch-ab) = c94b950a59f4d01b9e4dfb3b74d93b52ff264ed0
 SHA1 (patch-ac) = 7584de0bf727ad24f7d8d9c8d75ad24b29a676dc
+SHA1 (patch-infrastructure_BoxPlatform.pm.in) = aec1271129fc343fc44a305c2042528901605f99

Added files:

Index: pkgsrc/sysutils/boxbackup-client/patches/patch-infrastructure_BoxPlatform.pm.in
diff -u /dev/null pkgsrc/sysutils/boxbackup-client/patches/patch-infrastructure_BoxPlatform.pm.in:1.1
--- /dev/null   Thu Sep 29 12:19:48 2016
+++ pkgsrc/sysutils/boxbackup-client/patches/patch-infrastructure_BoxPlatform.pm.in     Thu Sep 29 12:19:48 2016
@@ -0,0 +1,19 @@
+$NetBSD: patch-infrastructure_BoxPlatform.pm.in,v 1.1 2016/09/29 12:19:48 joerg Exp $
+
+Force use of GNU make everywhere, the BSD make rules just don't work.
+
+--- infrastructure/BoxPlatform.pm.in.orig      2016-09-29 09:25:56.000000000 +0000
++++ infrastructure/BoxPlatform.pm.in
+@@ -25,10 +25,9 @@ BEGIN
+       # Box Backup tried on Win2000,XP only :)
+       $build_os = 'CYGWIN' if $build_os =~ m/CYGWIN/;
+ 
+-      $make_command = ($build_os eq 'Darwin') ? 'bsdmake' : ($build_os eq 'SunOS') ? 'gmake' : 'make';
++      $make_command = 'gmake';
+ 
+-      $bsd_make = ($build_os ne 'Linux' && $build_os ne 'CYGWIN' &&
+-              $build_os ne "SunOS" && $build_os ne 'GNU/kFreeBSD');
++      $bsd_make = 0;
+ 
+       # blank extra flags by default
+       $platform_compile_line_extra = '';



Home | Main Index | Thread Index | Old Index