mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Update to version 6.3.
PR: 25021 Submitted by: George Reid <greid@ukug.uk.freebsd.org>
This commit is contained in:
parent
46bf532fac
commit
f31050845b
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=38833
6 changed files with 10 additions and 91 deletions
|
@ -7,7 +7,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
PORTNAME= spim
|
PORTNAME= spim
|
||||||
PORTVERSION= 6.2
|
PORTVERSION= 6.3
|
||||||
CATEGORIES= emulators
|
CATEGORIES= emulators
|
||||||
MASTER_SITES= ftp://ftp.cs.wisc.edu/pub/spim/
|
MASTER_SITES= ftp://ftp.cs.wisc.edu/pub/spim/
|
||||||
DISTNAME= ${PORTNAME}${PORTVERSION}
|
DISTNAME= ${PORTNAME}${PORTVERSION}
|
||||||
|
@ -15,7 +15,7 @@ DISTNAME= ${PORTNAME}${PORTVERSION}
|
||||||
MAINTAINER= ports@FreeBSD.org
|
MAINTAINER= ports@FreeBSD.org
|
||||||
|
|
||||||
PREFIX?= ${LOCALBASE}
|
PREFIX?= ${LOCALBASE}
|
||||||
NO_WRKSUBDIR= yes
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
||||||
HAS_CONFIGURE= yes
|
HAS_CONFIGURE= yes
|
||||||
CONFIGURE_SCRIPT= Configure
|
CONFIGURE_SCRIPT= Configure
|
||||||
USE_IMAKE= yes
|
USE_IMAKE= yes
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
MD5 (spim6.2.tar.gz) = fccec0eaf1e2c2ed76375180e2b39491
|
MD5 (spim6.3.tar.gz) = 04b1909f3ff647f1f04437f297c9ad84
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
diff -ru Imakefile.orig Imakefile
|
--- Imakefile.orig Sun Jan 14 20:55:15 2001
|
||||||
--- Imakefile.orig Fri Sep 20 22:44:50 1996
|
+++ Imakefile Sun Feb 11 23:49:11 2001
|
||||||
+++ Imakefile Mon Feb 3 11:26:40 1997
|
@@ -44,13 +44,13 @@
|
||||||
@@ -57,13 +57,13 @@
|
|
||||||
#
|
#
|
||||||
|
|
||||||
# Full path for directory that will hold the trap handler file:
|
# Full path for directory that will hold the trap handler file:
|
||||||
|
@ -18,12 +17,10 @@ diff -ru Imakefile.orig Imakefile
|
||||||
|
|
||||||
|
|
||||||
# If you have flex, use it instead of lex. If you use flex, define this
|
# If you have flex, use it instead of lex. If you use flex, define this
|
||||||
@@ -291,7 +291,7 @@
|
@@ -255,7 +255,7 @@
|
||||||
mv -f lex.yy.c.xx lex.yy.c
|
mv -f lex.yy.c.xx lex.yy.c
|
||||||
|
|
||||||
depend::
|
depend::
|
||||||
- makedepend -w10 *.c
|
- makedepend -w10 *.c
|
||||||
+ makedepend -w10 -I$(X11BASE)/include *.c
|
+ makedepend -w10 -I$(X11BASE)/include *.c
|
||||||
|
|
||||||
#
|
|
||||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
--- cl-except.h.orig Fri Aug 25 07:05:25 1995
|
|
||||||
+++ cl-except.h Mon Oct 28 23:34:02 1996
|
|
||||||
@@ -25,7 +25,7 @@
|
|
||||||
#define _BSD_SIGNALS
|
|
||||||
#endif
|
|
||||||
|
|
||||||
-#include <syscall.h>
|
|
||||||
+#include <sys/syscall.h>
|
|
||||||
#include <signal.h>
|
|
||||||
|
|
||||||
/* gdb-style for tracking each signal */
|
|
|
@ -1,67 +0,0 @@
|
||||||
--- cl-except.c.orig Fri Aug 25 07:13:05 1995
|
|
||||||
+++ cl-except.c Tue Oct 29 00:37:44 1996
|
|
||||||
@@ -46,6 +46,7 @@
|
|
||||||
/* Exported Variables: */
|
|
||||||
|
|
||||||
mem_addr breakpoint_reinsert; /* !0 -> reinsert break at this address */
|
|
||||||
+spim_proc proc; /* spim's signal tracking structure */
|
|
||||||
|
|
||||||
|
|
||||||
/* Imported Variables: */
|
|
||||||
@@ -67,14 +68,14 @@
|
|
||||||
#ifdef __STDC__
|
|
||||||
static void intercept_signals (int sig, int code, struct sigcontext *scp);
|
|
||||||
static mem_addr compute_branch_target (instruction *inst);
|
|
||||||
-static void psignal (int sig);
|
|
||||||
+static void spim_psignal (int sig);
|
|
||||||
static int issig (void);
|
|
||||||
static int psig (void);
|
|
||||||
static void sendsig (void);
|
|
||||||
#else
|
|
||||||
static void intercept_signals ();
|
|
||||||
static mem_addr compute_branch_target ();
|
|
||||||
-static void psignal ();
|
|
||||||
+static void spim_psignal ();
|
|
||||||
static int issig ();
|
|
||||||
static int psig ();
|
|
||||||
static void sendsig ();
|
|
||||||
@@ -266,7 +267,7 @@
|
|
||||||
|
|
||||||
else if (retval == 0)
|
|
||||||
/* bad system call --> turn into a signal */
|
|
||||||
- psignal (excpt_handler[SYSCALL_EXCPT].sig);
|
|
||||||
+ spim_psignal (excpt_handler[SYSCALL_EXCPT].sig);
|
|
||||||
|
|
||||||
retval = !retval; /* retval == 1 -> syscall ok;
|
|
||||||
* retval == 0 -> syscall bad */
|
|
||||||
@@ -286,7 +287,7 @@
|
|
||||||
case IBUS_EXCPT:
|
|
||||||
case DBUS_EXCPT:
|
|
||||||
case CPU_EXCPT:
|
|
||||||
- psignal (excpt_handler[excpt_code].sig);
|
|
||||||
+ spim_psignal (excpt_handler[excpt_code].sig);
|
|
||||||
break;
|
|
||||||
|
|
||||||
|
|
||||||
@@ -456,7 +457,7 @@
|
|
||||||
}
|
|
||||||
else if (spim_related_sig & (1 << sig))
|
|
||||||
cycle_steps = 0;
|
|
||||||
- else psignal (sig);
|
|
||||||
+ else spim_psignal (sig);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@@ -466,10 +467,10 @@
|
|
||||||
|
|
||||||
#ifdef __STDC__
|
|
||||||
static void
|
|
||||||
-psignal (int sig)
|
|
||||||
+spim_psignal (int sig)
|
|
||||||
#else
|
|
||||||
static void
|
|
||||||
-psignal (sig)
|
|
||||||
+spim_psignal (sig)
|
|
||||||
int sig;
|
|
||||||
#endif
|
|
||||||
{
|
|
|
@ -1,7 +1,7 @@
|
||||||
bin/spim
|
bin/spim
|
||||||
bin/xspim
|
bin/xspim
|
||||||
share/spim/trap.handler
|
share/spim/trap.handler
|
||||||
share/doc/spim/spim.ps.gz
|
%%PORTDOCS%%share/doc/spim/spim.ps.gz
|
||||||
share/doc/spim/cycle.ps.gz
|
%%PORTDOCS%%share/doc/spim/cycle.ps.gz
|
||||||
@dirrm share/doc/spim
|
%%PORTDOCS%%@dirrm share/doc/spim
|
||||||
@dirrm share/spim
|
@dirrm share/spim
|
||||||
|
|
Loading…
Add table
Reference in a new issue