diff options
author | joerg <joerg> | 2010-07-02 14:41:49 +0000 |
---|---|---|
committer | joerg <joerg> | 2010-07-02 14:41:49 +0000 |
commit | 328d087fcfec5e51e76e2c89aee8f1f360edfed4 (patch) | |
tree | 43257ad485e633a14413ca2bbe80603c12e08b05 /emulators | |
parent | bc783a5963abbea38e67720376b3ed582dbd8882 (diff) | |
download | pkgsrc-328d087fcfec5e51e76e2c89aee8f1f360edfed4.tar.gz |
Fix compilation. Fix PLIST. Bump revision.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/gxemul/Makefile | 3 | ||||
-rw-r--r-- | emulators/gxemul/PLIST | 6 | ||||
-rw-r--r-- | emulators/gxemul/distinfo | 3 | ||||
-rw-r--r-- | emulators/gxemul/patches/patch-aa | 13 |
4 files changed, 22 insertions, 3 deletions
diff --git a/emulators/gxemul/Makefile b/emulators/gxemul/Makefile index 4a28d5a6aef..e999d0b63d0 100644 --- a/emulators/gxemul/Makefile +++ b/emulators/gxemul/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.43 2010/05/13 14:48:53 tsutsui Exp $ +# $NetBSD: Makefile,v 1.44 2010/07/02 14:41:49 joerg Exp $ # DISTNAME= gxemul-0.6.0 +PKGREVISION= 1 CATEGORIES= emulators MASTER_SITES= http://gxemul.sourceforge.net/src/ diff --git a/emulators/gxemul/PLIST b/emulators/gxemul/PLIST index 5cabff23764..e10563f3e4e 100644 --- a/emulators/gxemul/PLIST +++ b/emulators/gxemul/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.24 2010/05/13 14:48:53 tsutsui Exp $ +@comment $NetBSD: PLIST,v 1.25 2010/07/02 14:41:50 joerg Exp $ bin/gxemul man/man1/gxemul.1 share/doc/gxemul/20040504-ultrix45-boot1.png @@ -77,6 +77,8 @@ share/doc/gxemul/20070616-netbsd-pmppc-diskless.png share/doc/gxemul/20070616-netbsd-pmppc-diskless_small.png share/doc/gxemul/20081103-openbsd-landisk-small.png share/doc/gxemul/20081103-openbsd-landisk.png +share/doc/gxemul/20100205-netbsd-playstation2-small.png +share/doc/gxemul/20100205-netbsd-playstation2.png share/doc/gxemul/Doxyfile share/doc/gxemul/HISTORY share/doc/gxemul/LICENSE @@ -128,6 +130,7 @@ share/doc/gxemul/experiments.html share/doc/gxemul/framework.html share/doc/gxemul/generate_machine_doc.sh share/doc/gxemul/guestoses.html +share/doc/gxemul/head.html share/doc/gxemul/index.html share/doc/gxemul/intro.html share/doc/gxemul/machine_template.html @@ -140,6 +143,7 @@ share/doc/gxemul/machines/machine_testmips-thumb.png share/doc/gxemul/machines/machine_testmips.html.SKEL share/doc/gxemul/machines/machine_testmips.png share/doc/gxemul/misc.html +share/doc/gxemul/model.png share/doc/gxemul/networking.html share/doc/gxemul/openbsd-pmax-20040710.png share/doc/gxemul/openbsd-pmax-20040710_small.png diff --git a/emulators/gxemul/distinfo b/emulators/gxemul/distinfo index 724e6cc5733..5dd93c43172 100644 --- a/emulators/gxemul/distinfo +++ b/emulators/gxemul/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.30 2010/05/13 14:48:53 tsutsui Exp $ +$NetBSD: distinfo,v 1.31 2010/07/02 14:41:50 joerg Exp $ SHA1 (gxemul-0.6.0.tar.gz) = aa37ad5f200eee045b1da2b1d3f651401cf474af RMD160 (gxemul-0.6.0.tar.gz) = ac6291a5f8bc9c0d1988d3ce39750339fe90a8ce Size (gxemul-0.6.0.tar.gz) = 3598795 bytes +SHA1 (patch-aa) = 6f2c0dc94606ba213bcc73527ea4bef997c89c45 diff --git a/emulators/gxemul/patches/patch-aa b/emulators/gxemul/patches/patch-aa new file mode 100644 index 00000000000..c98f7b05fdd --- /dev/null +++ b/emulators/gxemul/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.9 2010/07/02 14:41:50 joerg Exp $ + +--- src/main/fileloaders/FileLoader_aout.cc.orig 2010-07-02 14:06:41.000000000 +0000 ++++ src/main/fileloaders/FileLoader_aout.cc +@@ -265,7 +265,7 @@ bool FileLoader_aout::LoadIntoComponent( + + off_t oldpos = file.tellg(); + file.seekg(0, std::ios_base::end); +- int strings_len = file.tellg() - oldpos; ++ int strings_len = (off_t)file.tellg() - oldpos; + file.seekg(oldpos, std::ios_base::beg); + + messages.flags(std::ios::dec); |