pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/sysutils/boxbackup-client Always write GNU make rules.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/b440be68fdeb
branches:  trunk
changeset: 353119:b440be68fdeb
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Thu Sep 29 12:19:48 2016 +0000

description:
Always write GNU make rules.

diffstat:

 sysutils/boxbackup-client/distinfo                                       |   3 +-
 sysutils/boxbackup-client/patches/patch-infrastructure_BoxPlatform.pm.in |  19 ++++++++++
 2 files changed, 21 insertions(+), 1 deletions(-)

diffs (37 lines):

diff -r 4106c32f6c4b -r b440be68fdeb sysutils/boxbackup-client/distinfo
--- a/sysutils/boxbackup-client/distinfo        Thu Sep 29 12:14:37 2016 +0000
+++ b/sysutils/boxbackup-client/distinfo        Thu Sep 29 12:19:48 2016 +0000
@@ -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 @@
 SHA1 (patch-aa) = d6c76bce9a706ee05a19705c80f367519316667f
 SHA1 (patch-ab) = c94b950a59f4d01b9e4dfb3b74d93b52ff264ed0
 SHA1 (patch-ac) = 7584de0bf727ad24f7d8d9c8d75ad24b29a676dc
+SHA1 (patch-infrastructure_BoxPlatform.pm.in) = aec1271129fc343fc44a305c2042528901605f99
diff -r 4106c32f6c4b -r b440be68fdeb sysutils/boxbackup-client/patches/patch-infrastructure_BoxPlatform.pm.in
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/boxbackup-client/patches/patch-infrastructure_BoxPlatform.pm.in  Thu Sep 29 12:19:48 2016 +0000
@@ -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