Import of pkgsrc-2015Q1

This commit is contained in:
2015-04-22 14:34:26 +02:00
committed by Lionel Sambuc
parent 9a8c06dafb
commit 4af1cdf7a9
25114 changed files with 870550 additions and 795435 deletions

View File

@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.18 2012/10/02 20:11:36 asau Exp $
# $NetBSD: Makefile,v 1.19 2015/01/04 03:14:00 dholland Exp $
#
DISTNAME= b116
@@ -13,7 +13,7 @@ MAINTAINER= abs@NetBSD.org
HOMEPAGE= http://jaguar.orpheusweb.co.uk/branpage.html
COMMENT= Brandy Basic V interpreter - Acorn ARM Computers BASIC dialect
NOT_FOR_PLATFORM= SunOS-*-* # needs porting
BROKEN_ON_PLATFORM= SunOS-*-* # needs porting
WRKSRC= ${WRKDIR}/brandy-1.0.16
DOCDIR= share/doc/brandy

View File

@@ -1,6 +1,7 @@
$NetBSD: distinfo,v 1.6 2007/06/30 18:31:52 joerg Exp $
$NetBSD: distinfo,v 1.7 2014/06/29 04:39:58 dholland Exp $
SHA1 (b116.tgz) = 5c149c54f2d55bc16e1ccf84c811234c5b1d7285
RMD160 (b116.tgz) = 7cec7b35e2b5ce89b81e8e3f10d0db9838a8cbf5
Size (b116.tgz) = 381894 bytes
SHA1 (patch-aa) = a5b12fb2a0b7483bd0591d004c87642a394d4253
SHA1 (patch-src_textonly.c) = d5cde92c8785b21182ab498d3868c4c795b828d6

View File

@@ -0,0 +1,16 @@
$NetBSD: patch-src_textonly.c,v 1.1 2014/06/29 04:39:58 dholland Exp $
This package for some reason thinks MacOS comes with DOS <conio.h>. It
doesn't.
--- src/textonly.c~ 2004-01-26 18:09:25.000000000 +0000
+++ src/textonly.c
@@ -40,7 +40,7 @@
#include "screen.h"
#include "keyboard.h"
-#if defined(TARGET_WIN32) | defined(TARGET_DJGPP) | defined(TARGET_BCC32) | defined(TARGET_MACOSX)
+#if defined(TARGET_WIN32) | defined(TARGET_DJGPP) | defined(TARGET_BCC32)
#include "conio.h"
#else
#define USE_ANSI /* Have to use ANSI control sequences, not conio */