summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2016-09-29 12:19:48 +0000
committerjoerg <joerg@pkgsrc.org>2016-09-29 12:19:48 +0000
commite47eff7a95b351fd38e674a4e3e7e199b3b462f4 (patch)
treebccebff11c9af1a710357322c160abdf49fedd17 /sysutils
parentfa66e512433673e087ca5e244045b8cd5b24ccae (diff)
downloadpkgsrc-e47eff7a95b351fd38e674a4e3e7e199b3b462f4.tar.gz
Always write GNU make rules.
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/boxbackup-client/distinfo3
-rw-r--r--sysutils/boxbackup-client/patches/patch-infrastructure_BoxPlatform.pm.in19
2 files changed, 21 insertions, 1 deletions
diff --git a/sysutils/boxbackup-client/distinfo b/sysutils/boxbackup-client/distinfo
index 6712c1c3a30..3863596f9c8 100644
--- a/sysutils/boxbackup-client/distinfo
+++ b/sysutils/boxbackup-client/distinfo
@@ -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 bytes
SHA1 (patch-aa) = d6c76bce9a706ee05a19705c80f367519316667f
SHA1 (patch-ab) = c94b950a59f4d01b9e4dfb3b74d93b52ff264ed0
SHA1 (patch-ac) = 7584de0bf727ad24f7d8d9c8d75ad24b29a676dc
+SHA1 (patch-infrastructure_BoxPlatform.pm.in) = aec1271129fc343fc44a305c2042528901605f99
diff --git a/sysutils/boxbackup-client/patches/patch-infrastructure_BoxPlatform.pm.in b/sysutils/boxbackup-client/patches/patch-infrastructure_BoxPlatform.pm.in
new file mode 100644
index 00000000000..51a3992411d
--- /dev/null
+++ b/sysutils/boxbackup-client/patches/patch-infrastructure_BoxPlatform.pm.in
@@ -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 = '';