pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc Update emulators/mips64emul to 0.2.2.
details: https://anonhg.NetBSD.org/pkgsrc/rev/bcc9b9443fc1
branches: trunk
changeset: 482870:bcc9b9443fc1
user: xtraeme <xtraeme%pkgsrc.org@localhost>
date: Thu Nov 04 12:18:54 2004 +0000
description:
Update emulators/mips64emul to 0.2.2.
o) 0.2.1 -> 0.2.2:
x) Acer PICA-61 is now emulated well enough to let NetBSD/arc and
OpenBSD/arc be installed onto harddisk images.
x) Some parts of TCP/IP networking work when running Ultrix as
the guest OS. (Network support should still be considered
experimental, though, even for NetBSD, OpenBSD, and Linux.)
x) Ultrix running with more than one emulated graphics card (dual-
or tripple-headed workstation setup) works better than before;
when moving the host's mouse pointer from one framebuffer window
to another, the emulated mouse is now moved so that it should
appear on the correct emulated screen.
x) Mach (the microkernel) seems to boot and run on an emulated
DECstation. (Unfortunately, I haven't found any "mach_servers"
binaries for pmax yet, and without those the microkernel cannot
do much.)
x) Lots of minor bug fixes.
diffstat:
doc/CHANGES | 3 ++-
emulators/mips64emul/Makefile | 10 +++++++---
emulators/mips64emul/PLIST | 15 ++++++++++++++-
emulators/mips64emul/distinfo | 6 +++---
4 files changed, 26 insertions(+), 8 deletions(-)
diffs (83 lines):
diff -r e321d3ad151e -r bcc9b9443fc1 doc/CHANGES
--- a/doc/CHANGES Thu Nov 04 12:16:10 2004 +0000
+++ b/doc/CHANGES Thu Nov 04 12:18:54 2004 +0000
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES,v 1.7691 2004/11/04 12:16:10 wiz Exp $
+$NetBSD: CHANGES,v 1.7692 2004/11/04 12:18:54 xtraeme Exp $
Changes to the packages collection and infrastructure in 2004:
@@ -5066,3 +5066,4 @@
Updated id3v2 to 0.1.11 [abs 2004-11-04]
Updated glibmm24 to 2.4.5 [adam 2004-11-04]
Updated vms-empire to 1.7 [wiz 2004-11-04]
+ Updated mips64emul to 0.2.2 [xtraeme 2004-11-04]
diff -r e321d3ad151e -r bcc9b9443fc1 emulators/mips64emul/Makefile
--- a/emulators/mips64emul/Makefile Thu Nov 04 12:16:10 2004 +0000
+++ b/emulators/mips64emul/Makefile Thu Nov 04 12:18:54 2004 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.9 2004/08/27 06:29:07 jlam Exp $
+# $NetBSD: Makefile,v 1.10 2004/11/04 12:18:54 xtraeme Exp $
#
-DISTNAME= mips64emul-0.2
+DISTNAME= mips64emul-0.2.2
CATEGORIES= emulators
MASTER_SITES= http://www.mdstud.chalmers.se/~md1gavan/mips64emul/src/
@@ -25,11 +25,15 @@
.for f in README HISTORY BUGS TODO RELEASE LICENSE
${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/${PKGBASE}
.endfor
+ ${INSTALL_DATA} ${WRKSRC}/doc/*.gif ${PREFIX}/share/doc/${PKGBASE}
+ ${INSTALL_DATA} ${WRKSRC}/doc/*.png ${PREFIX}/share/doc/${PKGBASE}
+ ${INSTALL_DATA} ${WRKSRC}/doc/*.c ${PREFIX}/share/doc/${PKGBASE}
SUBST_CLASSES= x11
SUBST_STAGE.x11= post-patch
SUBST_FILES.x11= configure
-SUBST_SED.x11= -e "s|-L/usr/X11R6/lib|${GLOBAL_LDFLAGS}|g"
+SUBST_SED.x11= -e "s|-L/usr/X11R6/lib|${GLOBAL_LDFLAGS}|g" \
+ -e "s|/usr/X11R6|${X11BASE}|g"
SUBST_MESSAGE.x11= "Fixing linking flags."
.include "../../mk/bsd.pkg.mk"
diff -r e321d3ad151e -r bcc9b9443fc1 emulators/mips64emul/PLIST
--- a/emulators/mips64emul/PLIST Thu Nov 04 12:16:10 2004 +0000
+++ b/emulators/mips64emul/PLIST Thu Nov 04 12:18:54 2004 +0000
@@ -1,10 +1,23 @@
-@comment $NetBSD: PLIST,v 1.2 2004/06/28 04:01:11 xtraeme Exp $
+@comment $NetBSD: PLIST,v 1.3 2004/11/04 12:18:54 xtraeme Exp $
bin/mips64emul
man/man1/mips64emul.1
+share/doc/mips64emul/20041024-netbsd-arc-installed.gif
+share/doc/mips64emul/20041024-netbsd-arc-installed_small.gif
+share/doc/mips64emul/20041024-openbsd-arc-installed.gif
+share/doc/mips64emul/20041024-openbsd-arc-installed_small.gif
share/doc/mips64emul/BUGS
share/doc/mips64emul/HISTORY
share/doc/mips64emul/LICENSE
share/doc/mips64emul/README
share/doc/mips64emul/RELEASE
share/doc/mips64emul/TODO
+share/doc/mips64emul/hello.c
+share/doc/mips64emul/netbsd-pmax-20040630.png
+share/doc/mips64emul/netbsd-pmax-20040630_small.png
+share/doc/mips64emul/openbsd-pmax-20040710.png
+share/doc/mips64emul/openbsd-pmax-20040710_small.png
+share/doc/mips64emul/sprite-20040711.png
+share/doc/mips64emul/sprite-20040711_small.png
+share/doc/mips64emul/ultrix4.5-20040706.png
+share/doc/mips64emul/ultrix4.5-20040706_small.gif
@dirrm share/doc/mips64emul
diff -r e321d3ad151e -r bcc9b9443fc1 emulators/mips64emul/distinfo
--- a/emulators/mips64emul/distinfo Thu Nov 04 12:16:10 2004 +0000
+++ b/emulators/mips64emul/distinfo Thu Nov 04 12:18:54 2004 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.6 2004/08/04 06:16:04 xtraeme Exp $
+$NetBSD: distinfo,v 1.7 2004/11/04 12:18:54 xtraeme Exp $
-SHA1 (mips64emul-0.2.tar.gz) = 8c451ca2877815a778fc23ed8bba971c61a983fb
-Size (mips64emul-0.2.tar.gz) = 634922 bytes
+SHA1 (mips64emul-0.2.2.tar.gz) = 3329bffe9b1fd5887c6d713449db805557fc2d48
+Size (mips64emul-0.2.2.tar.gz) = 729050 bytes
Home |
Main Index |
Thread Index |
Old Index