- Update to 3.8-0.

This commit is contained in:
Edward Tomasz Napierala 2008-07-22 22:01:28 +00:00
parent b874e7ee7b
commit 8db298eb23
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=217317
3 changed files with 21 additions and 17 deletions

View file

@ -6,10 +6,10 @@
#
PORTNAME= simh
PORTVERSION= 3.7.3
PORTVERSION= 3.8.0
CATEGORIES= emulators
MASTER_SITES= http://simh.trailing-edge.com/sources/
DISTNAME= ${PORTNAME}v37-3
DISTNAME= ${PORTNAME}v38-0
MAINTAINER= trasz@FreeBSD.org
COMMENT= Emulates classic DEC, HP, GRI, IBM, Altair, SDS, Honeywell, and others
@ -26,7 +26,7 @@ BIN_FILES= altair altairz80 gri h316 hp2100 i1401 i1620 i7094 ibm1130 \
id16 id32 lgp nova pdp1 pdp10 pdp11 pdp15 pdp4 pdp7 pdp8 pdp9 \
s3 sds vax vax780
PORTDOCS= 0readme_37.txt 0readme_ethernet.txt
PORTDOCS= 0readme_38.txt 0readme_ethernet.txt
PLIST_FILES= ${BIN_FILES:S/^/bin\//g} %%DATADIR%%/ka655x.bin bin/simh-eclipse
PLIST_DIRS= %%DATADIR%%

View file

@ -1,3 +1,3 @@
MD5 (simhv37-3.zip) = 370305b11e3516d3416cbb78aedf1050
SHA256 (simhv37-3.zip) = 9d023ffdcaeed528b5f9ed3a4fa71ae6105a2e2c5e8ffe44891ca4868c4d1079
SIZE (simhv37-3.zip) = 2361222
MD5 (simhv38-0.zip) = d4bf6b7708e1f429e1e9b3c9e3e93b24
SHA256 (simhv38-0.zip) = 5ed1843b2d80aeea467b60202483d86ce3ee311e0fd8a6920a1a0c12f380e6b7
SIZE (simhv38-0.zip) = 2775593

View file

@ -1,11 +1,15 @@
--- makefile.orig Tue Feb 6 19:24:54 2007
+++ makefile Tue May 22 20:10:20 2007
@@ -13,7 +13,7 @@
ifeq ($(OSTYPE),macos)
CC = gcc -std=c99 -O2 -U__STRICT_ANSI__ -g -lm -lrt $(OS_CCDEFS) -I .
--- makefile.orig 2008-06-06 15:00:46.000000000 +0200
+++ makefile 2008-07-22 23:16:54.000000000 +0200
@@ -9,10 +9,10 @@
ifneq (,$(findstring darwin,$(OSTYPE)))
OS_CCDEFS = -D_GNU_SOURCE
else
-CC = gcc -std=c99 -O2 -U__STRICT_ANSI__ -g -lm $(OS_CCDEFS) -I .
+CC += ${CFLAGS} -lm $(OS_CCDEFS) -I .
- OS_CCDEFS = -lrt -lm -D_GNU_SOURCE
+ OS_CCDEFS = -lm -D_GNU_SOURCE
endif
endif
- CC = gcc -std=c99 -U__STRICT_ANSI__ -g $(OS_CCDEFS) -I .
+ CC += ${CFLAGS} $(OS_CCDEFS) -I .
ifeq ($(USE_NETWORK),)
else
NETWORK_OPT = -DUSE_NETWORK -isystem /usr/local/include /usr/local/lib/libpcap.a