Import of pkgsrc-2016Q3

This commit is contained in:
2016-10-14 07:49:11 +02:00
committed by Lionel Sambuc
parent 9d819b6d54
commit 1242aa1e36
35952 changed files with 949749 additions and 377083 deletions

View File

@@ -1,9 +1,9 @@
# $NetBSD: Makefile,v 1.15 2015/06/12 10:51:11 wiz Exp $
# $NetBSD: Makefile,v 1.18 2016/09/19 13:40:33 wiedi Exp $
#
DISTNAME= boxbackup-0.11.1
PKGNAME= boxbackup-client-0.11.1
PKGREVISION= 6
PKGREVISION= 8
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=boxbackup/}
EXTRACT_SUFX= .tgz
@@ -16,7 +16,7 @@ MAKE_JOBS_SAFE= no
GNU_CONFIGURE= yes
USE_LANGUAGES= c++
USE_TOOLS+= perl:run
USE_TOOLS+= perl:run gmake
REPLACE_PERL+= bin/bbackupd/bbackupd-config

View File

@@ -1,8 +1,10 @@
$NetBSD: distinfo,v 1.5 2012/03/07 19:25:27 drochner 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
SHA512 (boxbackup-0.11.1.tgz) = 15ceceae3659f14254f422136805a8b3ed3c39d14f8a1ffd0c96efb05b7acb5be310e13144ed86fe4afd24a3c0b86ec771b7d3a9f08b2789bb98e18468ca97f8
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

View File

@@ -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 = '';