Import of pkgsrc-2016Q3

This commit is contained in:
2016-10-14 07:49:11 +02:00
committed by Lionel Sambuc
parent 9d819b6d54
commit 1242aa1e36
35952 changed files with 949749 additions and 377083 deletions

23
emulators/8086tiny/DESCR Normal file
View File

@@ -0,0 +1,23 @@
8086tiny is a free, open source PC XT-compatible emulator/virtual
machine written in C. It is, we believe, the smallest of its kind
(the fully-commented source is around 28K). Despite its size,
8086tiny provides a highly accurate 8086 CPU emulation, together
with support for PC peripherals including XT-style keyboard,
floppy/hard disk, clock, timers, audio, and Hercules/CGA graphics.
8086tiny is powerful enough to run software like AutoCAD, Windows
3.0, and legacy PC games: the 8086tiny distribution includes Alley
Cat, the author's favorite PC game of all time.
8086tiny is highly portable and runs on practically any little
endian machine, from simple 32-bit MCUs upwards. 8086tiny has
successfully been deployed on 32-bit/64-bit Intel machines (Windows,
Mac OS X and Linux), Nexus 4/ARM (Android), iPad 3 and iPhone 5S
(iOS), and Raspberry Pi (Linux).
The philosophy of 8086tiny is to keep the code base as small as
possible, and through the open source license and repository on
GitHub encourage individual developers to tune and extend it as
per their specific requirements, adding support, for example, for
more complex instruction sets (e.g. Pentium) or peripherals (e.g.
mouse). Any questions, comments or suggestions are very welcome in
our forum.

View File

@@ -0,0 +1,48 @@
# $NetBSD: Makefile,v 1.2 2016/06/04 17:41:02 sevan Exp $
DISTNAME= 8086tiny_125
PKGNAME= ${DISTNAME:S/tiny_1/tiny-1./}
CATEGORIES= emulators
MASTER_SITES= http://www.megalith.co.uk/8086tiny/downloads/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= ryoon@NetBSD.org
HOMEPAGE= http://www.megalith.co.uk/8086tiny/
COMMENT= PC XT-compatible emulator/virtual machine written in C
LICENSE= mit
WRKSRC= ${WRKDIR}
USE_TOOLS+= sed
BUILD_TARGET= 8086tiny
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "NetBSD" || ${OPSYS} == "FreeBSD"
LDFLAGS= -lcompat
.endif
INSTALLATION_DIRS= bin share/8086tiny
post-build:
${SED} -e 's,@SH@,${SH},' -e 's,@PREFIX@,${PREFIX},'\
${FILESDIR}/run-8086tiny-freedos.sh.in \
> ${WRKSRC}/run-8086tiny-freedos.sh
${SED} -e 's,@PREFIX@,${PREFIX},'\
${FILESDIR}/README.in \
> ${WRKSRC}/README
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/8086tiny \
${DESTDIR}${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/bios \
${DESTDIR}${PREFIX}/share/8086tiny
${INSTALL_DATA} ${WRKSRC}/fd.img \
${DESTDIR}${PREFIX}/share/8086tiny/freedos.img
${INSTALL_SCRIPT} ${WRKSRC}/run-8086tiny-freedos.sh \
${DESTDIR}${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/README \
${DESTDIR}${PREFIX}/share/8086tiny
.include "../../devel/SDL/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

6
emulators/8086tiny/PLIST Normal file
View File

@@ -0,0 +1,6 @@
@comment $NetBSD: PLIST,v 1.1 2015/10/11 00:52:23 ryoon Exp $
bin/8086tiny
bin/run-8086tiny-freedos.sh
share/8086tiny/README
share/8086tiny/bios
share/8086tiny/freedos.img

View File

@@ -0,0 +1,8 @@
$NetBSD: distinfo,v 1.2 2015/11/03 20:30:54 agc Exp $
SHA1 (8086tiny_125.tar.bz2) = 7380a29cff8beba76dadee47f76445c6e24ee39a
RMD160 (8086tiny_125.tar.bz2) = d15e2c551aab6f7e12c1dc6ba9cf545539c85ff5
SHA512 (8086tiny_125.tar.bz2) = e8407467dc68faab5c2178b6e6e1dbd2c9a93ebd5287fe48cd95b7bb3023dec63a3d468fc6ef6015031c7c5e784d8fa2916faee6318f1bfdbaabe546064eba87
Size (8086tiny_125.tar.bz2) = 1402403 bytes
SHA1 (patch-8086tiny.c) = 032e20accb7ad02da8080eb65ee6279a2420b961
SHA1 (patch-Makefile) = fd6b2bf262419642995934eb15e5fd108a0dca3d

View File

@@ -0,0 +1,28 @@
$NetBSD: README.in,v 1.1 2015/10/11 00:52:23 ryoon Exp $
To run FreeDOS, please perform the following steps.
1. Create working directory in your home directory.
$ mkdir ~/8086tiny
2. Copy @PREFIX@/share/8086tiny/bios and @PREFIX@/share/8086tiny/freedos.img
to your working directory.
$ cd ~/8086tiny
$ cp @PREFIX@/share/8086tiny/bios .
$ cp @PREFIX@/share/8086tiny/freedos.img .
3. Run 8086tiny
$ @PREFIX@/bin/run-8086tiny-freedos.sh
4. You will get FreeDOS command prompt.
5. To shutdown 8086tiny, run a:\quitemu.com command.
A:\> quitemu
Note: If you want to use HDD image, run
$ 8086tiny bios freedos.img hd.img

View File

@@ -0,0 +1,8 @@
#! @SH@
# $NetBSD: run-8086tiny-freedos.sh.in,v 1.1 2015/10/11 00:52:23 ryoon Exp $
clear
stty cbreak raw -echo min 0
@PREFIX@/bin/8086tiny \
./bios \
./freedos.img
stty cooked echo

View File

@@ -0,0 +1,14 @@
$NetBSD: patch-8086tiny.c,v 1.1 2015/10/11 00:52:23 ryoon Exp $
for ftime(3) under NetBSD.
--- 8086tiny.c.orig 2014-03-19 23:04:53.000000000 +0000
+++ 8086tiny.c
@@ -6,6 +6,7 @@
// This work is licensed under the MIT License. See included LICENSE.TXT.
#include <time.h>
+#include <sys/types.h>
#include <sys/timeb.h>
#include <memory.h>

View File

@@ -0,0 +1,15 @@
$NetBSD: patch-Makefile,v 1.1 2015/10/11 00:52:23 ryoon Exp $
* Pass LDFLAGS for NetBSD's libcompat for ftime(3).
--- Makefile.orig 2014-03-18 04:39:36.000000000 +0000
+++ Makefile
@@ -13,7 +13,7 @@ OPTS_NOGFX=-DNO_GRAPHICS
OPTS_SLOWCPU=-DGRAPHICS_UPDATE_DELAY=25000
8086tiny: 8086tiny.c
- ${CC} 8086tiny.c ${OPTS_SDL} ${OPTS_ALL} -o 8086tiny
+ ${CC} 8086tiny.c ${OPTS_SDL} ${OPTS_ALL} -o 8086tiny ${LDFLAGS}
strip 8086tiny
8086tiny_slowcpu: 8086tiny.c

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.18 2015/02/28 23:43:32 joerg Exp $
$NetBSD: distinfo,v 1.19 2015/11/03 20:30:54 agc Exp $
SHA1 (BasiliskII_src_01052006.tar.bz2) = 6373b33adf6caec53c5d1ed46a00adcac89ad3bb
RMD160 (BasiliskII_src_01052006.tar.bz2) = bb1a061c504bd7d28b869e0eec2806cf8a79cf8d
SHA512 (BasiliskII_src_01052006.tar.bz2) = cbe78f525e729aedafc98d8f469b4eaddc93e1088f2341fe4eef612d5ba1d076d7a9e3c7547392a1ddb80280a5bd48dbbcee6ff80d405954c60bd52f2cb28171
Size (BasiliskII_src_01052006.tar.bz2) = 1310908 bytes
SHA1 (patch-aa) = 387f7a3f6edac21b99d81ba88a0eeed4591c75ef
SHA1 (patch-ab) = 4ada93db64772e70e95c58b6a324019c1da6a72d

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.5 2013/04/13 19:08:27 dholland Exp $
$NetBSD: distinfo,v 1.6 2015/11/03 20:30:54 agc Exp $
SHA1 (Cygne-SDL-0.1-src.tar.gz) = f9c50702d1911d0ff1728e5aa089e67cfdfd0030
RMD160 (Cygne-SDL-0.1-src.tar.gz) = 6d9fd7195a936f17fc3984a66722272c7e30991a
SHA512 (Cygne-SDL-0.1-src.tar.gz) = 3db547ef9a30fec26ac85c6036c924280fb9f17186abb0b6b92c483c81c9d09936c76d9df52e162ed60d2ec526329c843e12293243485596fb0db96fb66738df
Size (Cygne-SDL-0.1-src.tar.gz) = 106448 bytes
SHA1 (patch-aa) = 65f8a9b50150dbbb65f20999e457ef31ff196c9b
SHA1 (patch-ab) = 775f303626193bec32d2964ad7c63e528bc831b3

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.14 2014/10/07 20:48:28 shattered Exp $
$NetBSD: distinfo,v 1.15 2015/11/03 20:30:54 agc Exp $
SHA1 (datlib236.zip) = 99d4e787d3a3cd66a3274d7481486ee7189d6f8f
RMD160 (datlib236.zip) = e581cef88b063430f169963370091d1ddc15b926
SHA512 (datlib236.zip) = 0c601fe243c8ea4186abb6181cf70e749226a5eed871d7391b3686e7eb58195d1aab40305d498d1419c6fa49bf56c59fb74d032642822045cc7e36f8a5fe96b4
Size (datlib236.zip) = 109484 bytes
SHA1 (patch-aa) = 58052a8c72989212d83081691f685574af6b40d4
SHA1 (patch-ab) = e01959114bafc63ae29fcde587b507f67e1c69b2

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.15 2014/10/07 20:48:54 shattered Exp $
$NetBSD: distinfo,v 1.16 2015/11/03 20:30:55 agc Exp $
SHA1 (dutil246.zip) = 91f6ad0b19853c0fa84e1483ca2422fc89f0c59c
RMD160 (dutil246.zip) = a21d22935eca264e611b986802bf03d77cded5d7
SHA512 (dutil246.zip) = f9e55eac41894681caaee7d6e3247d4e4d053ac6985d42708623fad415afeb8ece588dd728edc31cbd31bf6df1d9a06ec80f1b45979b0f77763c12e6627434b2
Size (dutil246.zip) = 209577 bytes
SHA1 (patch-aa) = 1bdee3a21449038db09c381a1302585241c59acd
SHA1 (patch-ab) = 2926b8e6dda83ca30e20de6f27933a318a2db404

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.10 2014/10/07 20:49:18 shattered Exp $
$NetBSD: distinfo,v 1.11 2015/11/03 20:30:55 agc Exp $
SHA1 (mdiff231.zip) = b3e3bceef0c8e541ea496db4df104912796615da
RMD160 (mdiff231.zip) = 8c0190a45d02f7b7c93a66ddc2e4540c5ecee410
SHA512 (mdiff231.zip) = 698997cb2068c71d9dbdedfc3c1b6328cd70d78a0de87d32ee44b93c7fe83be8ba622e7c5709d353cc9aae321b2b9dff9c74133649af0a8176df264886c8db39
Size (mdiff231.zip) = 229171 bytes
SHA1 (patch-aa) = 430b8cc4afd5ff9a4fce64063ef7e28af27b5052
SHA1 (patch-ab) = 0558a1b50e869a40e5268ba567b0a6c23e354c07

View File

@@ -1,8 +1,9 @@
# $NetBSD: Makefile,v 1.233 2015/07/14 20:15:59 wiz Exp $
# $NetBSD: Makefile,v 1.245 2016/06/11 21:10:37 kamil Exp $
#
COMMENT= Emulators for other operating systems
SUBDIR+= 8086tiny
SUBDIR+= BasiliskII
SUBDIR+= Cygne-SDL
SUBDIR+= DatLib
@@ -58,8 +59,10 @@ SUBDIR+= fceu
SUBDIR+= fmsx
SUBDIR+= free42
SUBDIR+= freebsd_lib
SUBDIR+= fuse
SUBDIR+= fuse-utils
SUBDIR+= fs-uae
SUBDIR+= fs-uae-launcher
SUBDIR+= fuse-emulator
SUBDIR+= fuse-emulator-utils
SUBDIR+= gambatte
SUBDIR+= gcube
SUBDIR+= generator
@@ -81,6 +84,7 @@ SUBDIR+= hercules-images
SUBDIR+= ia64sim
SUBDIR+= kegs
SUBDIR+= kenigma
SUBDIR+= keystone
SUBDIR+= klh10
SUBDIR+= libdsk
SUBDIR+= libretro-catsfc
@@ -120,11 +124,13 @@ SUBDIR+= p11
SUBDIR+= palmosemulator
SUBDIR+= pcemu
SUBDIR+= pearpc
SUBDIR+= py-keystone
SUBDIR+= qemu
SUBDIR+= qemu0
SUBDIR+= raine
SUBDIR+= realboy
SUBDIR+= retroarch
SUBDIR+= shoebill
SUBDIR+= simh
SUBDIR+= simulavr
SUBDIR+= ski
@@ -194,6 +200,7 @@ SUBDIR+= suse121_32_krb5
SUBDIR+= suse121_32_libcups
SUBDIR+= suse121_32_libcurl
SUBDIR+= suse121_32_libdrm
SUBDIR+= suse121_32_libgc
SUBDIR+= suse121_32_libjpeg
SUBDIR+= suse121_32_libpng
SUBDIR+= suse121_32_libsigc++2
@@ -220,6 +227,7 @@ SUBDIR+= suse121_krb5
SUBDIR+= suse121_libcups
SUBDIR+= suse121_libcurl
SUBDIR+= suse121_libdrm
SUBDIR+= suse121_libgc
SUBDIR+= suse121_libjpeg
SUBDIR+= suse121_libpng
SUBDIR+= suse121_libsigc++2
@@ -255,6 +263,7 @@ SUBDIR+= suse131_32_libdbus
SUBDIR+= suse131_32_libdrm
SUBDIR+= suse131_32_libesd
SUBDIR+= suse131_32_libffi
SUBDIR+= suse131_32_libgc
SUBDIR+= suse131_32_libidn
SUBDIR+= suse131_32_libjpeg
SUBDIR+= suse131_32_libjson
@@ -301,6 +310,7 @@ SUBDIR+= suse131_libdbus
SUBDIR+= suse131_libdrm
SUBDIR+= suse131_libesd
SUBDIR+= suse131_libffi
SUBDIR+= suse131_libgc
SUBDIR+= suse131_libidn
SUBDIR+= suse131_libjpeg
SUBDIR+= suse131_libjson
@@ -333,6 +343,7 @@ SUBDIR+= tuxnes
SUBDIR+= twin
SUBDIR+= uae
SUBDIR+= ucon64
SUBDIR+= unicorn
SUBDIR+= vba
SUBDIR+= vice
SUBDIR+= vmips

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.8 2014/10/07 20:49:47 shattered Exp $
$NetBSD: distinfo,v 1.9 2015/11/03 20:30:55 agc Exp $
SHA1 (rbuild214.zip) = c9d3a28b1b3994e180ea99cd45369e5429581c4e
RMD160 (rbuild214.zip) = bcc627c3fd3a402fd6682d2b8354801af6d8c7b4
SHA512 (rbuild214.zip) = 2c95d0bcf30f2f8eae54813f94eba3609fc8b6e078dc1bfbaa0d52b3acd06b9c919f32cfb2c2624e7c5de3437d7d3018d531f80eee35d7b119a8103aa559e8e3
Size (rbuild214.zip) = 109798 bytes
SHA1 (patch-aa) = 9c129cdef08805166cc2bed0d5992d357d2f8523
SHA1 (patch-ab) = 1fbc4887a532d1f956875589baa8a2e0211070fc

View File

@@ -1,8 +1,8 @@
# $NetBSD: Makefile,v 1.18 2012/10/03 12:55:09 asau Exp $
# $NetBSD: Makefile,v 1.20 2016/09/12 13:49:46 mef Exp $
#
DISTNAME= rinfo27
PKGNAME= ROMInfo-2.7
DISTNAME= rinfo28
PKGNAME= ROMInfo-2.8
CATEGORIES= emulators
MASTER_SITES= http://www.logiqx.com/Tools/ROMInfo/
EXTRACT_SUFX= .zip
@@ -16,14 +16,13 @@ WRKSRC= ${WRKDIR}
MAKE_FILE= makefile
BUILD_TARGET= rominfo
EXTRACT_OPTS_ZIP= -aaqo
INSTALLATION_DIRS= bin
INSTALLATION_DIRS= bin share/doc/ROMInfo
post-extract:
${MKDIR} ${WRKSRC}/obj
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/rominfo ${DESTDIR}${PREFIX}/bin
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/doc/ROMInfo
${INSTALL_DATA} ${WRKSRC}/readme.txt \
${DESTDIR}${PREFIX}/share/doc/ROMInfo

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.6 2011/11/29 06:24:02 sbd Exp $
$NetBSD: distinfo,v 1.8 2016/09/07 13:25:45 mef Exp $
SHA1 (rinfo27.zip) = f6ef7ac9ce30d92e646f040ee82f264ef71f59c0
RMD160 (rinfo27.zip) = c61b42578d35e815be50e7c9077e1e728d2d72f5
Size (rinfo27.zip) = 140306 bytes
SHA1 (rinfo28.zip) = 3f1b658d97cfc3831b678022bd288000066b8153
RMD160 (rinfo28.zip) = c1afabd6a73f4467f2ffee64245d0aa1289c5b9b
SHA512 (rinfo28.zip) = b17fb88a30af8efb428b608fcc1454e7721f131c8b6da9939a7ae501620281b58f7481aa4bd5793b018726b3e88a37e54a4fed2c64e456ba48481cf7c37219a6
Size (rinfo28.zip) = 180204 bytes
SHA1 (patch-aa) = e2a586daa96d03fcad4bec08e76b9e01c30fdb61
SHA1 (patch-ab) = c8667dc5c0ba3085e14b56b88d1693a5a8abf329

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.7 2014/10/07 20:50:11 shattered Exp $
$NetBSD: distinfo,v 1.8 2015/11/03 20:30:55 agc Exp $
SHA1 (zident211.zip) = 789891b1fc6e2e958952bb334492b9b2916b608c
RMD160 (zident211.zip) = 0b5b7eb70f5b2a7b8427db1b671b2c14645c1cd2
SHA512 (zident211.zip) = 150bf1d8d535934e45736174b741168bdd88a4b2a65b4b13b1bb43f1a4aaa68c325c345b2e8b851515873a6b9e741e7e9a58527f9ee1281a02f759f214308f24
Size (zident211.zip) = 204997 bytes
SHA1 (patch-aa) = 284252031c5def43e58d7ae3a9f43d1fc72c9f7d
SHA1 (patch-ab) = 67ad17076bff44fc854a7f0b076283b4f3c135de

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.5 2013/10/16 23:59:36 roy Exp $
$NetBSD: distinfo,v 1.6 2015/11/03 20:30:55 agc Exp $
SHA1 (aliados-0.2.0.tgz) = 07de1cdf27cff9e15764df7d09d327badf90b92c
RMD160 (aliados-0.2.0.tgz) = ede3ed71908b166658fc82f651a87243fbf10dff
SHA512 (aliados-0.2.0.tgz) = e4d7ed462766af181bfb38a91a89dbf8a76c92f1dece5fe2a7d212e396c3d94e210217e7dd0f08d5c052228787e2583a9ae69c2d4430448ec5808b31fc628acb
Size (aliados-0.2.0.tgz) = 128397 bytes
SHA1 (patch-configure) = 737e114f2eac860a29e4984c2f973e4233238477
SHA1 (patch-configure.ac) = c5c5300f48deee8aae633eeb7528b6aec9e6a908

View File

@@ -1,6 +1,7 @@
$NetBSD: distinfo,v 1.1.1.1 2007/03/18 19:56:27 wiz Exp $
$NetBSD: distinfo,v 1.2 2015/11/03 20:30:55 agc Exp $
SHA1 (applyppf3_src.zip) = d80dd39b322863defdea76a1703565a7ce569b23
RMD160 (applyppf3_src.zip) = ec06579d49ef81148233f51bbacbd3fd948bb403
SHA512 (applyppf3_src.zip) = 4153b4356a3c7d106a53eb0cb5e943a7469060a09bf49cde85e7cb9452821181f18c29ceb9f8f1fdc2ad5a7dbb3a23300bfb373a515e0c7f8373c454be05bcf6
Size (applyppf3_src.zip) = 5618 bytes
SHA1 (patch-aa) = 2e35e964870ae2843265496c6770e1d2d8733ece

View File

@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.33 2015/04/25 14:20:44 tnn Exp $
# $NetBSD: Makefile,v 1.34 2016/02/25 12:50:49 jperkin Exp $
#
ETVER= 0.9.4
@@ -44,9 +44,7 @@ SUBST_MESSAGE.paths= Fixing hardcoded paths.
.include "options.mk"
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "Linux"
CONFIGURE_ARGS+= --enable-nfpci
.endif
CONFIGURE_ARGS.Linux+= --enable-nfpci
.if !empty(MACHINE_PLATFORM:MLinux-*-i386)
CONFIGURE_ARGS+= --enable-jit-compiler

View File

@@ -1,10 +1,12 @@
$NetBSD: distinfo,v 1.14 2015/03/24 14:34:57 ryoon Exp $
$NetBSD: distinfo,v 1.15 2015/11/03 20:30:55 agc Exp $
SHA1 (aranym_1.0.2.orig.tar.gz) = ac46a8c8d5c572e07e30458444f68b2dcbb7df2a
RMD160 (aranym_1.0.2.orig.tar.gz) = 68c6813ce38f495916156cb39ab216e9d67a50e4
SHA512 (aranym_1.0.2.orig.tar.gz) = 5fb88b77df33e46c0000977ed256b795f6cf040079cfbbb9af91ce8578f2ea385c2ffeeba7cf90ae53b0c4341458639b5643d07edc7bbd3f7e772a0e9659a01d
Size (aranym_1.0.2.orig.tar.gz) = 2100463 bytes
SHA1 (emutos-512k-0.9.4.zip) = b46f81dec4574afdc670da14b3bf92452a278a7d
RMD160 (emutos-512k-0.9.4.zip) = b6e9411090474f8d4eb060d97d1d5a91ccd60f79
SHA512 (emutos-512k-0.9.4.zip) = 00c8718f364712f5d346859dc40ed83c1792521c9600520aacf199f7d6b24d5cf7a3e2533e1e343d6aa9e77ed3056f8636713bb7c3e9739254e0658c921a78a8
Size (emutos-512k-0.9.4.zip) = 314877 bytes
SHA1 (patch-ab) = 8796751780cc559acd089298f3e8a0918d36db3a
SHA1 (patch-ac) = 8899894456b01c84efd9f96f553750c87df7c21a

View File

@@ -1,13 +1,16 @@
$NetBSD: distinfo,v 1.8 2014/12/10 23:23:09 joerg Exp $
$NetBSD: distinfo,v 1.9 2015/11/03 20:30:55 agc Exp $
SHA1 (HardImage1.gz) = ab3c2ddd5a913a4051d4c21707e7701b27a103f3
RMD160 (HardImage1.gz) = 09176071c9c325b50a3a2074938789f4e6136d44
SHA512 (HardImage1.gz) = 1613cdfc7eb4a16958a5eb030973ff194e7a0e304e02af2111b810c5b2d021c0fb6352c0a592f3ef57e008a21e34126d80c5163de49be3bb3d4d8ddfa6d02ff1
Size (HardImage1.gz) = 3545800 bytes
SHA1 (arcem-1.50-src.zip) = b1f39b15e2d9ec5d7c82f618cb2beb0bc011c0b1
RMD160 (arcem-1.50-src.zip) = 74253d5d6fcf5fc64abc10f95f6fbcd121f7eddf
SHA512 (arcem-1.50-src.zip) = 495f58558b51d4796a199a5f34bf3604972f47236c2f0e116af74327ea6800d696503a89fafb20af21307653010642bff5f7962eb7d1ce16a4aea095fb1494f6
Size (arcem-1.50-src.zip) = 1420685 bytes
SHA1 (linux.rom.gz) = 5a3ed7b8bf7e560d14ede14232e50a40a96f9147
RMD160 (linux.rom.gz) = 5bf035a3e6f054a61de62fcf880c52c996f503c6
SHA512 (linux.rom.gz) = a8c78d1fce8bdf93b8c1efe4426c4372049ae1cd3c99ddc8ddbbec16720e52beca54c22a575787ab4e622aa16a07bf72d2efc79a005f04c83233c37aadde9a7d
Size (linux.rom.gz) = 341085 bytes
SHA1 (patch-aa) = 0f63d74e077fc3abd18fa6630f0b86d2aca321a5
SHA1 (patch-hostfs.c) = 56b3649fdd95ff4b6c98fc2666fd6b0d04c811f8

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.4 2006/10/18 23:30:46 wiz Exp $
$NetBSD: distinfo,v 1.5 2015/11/03 20:30:55 agc Exp $
SHA1 (arnsrc27012002.zip) = de3102b954d79176dce259375dc1824189027f8e
RMD160 (arnsrc27012002.zip) = 7b43c157cbc4f6171ee9ef14cc282cc1692188c6
SHA512 (arnsrc27012002.zip) = 035a8c935d221634f2ec9fb341291aa733dbf224d66a84e337928e77d0ff27de4875529b019d2600d87dfeeac998f2772d3ff6e0222d29fd9766540c595b28ec
Size (arnsrc27012002.zip) = 916680 bytes
SHA1 (patch-aa) = aff649f6c37cf7a321c182442d9faac44594b413
SHA1 (patch-ab) = fde2730f3cf53d539543489a6d691ad7a6bc9d68

View File

@@ -1,4 +1,4 @@
$NetBSD: distinfo,v 1.18 2013/05/19 07:35:56 adam Exp $
$NetBSD: distinfo,v 1.19 2016/04/01 15:49:02 jperkin Exp $
SHA1 (atari800-3.0.0.tar.gz) = 24dca4580805d2c1d6aa28a2b440c552a2dd171f
RMD160 (atari800-3.0.0.tar.gz) = 705e132d8f0e8a17f520a011fe6074bc27a6de20
@@ -8,6 +8,6 @@ RMD160 (xf25.zip) = e3960898223dd4d1b9a9cc5cfb1251bd726ea5a7
Size (xf25.zip) = 188942 bytes
SHA1 (patch-aa) = 2bd0dc856397aec91f01ad3ab0f3835d6e062aed
SHA1 (patch-ab) = 23062b3f9f858914c668b522e2a76d068dd24abf
SHA1 (patch-ac) = c9ef6b078f48ebeedf3719af15469abf6959991d
SHA1 (patch-ac) = 28a10768c6214cbe3cad9006916dbfa28b70eb96
SHA1 (patch-ad) = 1567687cd851d606616aa35dc36a4e63e839181a
SHA1 (patch-rdevice.c) = 9c17f7e600db506e7e6e9f1f3780e66b404813be

View File

@@ -1,4 +1,6 @@
$NetBSD: patch-ac,v 1.7 2013/05/19 07:35:56 adam Exp $
$NetBSD: patch-ac,v 1.8 2016/04/01 15:49:02 jperkin Exp $
Use pkgsrc layout/flags.
--- Makefile.in.orig 2012-03-18 15:31:09.000000000 +0000
+++ Makefile.in
@@ -17,7 +19,7 @@ $NetBSD: patch-ac,v 1.7 2013/05/19 07:35:56 adam Exp $
BIN_DIR = @prefix@/bin
-MAN_DIR = @prefix@/share/man/man1
+MAN_DIR = @prefix@/man/man1
+MAN_DIR = @prefix@/${PKGMANDIR}/man1
DOC_DIR = @prefix@/share/doc/atari800
DESTDIR =

View File

@@ -1,8 +1,8 @@
# $NetBSD: Makefile,v 1.7 2015/04/25 14:20:44 tnn Exp $
# $NetBSD: Makefile,v 1.8 2016/07/16 00:20:27 markd Exp $
DISTNAME= B-emv2.2Linux
PKGNAME= b-em-2.2
PKGREVISION= 1
PKGREVISION= 2
CATEGORIES= emulators
MASTER_SITES= http://b-em.bbcmicro.com/
@@ -49,7 +49,7 @@ do-install:
BUILDLINK_API_DEPENDS.allegro+= allegro>=4.4.2nb2
.include "../../devel/allegro/buildlink3.mk"
.include "../../audio/openal/buildlink3.mk"
.include "../../audio/openal-soft/buildlink3.mk"
.include "../../audio/freealut/buildlink3.mk"
.include "../../graphics/MesaLib/buildlink3.mk"
.include "../../graphics/glu/buildlink3.mk"

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.3 2012/08/12 02:03:15 marino Exp $
$NetBSD: distinfo,v 1.4 2015/11/03 20:30:55 agc Exp $
SHA1 (B-emv2.2Linux.tar.gz) = 648eb122bba6d7701b341b5af214e4fce1012686
RMD160 (B-emv2.2Linux.tar.gz) = b6aa6e3e5ba8b24207278211ce17f19b182f93f5
SHA512 (B-emv2.2Linux.tar.gz) = 44a9e63906e890ff6c3b9356218be42866d18f435a8772213f384b9dc8b8212bb05638ca4bfd64e07c07b126102bc13036749abb64faf136734acb20a15d96e0
Size (B-emv2.2Linux.tar.gz) = 4855775 bytes
SHA1 (patch-src-fdi2raw.c) = 98a00eb3059c92b0c2e8009275e5b4a7dfee9b0c
SHA1 (patch-src-linux.c) = c0188ea8d3bb466dcbaf7a6929577f249e6ef0f1

View File

@@ -1,8 +1,8 @@
# $NetBSD: Makefile,v 1.33 2015/04/25 14:20:44 tnn Exp $
# $NetBSD: Makefile,v 1.34 2016/08/03 10:22:43 adam Exp $
#
DISTNAME= blinkensim-2.2
PKGREVISION= 26
PKGREVISION= 27
CATEGORIES= emulators graphics
MASTER_SITES= http://sven.gimp.org/blinkenlights/old/

View File

@@ -1,5 +1,6 @@
$NetBSD: distinfo,v 1.2 2005/02/23 18:49:17 agc Exp $
$NetBSD: distinfo,v 1.3 2015/11/03 20:30:55 agc Exp $
SHA1 (blinkensim-2.2.tar.gz) = 2d7867a28c99b46832a838138ab77c067f0d1457
RMD160 (blinkensim-2.2.tar.gz) = 25812177a0def4969fe6d531ba378fbfc6ecb637
SHA512 (blinkensim-2.2.tar.gz) = 7ee3bb4cb552b6615e548e1210c9ce2637663500846dc6e9b1df9da1155bf48b433abba5277c97586c2bbb0c670db7c8740ec0e5241e1f5cd43ada7ee362f061
Size (blinkensim-2.2.tar.gz) = 59111 bytes

View File

@@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.83 2015/08/18 07:31:07 wiz Exp $
# $NetBSD: Makefile,v 1.85 2016/08/03 10:22:43 adam Exp $
DISTNAME= bochs-2.6.8
PKGREVISION= 1
PKGREVISION= 2
CATEGORIES= emulators
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=bochs/}
@@ -80,16 +80,11 @@ CONFIGURE_ARGS+= --enable-plugins
CONFIGURE_ARGS+= --enable-fast-function-calls
. endif
. if ${OPSYS} == "Darwin"
CONFIGURE_ARGS+= --enable-sb16=osx
. elif ${OPSYS} == "FreeBSD"
CONFIGURE_ARGS+= --enable-sb16=freebsd
. elif ${OPSYS} == "Linux"
CONFIGURE_ARGS+= --enable-sb16=linux
CONFIGURE_ARGS+= --enable-pcidev
. else
CONFIGURE_ARGS+= --enable-sb16=dummy
. endif
CONFIGURE_ARGS.Darwin+= --enable-sb16=osx
CONFIGURE_ARGS.FreeBSD+= --enable-sb16=freebsd
CONFIGURE_ARGS.Linux+= --enable-sb16=linux
CONFIGURE_ARGS.Linux+= --enable-pcidev
CONFIGURE_ARGS.*+= --enable-sb16=dummy
.endif
.if empty(PKG_OPTIONS:Mx11)
@@ -101,16 +96,13 @@ CONFIGURE_ARGS+= --with-term
PLIST.x11= yes
.endif
.if ${OPSYS} == "Linux"
BOCHSRC_SUBST+= -e 's,@FLOPPY_BSD@,\#,'
BOCHSRC_SUBST+= -e 's,@FLOPPY_LINUX@,,'
.elif ${OPSYS} == "Darwin"
BOCHSRC_SUBST+= -e 's,@FLOPPY_BSD@,\#,'
BOCHSRC_SUBST+= -e 's,@FLOPPY_LINUX@,\#,'
.else
BOCHSRC_SUBST+= -e 's,@FLOPPY_BSD@,,'
BOCHSRC_SUBST+= -e 's,@FLOPPY_LINUX@,\#,'
.endif
OPSYSVARS+= BOCHSRC_SUBST
BOCHSRC_SUBST.Linux+= -e 's,@FLOPPY_BSD@,\#,'
BOCHSRC_SUBST.Linux+= -e 's,@FLOPPY_LINUX@,,'
BOCHSRC_SUBST.Darwin+= -e 's,@FLOPPY_BSD@,\#,'
BOCHSRC_SUBST.Darwin+= -e 's,@FLOPPY_LINUX@,\#,'
BOCHSRC_SUBST.*+= -e 's,@FLOPPY_BSD@,,'
BOCHSRC_SUBST.*+= -e 's,@FLOPPY_LINUX@,\#,'
.if ${OPSYS} == "Darwin"
MESSAGE_SRC= ${.CURDIR}/MESSAGE.Darwin

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.30 2015/07/01 13:39:17 ryoon Exp $
$NetBSD: distinfo,v 1.31 2015/11/03 20:30:55 agc Exp $
SHA1 (bochs-2.6.8.tar.gz) = 561dc622033facb321fd9ac2e56589ae724cfdb2
RMD160 (bochs-2.6.8.tar.gz) = cf6f9a427559c79e18c208a89e7146b6e9798ea5
SHA512 (bochs-2.6.8.tar.gz) = 5e7438a6a09417cbc0b311810a485374bb9b10be452edd9daff0afacd487ada66f37b8189d4868d3420dae82ef6c38fe279d541d24f8a41bf1ca59359572e7bd
Size (bochs-2.6.8.tar.gz) = 5075617 bytes
SHA1 (patch-.bochsrc) = df5b8879ec005fe44bca8bee42c549095012013d
SHA1 (patch-Makefile.in) = ca8d485a9f4901df15eb3e521105de2ae833cfcb

View File

@@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.28 2015/05/04 21:14:24 wiz Exp $
# $NetBSD: Makefile,v 1.30 2016/04/11 19:01:50 ryoon Exp $
DISTNAME= ckmame-0.12
PKGREVISION= 1
PKGREVISION= 3
CATEGORIES= emulators
MASTER_SITES= http://www.nih.at/ckmame/
EXTRACT_SUFX= .tar.xz

View File

@@ -1,5 +1,6 @@
$NetBSD: distinfo,v 1.7 2015/05/03 12:13:07 wiz Exp $
$NetBSD: distinfo,v 1.8 2015/11/03 20:30:55 agc Exp $
SHA1 (ckmame-0.12.tar.xz) = 2f7ed3066393a15cdfadeac992a5be5da141be09
RMD160 (ckmame-0.12.tar.xz) = d80724e5d21df189767edb07b6294a6c2d1a5b82
SHA512 (ckmame-0.12.tar.xz) = 48a44cca15b245805c26ab996c9eb28491751530244ca6260c1e73f772edaa2b2532f7385be19afe4da8b5e0e1cd8bf33374c20cc9a13c93d818bd9a35e6e9ca
Size (ckmame-0.12.tar.xz) = 366152 bytes

View File

@@ -1,5 +1,6 @@
$NetBSD: distinfo,v 1.2 2012/04/15 15:46:53 wiz Exp $
$NetBSD: distinfo,v 1.3 2015/11/03 20:30:56 agc Exp $
SHA1 (cmdpack-1.03-src.tar.gz) = a6df4184878adf3131b0578506118ad1e77c265c
RMD160 (cmdpack-1.03-src.tar.gz) = a9073592aeb3514e8dd456189d34deb1e5e4952a
SHA512 (cmdpack-1.03-src.tar.gz) = fe798c734596866d36b7f26041700ddfc49d85a381cffcc99c06649ee798e920679d3339156ba4acee889c348e1026ce1e2f2bbcc2e0fa882164733d738115c5
Size (cmdpack-1.03-src.tar.gz) = 80716 bytes

View File

@@ -1,11 +1,14 @@
$NetBSD: distinfo,v 1.2 2005/05/25 11:59:45 wiz Exp $
$NetBSD: distinfo,v 1.3 2015/11/03 20:30:56 agc Exp $
SHA1 (cygwin/esound-0.2.35-1.tar.bz2) = 40dd08cfbf4aae24b8c2448c6038815e2ea21239
RMD160 (cygwin/esound-0.2.35-1.tar.bz2) = 271d1bfe3d7fcf2180cc9194ec7e2c66bc1b641d
SHA512 (cygwin/esound-0.2.35-1.tar.bz2) = 9931402d0c75033cfef7a29efbcf99584de14b9108d2d70e1bf0c0a112d919bab3ee3a954fa00e7cc5000f875fe329eab11e87124f5d35c8449ccb17ad896f4d
Size (cygwin/esound-0.2.35-1.tar.bz2) = 125137 bytes
SHA1 (cygwin/libesound0-0.2.35-1.tar.bz2) = 3219452e22a516995aa48713ad0a5999ff8e681a
RMD160 (cygwin/libesound0-0.2.35-1.tar.bz2) = a31a073a8f0d76cf3ef90759d0be79229842beb8
SHA512 (cygwin/libesound0-0.2.35-1.tar.bz2) = 547ac5d9345c5cad6f7c54504373a0a34dc2e58d013e7c4ff8782e37556889990b20d63b242ab54ab797f3114f12b4c56dad1cfabd915b021bd1021fc54be950
Size (cygwin/libesound0-0.2.35-1.tar.bz2) = 11251 bytes
SHA1 (cygwin/libaudiofile0-0.2.6-2.tar.bz2) = 7c568a4366214e69810fefe62923beafd92ea6c1
RMD160 (cygwin/libaudiofile0-0.2.6-2.tar.bz2) = 7d808b0cba96b05fedc932b4445a7a5b6be58435
SHA512 (cygwin/libaudiofile0-0.2.6-2.tar.bz2) = 08c8cbf11d5b1abc0361718d215c274cdfceedfd8d04786ac1f007ae9f765e82b67a4f5cc847d885b5489a373f8069fbc1179553e2e5bb2387baead8cad57c43
Size (cygwin/libaudiofile0-0.2.6-2.tar.bz2) = 58049 bytes

View File

@@ -1,5 +1,6 @@
$NetBSD: distinfo,v 1.3 2005/03/29 23:30:26 tv Exp $
$NetBSD: distinfo,v 1.4 2015/11/03 20:30:56 agc Exp $
SHA1 (cygwin/cygwin-1.5.13-1.tar.bz2) = c882483995805609a71c80d3a1764740566eecf5
RMD160 (cygwin/cygwin-1.5.13-1.tar.bz2) = f266a256a864a5b3502805c12b921d66b73a0f14
SHA512 (cygwin/cygwin-1.5.13-1.tar.bz2) = 3b70dbd05e9f2b90fa89f6e691ffcb03d8b7b6d30c55d2e724a62351bffe0135a7dc9020b0ba7263803b0bf0d9975ad0475268f22ddba64cbfc8d95406f76926
Size (cygwin/cygwin-1.5.13-1.tar.bz2) = 1209375 bytes

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.7 2007/06/17 07:42:48 wiz Exp $
$NetBSD: distinfo,v 1.8 2015/11/03 20:30:56 agc Exp $
SHA1 (dn9b0401.tgz) = 3158ae8bd53891c2d17989cbb9d03493f1511132
RMD160 (dn9b0401.tgz) = 82201c3a2da113fa39edeb9ea675ddeceeec2bf3
SHA512 (dn9b0401.tgz) = 7029b399e9d12a3623814430e46fbadea9b00fd3c220291d4bf3af8463bc70d9c0e2c6adc3cfa526248a6be85fea1b8890dbbb3dab30d419dfd5712e292271ca
Size (dn9b0401.tgz) = 199963 bytes
SHA1 (patch-aa) = e7d2631d41d7914ed650a450a75f47ef711a3ca0
SHA1 (patch-ab) = 896a42a538f8a54da70fc3e8d0d01ac13eeb151d

View File

@@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.13 2014/05/29 23:36:32 wiz Exp $
# $NetBSD: Makefile,v 1.14 2016/07/09 06:38:15 wiz Exp $
DISTNAME= darwin_lib-6.6.2
PKGREVISION= 4
PKGREVISION= 5
CATEGORIES= emulators
MASTER_SITES= # http://www.opendarwin.org/downloads/6.6.2/RPMS/ \
# http://www.opendarwin.org/downloads/6.6.2/RPMS/${DARWIN_ARCH}/

View File

@@ -1,20 +1,26 @@
$NetBSD: distinfo,v 1.3 2005/02/23 18:49:18 agc Exp $
$NetBSD: distinfo,v 1.4 2015/11/03 20:30:56 agc Exp $
SHA1 (org.opendarwin.Libsystem-6.6.2-4.fat.rpm) = 933ede3dd6ea4188e66529ed9378db92c1934e0b
RMD160 (org.opendarwin.Libsystem-6.6.2-4.fat.rpm) = 7732537e35f965d9ed34665dfebbbcb2ed662ab3
SHA512 (org.opendarwin.Libsystem-6.6.2-4.fat.rpm) = c37cb9715c0b4a354020e1c7fd5a0cd869d02979013b5928e390e42f3c02c7afe04f63eea6561ba54a0ae664fe583edbdf68f092c9a8a3843e94f233617a40ae
Size (org.opendarwin.Libsystem-6.6.2-4.fat.rpm) = 6155242 bytes
SHA1 (org.opendarwin.Libm-6.6.2-4.fat.rpm) = 5a7a7311e929a8f4867f0c7bd43c64e7fe450b08
RMD160 (org.opendarwin.Libm-6.6.2-4.fat.rpm) = ed13229c4b94808fc1749f18e86e318f4fd24302
SHA512 (org.opendarwin.Libm-6.6.2-4.fat.rpm) = eedfba0d34db2e01b9ed3489713e337534a4014db52da976d53e38c2d33f29bf1f03940625fd43f5a92e103392339605875df708a495495c9013ab9b36b63f9c
Size (org.opendarwin.Libm-6.6.2-4.fat.rpm) = 463844 bytes
SHA1 (org.opendarwin.cctools-6.6.2-4.fat.rpm) = 13c4d5a19ee63c008e11ef950b8d0c1b34852d3f
RMD160 (org.opendarwin.cctools-6.6.2-4.fat.rpm) = 625a4598a8451ba054371f0dbb4934af39176510
SHA512 (org.opendarwin.cctools-6.6.2-4.fat.rpm) = 7c2b23536ed5b133a14203673c17b453f47e0e297a3de1141b2d5c5a22eb9cdadc6eb7d105a0b45a57f169fc68cdb63cdd6bb09661035ba0a9b564d016ad82c9
Size (org.opendarwin.cctools-6.6.2-4.fat.rpm) = 5060022 bytes
SHA1 (org.opendarwin.ncurses-6.6.2-4.fat.rpm) = e20ffe8d410f456fe59ff27f4759a3f02869146c
RMD160 (org.opendarwin.ncurses-6.6.2-4.fat.rpm) = 175dc483f3bd9f803cb666b3a38308311ec88410
SHA512 (org.opendarwin.ncurses-6.6.2-4.fat.rpm) = aacb426b6cb0fed91db0d79f822a241ed0e58e9e6b1189d494a047474b88d6adf70aeb6af128b872423e7ef0ea70b3fd0c7d2414eece8ae906b532d5060ac420
Size (org.opendarwin.ncurses-6.6.2-4.fat.rpm) = 1653506 bytes
SHA1 (org.opendarwin.IOKitUser-6.6.2-4.fat.rpm) = 34199c0e0fc298df262c04886b0fce8fa9ea5e66
RMD160 (org.opendarwin.IOKitUser-6.6.2-4.fat.rpm) = cf4e18543226dd9a53c2baa2c08b1ad85dbbcc09
SHA512 (org.opendarwin.IOKitUser-6.6.2-4.fat.rpm) = eb8bcb22dbf415866a8fd337594f7bf5cb65b060cf7964d4374abbeb092bdc4129498710d507739bf49760c86819f8245fb27ce6d9c1d8a33d1cf72072615200
Size (org.opendarwin.IOKitUser-6.6.2-4.fat.rpm) = 418276 bytes
SHA1 (org.opendarwin.XFree86-6.6.2-4.i386.rpm) = 3e5c5c6c9ad8e2508646520254d94869481a4d9d
RMD160 (org.opendarwin.XFree86-6.6.2-4.i386.rpm) = 209b8de0981bcba7c9cc65af7f00bd286529706a
SHA512 (org.opendarwin.XFree86-6.6.2-4.i386.rpm) = 4bf74213d9fc2d4585786fd3f01e63b08b92a354cd51db97de3f2430b0b60214c288ac2b1128c62a67c4affa3d9f6879b31a8b8fc93dd803e12604d30015caa5
Size (org.opendarwin.XFree86-6.6.2-4.i386.rpm) = 48481414 bytes

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.5 2012/05/16 11:27:31 marino Exp $
$NetBSD: distinfo,v 1.6 2015/11/03 20:30:56 agc Exp $
SHA1 (dega-1.07.tar.gz) = 1401e5af566bc3e7658a4552940219688c082ce8
RMD160 (dega-1.07.tar.gz) = a20ad5d4ec47b3a8e65e64355557b6018a9dcfc4
SHA512 (dega-1.07.tar.gz) = bb683c165abfe8fcf3e20d8dc32e690f483e9b3257b0dacca3572d3cd96475f7e9b73a951135fac278d94313673a307131fc760f2e0ea61df911c3f6c93d89dd
Size (dega-1.07.tar.gz) = 85189 bytes
SHA1 (patch-Makefile) = 56ea5d81c07ec23f1466c9d8b1ddbfb6eb1a4e37
SHA1 (patch-aa) = 92f5e498320b751003f2efb79cafa5f7d96ab119

View File

@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.25 2015/04/25 14:20:44 tnn Exp $
# $NetBSD: Makefile,v 1.26 2016/06/01 13:31:29 joerg Exp $
#
DISTNAME= dgen-sdl-1.32
@@ -32,12 +32,5 @@ BUILDLINK_TRANSFORM+= rm:-mpentium
BUILDLINK_TRANSFORM+= rm:-march=pentium
BUILDLINK_TRANSFORM+= rm:-fno-rtti
.include "../../mk/compiler.mk"
.if !empty(CC_VERSION:Mgcc-[34]*)
BUILDLINK_TRANSFORM+= 'opt:-m\(align-loops.*\):-f\1'
BUILDLINK_TRANSFORM+= 'opt:-m\(align-jumps.*\):-f\1'
BUILDLINK_TRANSFORM+= 'opt:-m\(align-functions.*\):-f\1'
.endif
.include "../../devel/SDL/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.7 2015/03/31 15:20:53 joerg Exp $
$NetBSD: distinfo,v 1.8 2015/11/03 20:30:57 agc Exp $
SHA1 (dgen-sdl-1.32.tar.gz) = 68ab5dcdc29e5172bc760a13724afb35e8ca4378
RMD160 (dgen-sdl-1.32.tar.gz) = fcc0bf27a2360d6d26eec48da1483e4f99271e69
SHA512 (dgen-sdl-1.32.tar.gz) = 5848572f2e92d554af11e6e5ab5be281be11fff552795be691455ebb0e5aea445ce69eec20a499e4364f16233860a20447f4804f037ee1a41e817a670da3aa38
Size (dgen-sdl-1.32.tar.gz) = 885601 bytes
SHA1 (patch-cyclone_Cyclone.h) = 80922337ccb228b701a1f08a45d44f91a2f2da7b
SHA1 (patch-cyclone_Ea.cpp) = 51314ba86c0f91f7a2e4f4f2e05dec8ec8847096

View File

@@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.40 2015/04/25 14:20:44 tnn Exp $
# $NetBSD: Makefile,v 1.41 2016/09/19 09:13:10 jperkin Exp $
DISTNAME= dosbox-0.74
PKGREVISION= 6
PKGREVISION= 7
CATEGORIES= emulators
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dosbox/}
@@ -12,6 +12,7 @@ LICENSE= gnu-gpl-v2
USE_LANGUAGES= c c++
GNU_CONFIGURE= yes
CONFIGURE_ARGS.Darwin+= --disable-dynrec
CPPFLAGS.SunOS+= -DDISABLE_JOYSTICK
.include "../../mk/compiler.mk"
.if !empty(CC_VERSION:Mclang*)

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.20 2014/04/17 00:49:51 wiz Exp $
$NetBSD: distinfo,v 1.21 2015/11/03 20:30:57 agc Exp $
SHA1 (dosbox-0.74.tar.gz) = 2d99f0013350efb29b769ff19ddc8e4d86f4e77e
RMD160 (dosbox-0.74.tar.gz) = 4534d87206de8401cd0de471d8172726f2c6b788
SHA512 (dosbox-0.74.tar.gz) = 4a6ff4c658997a495119d200ec6ad37649da940814a4b14fca0dd29a99142026e324695b7aa9d2946efc2abf9067a819d911e43778efe905ed10ddf9b9f2dd3d
Size (dosbox-0.74.tar.gz) = 1265711 bytes
SHA1 (patch-include_dos__inc.h) = c6c9e5e29b3861fa477ae6c00e335dc57737f8ff
SHA1 (patch-src_Makefile.in) = 6f811b5a1450ca88cb47d99d0381fb682d8b994d

View File

@@ -1,6 +1,7 @@
$NetBSD: distinfo,v 1.1.1.1 2010/02/05 20:20:41 markd Exp $
$NetBSD: distinfo,v 1.2 2015/11/03 20:30:57 agc Exp $
SHA1 (dynagen-0.11.0.tar.gz) = 3e3c6e33bc781301c7abe24532a06bca72d328af
RMD160 (dynagen-0.11.0.tar.gz) = c68861cab9959a28338777dd89ebb9c5064c4459
SHA512 (dynagen-0.11.0.tar.gz) = 41ad7f31a1c4e30f6859ab706f71c86d15e174af4cc59a1f9604f71b0f12cb28fd3487fd13bc56f98940a323dfdbe85eaabd3831fe778fc9f1a96196257df60d
Size (dynagen-0.11.0.tar.gz) = 1418846 bytes
SHA1 (patch-aa) = a3db849a4024188dd22eda174e0e8f1cf2e90802

View File

@@ -1,37 +1,27 @@
# $NetBSD: Makefile,v 1.9 2015/03/12 16:48:40 tnn Exp $
# $NetBSD: Makefile,v 1.11 2016/04/07 14:24:51 ryoon Exp $
DISTNAME= dynamips-0.2.8-RC2
PKGNAME= ${DISTNAME:S/-RC/rc/}
PKGREVISION= 1
DISTNAME= dynamips-0.2.16
CATEGORIES= emulators
MASTER_SITES= http://www.ipflow.utc.fr/dynamips/
MASTER_SITES= ${MASTER_SITE_GITHUB:=GNS3/}
GITHUB_PROJECT= dynamips
GITHUB_TAG= v${PKGVERSION_NOREV}
MAINTAINER= kefren@NetBSD.org
HOMEPAGE= http://www.ipflow.utc.fr/index.php/Cisco_7200_Simulator
HOMEPAGE= https://github.com/GNS3/dynamips
COMMENT= Cisco 3600 and 7200 MIPS emulator
LICENSE= gnu-gpl-v2
MAKE_JOBS_SAFE= no
USE_TOOLS+= gmake
NO_CONFIGURE= yes
BUILD_TARGET= # empty
USE_CMAKE= yes
SUBST_CLASSES+= libelf
SUBST_STAGE.libelf= post-patch
SUBST_FILES.libelf= dynamips.h rom2c.c
SUBST_FILES.libelf= common/dynamips.h common/rom2c.c
SUBST_SED.libelf= -e 's,<libelf.h>,<libelf/libelf.h>,'
SUBST_MESSAGE.libelf= Fix libelf header file path
INSTALLATION_DIRS= bin
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/dynamips ${DESTDIR}${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/nvram_export ${DESTDIR}${PREFIX}/bin
.include "../../devel/libelf/buildlink3.mk"
.include "../../devel/libuuid/buildlink3.mk"
.include "../../net/libpcap/buildlink3.mk"
.include "../../mk/dlopen.buildlink3.mk"
.include "../../mk/pthread.buildlink3.mk"

View File

@@ -1,3 +1,13 @@
@comment $NetBSD: PLIST,v 1.1.1.1 2008/02/14 11:00:13 kefren Exp $
@comment $NetBSD: PLIST,v 1.3 2016/04/07 14:24:51 ryoon Exp $
bin/dynamips
bin/nvram_export
man/man1/dynamips.1
man/man1/nvram_export.1
man/man7/hypervisor_mode.7
share/doc/dynamips/ChangeLog
share/doc/dynamips/COPYING
share/doc/dynamips/MAINTAINERS
share/doc/dynamips/README.md
share/doc/dynamips/README.hypervisor
share/doc/dynamips/RELEASE-NOTES
share/doc/dynamips/TODO

View File

@@ -1,7 +1,6 @@
$NetBSD: distinfo,v 1.7 2015/02/19 14:18:23 joerg Exp $
$NetBSD: distinfo,v 1.10 2016/04/07 14:24:51 ryoon Exp $
SHA1 (dynamips-0.2.8-RC2.tar.gz) = 349270690996a1e260b3eceb51ea90f94c25a59e
RMD160 (dynamips-0.2.8-RC2.tar.gz) = 0447a4c0cf516bd2b63259881c7625e26d0d838f
Size (dynamips-0.2.8-RC2.tar.gz) = 578935 bytes
SHA1 (patch-aa) = 9dce75ed9d39e6faaf3b8af7a52fa094073d6f56
SHA1 (patch-utils.h) = 10662fe161ba9d87615abfc6a8e1cb5bf19df3e5
SHA1 (dynamips-0.2.16.tar.gz) = 613e7f3447ead2ce68af4982c5db07c2f117a0df
RMD160 (dynamips-0.2.16.tar.gz) = ed57bfe1dc86c838d6c778ea54479ebbefeedd83
SHA512 (dynamips-0.2.16.tar.gz) = d2e719f3bd7d6e54ec49d0558645a3baa4cf77e0a911e069078463c7cafa391b6400a5aa7661744022b722d3e16ef07323056280df3b4121fd09eb64a7a1aa49
Size (dynamips-0.2.16.tar.gz) = 832173 bytes

View File

@@ -1,76 +0,0 @@
$NetBSD: patch-aa,v 1.6 2014/02/24 12:30:59 wiedi Exp $
--- Makefile.orig 2007-10-14 08:43:07.000000000 +0000
+++ Makefile
@@ -3,7 +3,19 @@
# Replace x86 by amd64 for a build on x86_64.
# Use "nojit" for architectures that are not x86 or x86_64.
-DYNAMIPS_ARCH?=x86
+ifeq ($(shell uname -m), i386)
+ DYNAMIPS_ARCH?=x86
+else
+ifeq ($(shell uname -m), i686)
+ DYNAMIPS_ARCH?=x86
+else
+ifeq ($(shell uname -m), amd64)
+ DYNAMIPS_ARCH?=amd64
+else
+ DYNAMIPS_ARCH?=nojit
+endif
+endif
+endif
# Change this to 0 if your system doesn't support RFC 2553 extensions
HAS_RFC2553?=1
@@ -54,11 +66,21 @@ ifeq ($(shell uname), FreeBSD)
$(PTHREAD_CFLAGS) -D_FILE_OFFSET_BITS=64
LIBS=-L$(LOCALBASE)/lib -L. -ldl -lelf $(PTHREAD_LIBS) $(LDFLAGS)
else
+ifeq ($(shell uname -s), NetBSD)
+ PTHREAD_LIBS?=-pthread
+ CFLAGS+=-I${LOCALBASE}/include -I${LOCALBASE}/include/libelf ${PTHREAD_CFLAGS}
+ LIBS=-L${LOCALBASE}/lib -lelf ${PTHREAD_LIBS} ${PTHREAD_LDFLAGS} ${COMPILER_RPATH_FLAG}${LOCALBASE}/lib
+else
+ifeq ($(shell uname -s), DragonFly)
+ PTHREAD_LIBS?=-pthread
+ CFLAGS+=-I${LOCALBASE}/include -I${LOCALBASE}/include/libelf ${PTHREAD_CFLAGS}
+ LIBS=-L${LOCALBASE}/lib -lelf ${PTHREAD_LIBS} ${PTHREAD_LDFLAGS} ${COMPILER_RPATH_FLAG}${LOCALBASE}/lib
+else
ifeq ($(shell uname), Linux)
PTHREAD_LIBS?=-lpthread
# PCAP_LIB=-lpcap
CFLAGS+=-I/usr/include -I. $(PTHREAD_CFLAGS)
- LIBS=-L/usr/lib -L. -ldl /usr/lib/libelf.a $(PTHREAD_LIBS)
+ LIBS=-L${LOCALBASE}/lib -L. -ldl -lelf $(PTHREAD_LIBS) ${COMPILER_RPATH_FLAG}${LOCALBASE}/lib
DESTDIR=/usr
else
ifeq ($(shell uname -s), Darwin)
@@ -66,11 +88,11 @@ ifeq ($(shell uname -s), Darwin)
LIBS=-L/usr/local/lib -L. -ldl -lelf -lpthread
else
ifeq ($(shell uname -s), SunOS)
- CFLAGS+=-I/usr/local/include -DINADDR_NONE=0xFFFFFFFF \
- -I /opt/csw/include -DSUNOS
- LIBS=-L/usr/local/lib -L. -ldl -lelf -lpthread -L/opt/csw/lib \
- -lsocket -lnsl -lresolv
- PCAP_LIB=/opt/csw/lib/libpcap.a
+ PTHREAD_LIBS?=-pthread
+ CFLAGS+=-I${LOCALBASE}/include -I${LOCALBASE}/include/libelf ${PTHREAD_CFLAGS} \
+ -DINADDR_NONE=0xFFFFFFFF -DSUNOS
+ LIBS=-L${LOCALBASE}/lib -lelf ${PTHREAD_LIBS} ${PTHREAD_LDFLAGS} \
+ ${COMPILER_RPATH_FLAG}${LOCALBASE}/lib -lsocket -lnsl -lresolv
else
ifeq ($(shell uname -o), Cygwin)
CFLAGS+=-I/usr/local/include -I/usr/local/include/libelf -DCYGWIN \
@@ -79,7 +101,9 @@ ifeq ($(shell uname -o), Cygwin)
PCAP_LIB=-lpacket -lwpcap
else
CFLAGS+=-I/usr/include/libelf -D_FILE_OFFSET_BITS=64
- LIBS=-L. -ldl /usr/lib/libelf.a -lpthread
+ LIBS=-L. -ldl -lelf -lpthread
+endif
+endif
endif
endif
endif

View File

@@ -1,31 +0,0 @@
$NetBSD: patch-utils.h,v 1.1 2015/02/19 14:18:23 joerg Exp $
--- utils.h.orig 2015-02-10 10:34:29.000000000 +0000
+++ utils.h
@@ -54,6 +54,12 @@
#define ARCH_BYTE_ORDER ARCH_LITTLE_ENDIAN
#elif defined(__ia64__)
#define ARCH_BYTE_ORDER ARCH_LITTLE_ENDIAN
+#elif defined(__BYTE_ORDER__) && defined(__ORDER_LITTLE_ENDIAN__) && defined(__ORDER_BIG_ENDIAN__)
+# if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
+# define ARCH_BYTE_ORDER ARCH_LITTLE_ENDIAN
+# else
+# define ARCH_BYTE_ORDER ARCH_BIG_ENDIAN
+# endif
#endif
#ifndef ARCH_BYTE_ORDER
@@ -80,8 +86,13 @@
#endif
/* Useful attributes for functions */
+#ifdef __arm__
+#define asmlinkage
+#define fastcall
+#else
#define asmlinkage __attribute__((regparm(0)))
#define fastcall __attribute__((regparm(3)))
+#endif
#if __GNUC__ > 2
#define forced_inline inline __attribute__((always_inline))

View File

@@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.33 2015/04/25 14:20:44 tnn Exp $
# $NetBSD: Makefile,v 1.34 2016/08/03 10:22:43 adam Exp $
DISTNAME= e-uae-0.8.28
PKGREVISION= 24
PKGREVISION= 25
CATEGORIES= emulators
MASTER_SITES= http://www.rcdrummond.net/uae/e-uae-0.8.28/
EXTRACT_SUFX= .tar.bz2

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.5 2012/11/23 12:32:21 joerg Exp $
$NetBSD: distinfo,v 1.6 2015/11/03 20:30:57 agc Exp $
SHA1 (e-uae-0.8.28.tar.bz2) = 11e647ed64420f85893ac77c072e268b650ae183
RMD160 (e-uae-0.8.28.tar.bz2) = 7e9fa21fa14b0ca3a32a28ccb236b9d7628a7f69
SHA512 (e-uae-0.8.28.tar.bz2) = fb23ca82629f976b6db7fb196d85d709ed23a87732280eb2546021964e02b0030f7065bb7f5d58f6e1baa17213687f2d571902f555b15a26b164b72f821babaa
Size (e-uae-0.8.28.tar.bz2) = 1148790 bytes
SHA1 (patch-aa) = 724afe48daba80794e830f71ff674cbfd2e42f48
SHA1 (patch-ab) = dfce48dafb163b91c7252da14088e67b3e13bb6c

View File

@@ -1,8 +1,8 @@
# $NetBSD: Makefile,v 1.5 2015/04/25 14:20:44 tnn Exp $
# $NetBSD: Makefile,v 1.7 2016/07/05 00:19:59 maya Exp $
DISTNAME= abba19584636c28cd98e3810e857f493cb63d06c
PKGNAME= emulationstation-2.0.0_rc1_20150210
PKGREVISION= 2
PKGREVISION= 3
CATEGORIES= emulators games
MASTER_SITES= https://github.com/Aloshi/EmulationStation/archive/
EXTRACT_SUFX= .zip
@@ -15,7 +15,7 @@ LICENSE= mit
USE_CMAKE= yes
USE_LANGUAGES+= c c++
GCC_REQD= 4.7 # C++11
GCC_REQD+= 4.7 # C++11
.include "../../mk/compiler.mk"
.if !empty(PKGSRC_COMPILER:Mclang)

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.3 2015/02/21 02:01:59 joerg Exp $
$NetBSD: distinfo,v 1.4 2015/11/03 20:30:57 agc Exp $
SHA1 (abba19584636c28cd98e3810e857f493cb63d06c.zip) = cdfef679f7b428a7cd4986e7b0f8e47965186130
RMD160 (abba19584636c28cd98e3810e857f493cb63d06c.zip) = b70ad1a8e826c959b58eba36e73df9932104b139
SHA512 (abba19584636c28cd98e3810e857f493cb63d06c.zip) = 32ad80836dbcaa5940687067193a85d752a5b573ea85e077881bae17bb24b5a059b64c6728b01a8410e0b72481eba5b03ddaf197fe3dae733df219a93e0f889c
Size (abba19584636c28cd98e3810e857f493cb63d06c.zip) = 1183630 bytes
SHA1 (patch-CMakeLists.txt) = 9b8d3f1b774e4bc35bac281f1723670707eb2435
SHA1 (patch-es-app_src_components_TextListComponent.h) = 63c33ad1f48a0654c881fc41455b22e3a8dc4c94

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.8 2005/10/30 11:47:56 wiz Exp $
$NetBSD: distinfo,v 1.9 2015/11/03 20:30:57 agc Exp $
SHA1 (fceu-0.98.13.src.tar.bz2) = fed37a9858aa8b149472f964b2ca652168e9f29a
RMD160 (fceu-0.98.13.src.tar.bz2) = fc736006ed1e9aa564de817622ed575f246bad48
SHA512 (fceu-0.98.13.src.tar.bz2) = f848f8752637f0aa4cd9aef9c539be7b4a35ad609bceb599c76ae02f48e3a87cffb3b066235b96e91c4bda2196945aecdfa4e129d314419cfce7c46f74afb4b0
Size (fceu-0.98.13.src.tar.bz2) = 570842 bytes
SHA1 (patch-aa) = 31ce24167b8f76df2961ce902d42f45b5278e451
SHA1 (patch-ac) = 8a5297b11484c6eaf5d70a391bb486ff58475f35

View File

@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.30 2013/04/06 19:42:41 rodent Exp $
# $NetBSD: Makefile,v 1.31 2016/03/01 20:16:52 joerg Exp $
DISTNAME= fMSX351
PKGNAME= fmsx-3.5.1
@@ -24,6 +24,9 @@ BUILD_DIRS= fMSX/Unix
.include "../../mk/bsd.prefs.mk"
.include "../../mk/endian.mk"
.if ${OPSYS} == "NetBSD"
DEFS+= -D_KERNTYPES
.endif
.if ${OPSYS} == "NetBSD" || ${OPSYS} == "SunOS"
USE_SUN_AUDIO?= YES
.else

View File

@@ -1,8 +1,8 @@
# $NetBSD: Makefile,v 1.5 2015/04/25 14:20:45 tnn Exp $
# $NetBSD: Makefile,v 1.7 2016/08/03 10:22:43 adam Exp $
DISTNAME= free42
PKGNAME= ${DISTNAME}-1.4.78
PKGREVISION= 2
PKGREVISION= 3
DIST_SUBDIR= ${PKGNAME_NOREV}
CATEGORIES= emulators
MASTER_SITES= http://thomasokken.com/free42/download/
@@ -22,13 +22,8 @@ BUILD_DIRS= gtk
BUILD_TARGET= free42${VARIANT}
.include "../../mk/bsd.prefs.mk"
.if (${OPSYS} == NetBSD)
CXXFLAGS+= -DNO_SINCOS
.elif (${OPSYS} == Linux)
MAKE_ENV+= AUDIO_ALSA=1
.endif
CXXFLAGS.NetBSD+= -DNO_SINCOS
MAKE_ENV.Linux+= AUDIO_ALSA=1
INSTALLATION_DIRS+= bin
INSTALLATION_DIRS+= share/doc/free42

View File

@@ -1,8 +1,8 @@
# $NetBSD: Makefile,v 1.27 2014/05/29 23:36:32 wiz Exp $
# $NetBSD: Makefile,v 1.28 2016/07/09 06:38:15 wiz Exp $
#
DISTNAME= freebsd_lib-2.2.7
PKGREVISION= 5
PKGREVISION= 6
CATEGORIES= emulators
MASTER_SITES= http://www.flame.org/NetBSD/

View File

@@ -1,5 +1,6 @@
$NetBSD: distinfo,v 1.3 2005/02/23 18:49:18 agc Exp $
$NetBSD: distinfo,v 1.4 2015/11/03 20:30:57 agc Exp $
SHA1 (freebsd_lib-2.2.7.tar.gz) = fb62fba4a442303d80df6820fd20592850fc877e
RMD160 (freebsd_lib-2.2.7.tar.gz) = 32b862c4d6fab0192dbc59dadd382713990283fd
SHA512 (freebsd_lib-2.2.7.tar.gz) = a50b35f914e81832e15a528e80760a8c9e03fc8b4e4607eaceee7e2dd0596847c72d6bb4fa382ce3ac9691dd302da7c1b71554832819f5f8a00f1305d68dd76e
Size (freebsd_lib-2.2.7.tar.gz) = 1950770 bytes

View File

@@ -0,0 +1,16 @@
FS-UAE is an Amiga emulator for Windows, Linux and Mac OS X based on
UAE/WinUAE, with a focus on emulating games.
Features include emulation of Amiga 500, 1200, 4000, CD32 and CDTV,
perfectly smooth scrolling on 50Hz displays, support for floppy images in
ADF and IPF formats, CD-ROM images in ISO or BIN/CUE format, mounting folders
on your computer as Amiga hard drives, support for Picasso 96 drivers for
high-color and high-resolution Workbench displays, and more...
A unique feature is support for cross-platform online play. You can now play
Amiga games against (or with) friends over the Internet.
The emulator uses the latest Amiga emulation code from the WinUAE project
and requires a moderately fast computer with accelerated graphics (OpenGL)
to work. A game pad or joystick is recommended, but not required (FS-UAE
can emulate a joystick using the cursor keys and right ctrl/alt keys).

View File

@@ -0,0 +1,56 @@
# $NetBSD: Makefile,v 1.5 2016/07/09 13:03:46 wiz Exp $
DISTNAME= fs-uae-launcher-2.6.2
CATEGORIES= emulators
MASTER_SITES= http://fs-uae.net/fs-uae/stable/${PKGVERSION_NOREV}/
MAINTAINER= adam@NetBSD.org
HOMEPAGE= http://fs-uae.net/
COMMENT= Graphical launcher for FS-UAE, the Amiga Emulator
LICENSE= gnu-gpl-v2
DEPENDS+= fs-uae>=${PKGVERSION_NOREV}:../../emulators/fs-uae
DEPENDS+= ${PYPKGPREFIX}-lhafile>=0.2.1:../../archivers/py-lhafile
DEPENDS+= ${PYPKGPREFIX}-sqlite3>=1:../../databases/py-sqlite3
DEPENDS+= ${PYPKGPREFIX}-qt5>=5.4:../../x11/py-qt5
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "Darwin"
DEPENDS+= ${PYPKGPREFIX}-pyobjc-framework-Cocoa>=3:../../devel/py-pyobjc-framework-Cocoa
DEPENDS+= ${PYPKGPREFIX}-pyobjc-framework-Quartz>=3:../../devel/py-pyobjc-framework-Quartz
.endif
INSTALL_TARGET= install-data
USE_TOOLS+= gmake msgfmt
# Imports urllib.parse which is 3+.
PYTHON_VERSIONS_ACCEPTED= 34 35
PYDISTUTILSPKG= yes
PYSETUPINSTALLARGS= --install-lib=${PREFIX:Q}/share/fs-uae-launcher
PYSETUPINSTALLARGS+= --install-scripts=${PREFIX:Q}/share/fs-uae-launcher
REPLACE_PYTHON+= fs-uae-launcher
REPLACE_PYTHON+= OpenGL/arrays/_buffers.py
REPLACE_PYTHON+= OpenGL/arrays/buffers.py
INSTALLATION_DIRS+= bin
SUBST_CLASSES+= prefix
SUBST_MESSAGE.prefix= Fixing installation prefix.
SUBST_STAGE.prefix= pre-configure
SUBST_FILES.prefix= Makefile
SUBST_FILES.prefix+= fs_uae_launcher/FSUAELauncher.py
SUBST_FILES.prefix+= game_center/gamecenterutil.py
SUBST_SED.prefix= -e 's,/usr/local,${PREFIX},'
post-install:
cd ${WRKSRC} && env ${MAKE_ENV} ${MAKE_PROGRAM} ${INSTALL_MAKE_FLAGS} \
-f ${MAKE_FILE} ${INSTALL_TARGET}
cd ${DESTDIR}${PREFIX}/bin && rm -f fs-uae-launcher && \
ln -s ../share/fs-uae-launcher/fs-uae-launcher \
${DESTDIR}${PREFIX}/bin/fs-uae-launcher
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
.include "../../lang/python/application.mk"
.include "../../lang/python/extension.mk"
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
.include "../../mk/bsd.pkg.mk"

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,7 @@
$NetBSD: distinfo,v 1.1 2015/11/04 21:24:14 adam Exp $
SHA1 (fs-uae-launcher-2.6.2.tar.gz) = 558de8f22f7031457ebdc097995be97b71f3e615
RMD160 (fs-uae-launcher-2.6.2.tar.gz) = bc6f62355f5d3d2879f7f13d0a3f642c71ee3d30
SHA512 (fs-uae-launcher-2.6.2.tar.gz) = 6240e8df1e756819deb2bc71c5fa37e2b53791d87cbe6c693dc10b8537b97bf2c558d37b52adad07f7e11719e5b32fb69b2a06504f7c142860eea841f719fbb6
Size (fs-uae-launcher-2.6.2.tar.gz) = 8890037 bytes
SHA1 (patch-setup.py) = 6f0bc603618bbe2a0f47fefb0d71935a29de5468

View File

@@ -0,0 +1,18 @@
$NetBSD: patch-setup.py,v 1.1 2015/11/04 21:24:14 adam Exp $
Fix installation on Darwin.
--- setup.py.orig 2015-10-27 20:54:58.000000000 +0000
+++ setup.py
@@ -170,10 +170,6 @@ if sys.argv[1] == "build_exe":
if sys.platform == "win32" and False:
setup_kwargs["windows"] = scripts
-if sys.platform == "darwin":
- setup_kwargs["name"] = title
- setup_kwargs["version"] = "2.6.2"
-else:
- setup_kwargs["scripts"] = scripts
+setup_kwargs["scripts"] = scripts
setup(**setup_kwargs)

16
emulators/fs-uae/DESCR Normal file
View File

@@ -0,0 +1,16 @@
FS-UAE is an Amiga emulator for Windows, Linux and Mac OS X based on
UAE/WinUAE, with a focus on emulating games.
Features include emulation of Amiga 500, 1200, 4000, CD32 and CDTV,
perfectly smooth scrolling on 50Hz displays, support for floppy images in
ADF and IPF formats, CD-ROM images in ISO or BIN/CUE format, mounting folders
on your computer as Amiga hard drives, support for Picasso 96 drivers for
high-color and high-resolution Workbench displays, and more...
A unique feature is support for cross-platform online play. You can now play
Amiga games against (or with) friends over the Internet.
The emulator uses the latest Amiga emulation code from the WinUAE project
and requires a moderately fast computer with accelerated graphics (OpenGL)
to work. A game pad or joystick is recommended, but not required (FS-UAE
can emulate a joystick using the cursor keys and right ctrl/alt keys).

34
emulators/fs-uae/Makefile Normal file
View File

@@ -0,0 +1,34 @@
# $NetBSD: Makefile,v 1.4 2016/07/16 00:19:02 markd Exp $
DISTNAME= fs-uae-2.6.2
PKGREVISION= 1
CATEGORIES= emulators
MASTER_SITES= http://fs-uae.net/fs-uae/stable/${PKGVERSION_NOREV}/
MAINTAINER= adam@NetBSD.org
HOMEPAGE= http://fs-uae.net/
COMMENT= FS-UAE Amiga Emulator
LICENSE= gnu-gpl-v2
USE_LANGUAGES= c c++
USE_TOOLS+= msgfmt pkg-config zip
GNU_CONFIGURE= yes
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} != "Darwin"
.include "../../audio/openal-soft/buildlink3.mk"
.include "../../graphics/MesaLib/buildlink3.mk"
.include "../../graphics/glu/buildlink3.mk"
.include "../../x11/libX11/buildlink3.mk"
.include "../../x11/libXi/buildlink3.mk"
.endif
.include "../../devel/SDL2/buildlink3.mk"
.include "../../devel/glib2/buildlink3.mk"
.include "../../devel/zlib/buildlink3.mk"
.include "../../graphics/freetype2/buildlink3.mk"
.include "../../graphics/glew/buildlink3.mk"
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
.include "../../graphics/png/buildlink3.mk"
.include "../../multimedia/libmpeg2/buildlink3.mk"
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
.include "../../mk/bsd.pkg.mk"

343
emulators/fs-uae/PLIST Normal file
View File

@@ -0,0 +1,343 @@
@comment $NetBSD: PLIST,v 1.1 2015/11/04 21:24:14 adam Exp $
bin/fs-uae
bin/fs-uae-device-helper
share/applications/fs-uae.desktop
share/doc/fs-uae/COPYING
share/doc/fs-uae/README
share/fs-uae/2x_1920_1080/theme.conf
share/fs-uae/2x_1920_1080_bezel/overlay.png
share/fs-uae/2x_1920_1080_bezel/theme.conf
share/fs-uae/aros-amiga-m68k-ext.bin
share/fs-uae/aros-amiga-m68k-rom.bin
share/fs-uae/aspect.png
share/fs-uae/close.png
share/fs-uae/floppy_sounds/drive_click.wav
share/fs-uae/floppy_sounds/drive_snatch.wav
share/fs-uae/floppy_sounds/drive_spin.wav
share/fs-uae/floppy_sounds/drive_spinnd.wav
share/fs-uae/floppy_sounds/drive_startup.wav
share/fs-uae/fs-uae.dat
share/fs-uae/gloss.png
share/fs-uae/glow_left.png
share/fs-uae/glow_top.png
share/fs-uae/glow_top_left.png
share/fs-uae/heading_strip.png
share/fs-uae/input/00000000000000000000000000000000.fs-uae-controller
share/fs-uae/input/030000000b0400003365000000010000.fs-uae-controller
share/fs-uae/input/03000000300f00001201000010010000.fs-uae-controller
share/fs-uae/input/03000000300f00001201000010010000/jess_tech_dual_analog_pad_12_4_1_0_linux.conf
share/fs-uae/input/03000000300f00001201000010010000/names.txt
share/fs-uae/input/03000000450c00002043000010010000.fs-uae-controller
share/fs-uae/input/030000004c0500006802000011010000.fs-uae-controller
share/fs-uae/input/030000004c0500006802000011010000/names.txt
share/fs-uae/input/030000004c0500006802000011010000/sony_playstation_r_3_controller_19_27_0_0_linux.conf
share/fs-uae/input/030000004c050000c405000011010000.fs-uae-controller
share/fs-uae/input/030000004f04000015b3000010010000.fs-uae-controller
share/fs-uae/input/030000004f04000020b3000010010000.fs-uae-controller
share/fs-uae/input/030000004f04000020b3000010010000/names.txt
share/fs-uae/input/030000004f04000020b3000010010000/thrustmaster_2_in_1_dt_12_4_1_0_linux.conf
share/fs-uae/input/030000005e0400001907000000010000.fs-uae-controller
share/fs-uae/input/030000005e0400001907000000010000/names.txt
share/fs-uae/input/030000005e0400001907000000010000/xbox_360_wireless_receiver_15_6_0_0_linux.conf
share/fs-uae/input/030000005e0400008e02000014010000.fs-uae-controller
share/fs-uae/input/030000005e0400008e02000014010000/microsoft_x_box_360_pad_11_6_1_0_linux.conf
share/fs-uae/input/030000005e0400008e02000014010000/names.txt
share/fs-uae/input/030000005e0400008e02000020200000.fs-uae-controller
share/fs-uae/input/030000005e0400008e02000070050000.fs-uae-controller
share/fs-uae/input/030000005e040000d102000001010000.fs-uae-controller
share/fs-uae/input/030000006d04000019c2000011010000.fs-uae-controller
share/fs-uae/input/030000006d04000019c2000011010000/logitech_logitech_cordless_rumblepad_2_12_4_1_0_linux.conf
share/fs-uae/input/030000006d04000019c2000011010000/names.txt
share/fs-uae/input/030000006d0400001dc2000014400000.fs-uae-controller
share/fs-uae/input/030000006d0400001dc2000014400000/generic_x_box_pad_11_6_1_0_linux.conf
share/fs-uae/input/030000006d0400001dc2000014400000/names.txt
share/fs-uae/input/030000006d0400001ec2000020200000.fs-uae-controller
share/fs-uae/input/030000006d0400001ec2000020200000/generic_x_box_pad_11_6_1_0_linux.conf
share/fs-uae/input/030000006d0400001ec2000020200000/names.txt
share/fs-uae/input/030000006d0400001fc2000005030000.fs-uae-controller
share/fs-uae/input/030000006d0400001fc2000005030000/generic_x_box_pad_11_6_1_0_linux.conf
share/fs-uae/input/030000006d0400001fc2000005030000/names.txt
share/fs-uae/input/030000006d040000d2ca000011010000.fs-uae-controller
share/fs-uae/input/030000006d040000d2ca000011010000/names.txt
share/fs-uae/input/030000006d040000d2ca000011010000/ps3_usb_cordless_gamepad_13_4_1_0_linux.conf
share/fs-uae/input/03000000790000001100000010010000.fs-uae-controller
share/fs-uae/input/0300000081170000990a000001010000.fs-uae-controller
share/fs-uae/input/03000000830500006020000010010000.fs-uae-controller
share/fs-uae/input/03000000a30600000901000000010000.fs-uae-controller
share/fs-uae/input/03000000a30600000901000000010000/names.txt
share/fs-uae/input/03000000a30600000901000000010000/saitek_p880_12_4_1_0_linux.conf
share/fs-uae/input/03000000c01100000591000011010000.fs-uae-controller
share/fs-uae/input/03000000c62400001a53000000010000.fs-uae-controller
share/fs-uae/input/03000000f025000021c1000010010000.fs-uae-controller
share/fs-uae/input/03000000f0250000c383000010010000.fs-uae-controller
share/fs-uae/input/0b040000000000003365000000000000.fs-uae-controller
share/fs-uae/input/0b043365000000000000504944564944.fs-uae-controller
share/fs-uae/input/2_in_1_dt_12_4_1_0_macosx.conf
share/fs-uae/input/2_in_1_dt_12_4_1_0_windows.conf
share/fs-uae/input/300f0000000000001201000000000000.fs-uae-controller
share/fs-uae/input/300f1201000000000000504944564944.fs-uae-controller
share/fs-uae/input/450c2043000000000000504944564944.fs-uae-controller
share/fs-uae/input/4c050000000000006802000000000000.fs-uae-controller
share/fs-uae/input/4c05000000000000c405000000000000.fs-uae-controller
share/fs-uae/input/4c05c405000000000000504944564944.fs-uae-controller
share/fs-uae/input/4f0400000000000015b3000000000000.fs-uae-controller
share/fs-uae/input/4f0400000000000020b3000000000000.fs-uae-controller
share/fs-uae/input/4f0415b3000000000000504944564944.fs-uae-controller
share/fs-uae/input/4f0420b3000000000000504944564944.fs-uae-controller
share/fs-uae/input/5e040000000000008e02000000000000.fs-uae-controller
share/fs-uae/input/5e048e02000000000000504944564944.fs-uae-controller
share/fs-uae/input/5e04a102000000000000504944564944.fs-uae-controller
share/fs-uae/input/5e04d102000000000000504944564944.fs-uae-controller
share/fs-uae/input/6d0400000000000016c2000000000000.fs-uae-controller
share/fs-uae/input/6d0400000000000018c2000000000000.fs-uae-controller
share/fs-uae/input/6d0400000000000019c2000000000000.fs-uae-controller
share/fs-uae/input/6d040000000000001dc2000000000000.fs-uae-controller
share/fs-uae/input/6d040000000000001ec2000000000000.fs-uae-controller
share/fs-uae/input/6d040000000000001fc2000000000000.fs-uae-controller
share/fs-uae/input/6d04000000000000d2ca000000000000.fs-uae-controller
share/fs-uae/input/6d0416c2000000000000504944564944.fs-uae-controller
share/fs-uae/input/6d0418c2000000000000504944564944.fs-uae-controller
share/fs-uae/input/6d0419c2000000000000504944564944.fs-uae-controller
share/fs-uae/input/6d041dc2000000000000504944564944.fs-uae-controller
share/fs-uae/input/6d041ec2000000000000504944564944.fs-uae-controller
share/fs-uae/input/6d041fc2000000000000504944564944.fs-uae-controller
share/fs-uae/input/6d04d2ca000000000000504944564944.fs-uae-controller
share/fs-uae/input/8117000000000000990a000000000000.fs-uae-controller
share/fs-uae/input/8117990a000000000000504944564944.fs-uae-controller
share/fs-uae/input/83050000000000006020000000000000.fs-uae-controller
share/fs-uae/input/83056020000000000000504944564944.fs-uae-controller
share/fs-uae/input/92125441000000000000504944564944.fs-uae-controller
share/fs-uae/input/a3060000000000000901000000000000.fs-uae-controller
share/fs-uae/input/a3060901000000000000504944564944.fs-uae-controller
share/fs-uae/input/atari_controller_usb_1_2_0_0_windows.conf
share/fs-uae/input/c0110591000000000000504944564944.fs-uae-controller
share/fs-uae/input/c6241a53000000000000504944564944.fs-uae-controller
share/fs-uae/input/common/gamepad.ini
share/fs-uae/input/common/xarcade.ini
share/fs-uae/input/common/xinput_gamepad.ini
share/fs-uae/input/controller_gamepad_f310_10_5_1_0_windows.conf
share/fs-uae/input/controller_pro_ex_mini_for_xbox_10_5_1_0_windows.conf
share/fs-uae/input/controller_rumble_gamepad_f510_10_5_1_0_windows.conf
share/fs-uae/input/controller_wireless_gamepad_f710_10_5_1_0_windows.conf
share/fs-uae/input/controller_xbox_360_for_windows_10_5_1_0_windows.conf
share/fs-uae/input/controller_xbox_360_wireless_receiver_for_windows_10_5_1_0_windows.conf
share/fs-uae/input/controller_xbox_one_for_windows_11_6_1_0_windows.conf
share/fs-uae/input/custom/custom_x_arcade.ini
share/fs-uae/input/custom/custom_x_arcade_right.ini
share/fs-uae/input/dual_analog_pad_12_4_1_0_macosx.conf
share/fs-uae/input/dual_analog_pad_12_4_1_0_windows.conf
share/fs-uae/input/f02521c1000000000000504944564944.fs-uae-controller
share/fs-uae/input/f025c383000000000000504944564944.fs-uae-controller
share/fs-uae/input/gamtec_ltd/smartjoy_plus_adapter.ini
share/fs-uae/input/generic/keyboard.ini
share/fs-uae/input/generic/mouse.ini
share/fs-uae/input/generic_x_box_pad_11_6_1_0_linux.conf
share/fs-uae/input/gioteck_ps3_wired_controller_13_4_1_0_windows.conf
share/fs-uae/input/gioteck_vx2_wired_controller_12_4_1_0_windows.conf
share/fs-uae/input/goodbetterbest_ltd_gioteck_vx2_wired_controller_16_5_1_0_linux.conf
share/fs-uae/input/jess_tech_dual_analog_pad_12_4_1_0_linux.conf
share/fs-uae/input/linux/saitek_dual_analog_pad_12_4_1_0_linux.conf
share/fs-uae/input/logitech/controller_rumble_gamepad_f510.ini
share/fs-uae/input/logitech/controller_wireless_gamepad_f710.ini
share/fs-uae/input/logitech/g27_racing_wheel.ini
share/fs-uae/input/logitech/gamepad_f310_controller.ini
share/fs-uae/input/logitech/logitech_cordless_rumblepad_2.ini
share/fs-uae/input/logitech/logitech_dual_action.ini
share/fs-uae/input/logitech/logitech_extreme_3d.ini
share/fs-uae/input/logitech/logitech_extreme_3d_pro.ini
share/fs-uae/input/logitech/logitech_rumblepad_2.ini
share/fs-uae/input/logitech/ps3_usb_cordless_gamepad.ini
share/fs-uae/input/logitech_cordless_rumblepad_2_12_4_1_0_macosx.conf
share/fs-uae/input/logitech_cordless_rumblepad_2_12_4_1_0_windows.conf
share/fs-uae/input/logitech_cordless_rumblepad_2_usb_12_4_1_0_windows.conf
share/fs-uae/input/logitech_dual_action_12_4_1_0_macosx.conf
share/fs-uae/input/logitech_dual_action_12_4_1_0_windows.conf
share/fs-uae/input/logitech_dual_action_usb_12_4_1_0_windows.conf
share/fs-uae/input/logitech_gamepad_f310_11_6_1_0_linux.conf
share/fs-uae/input/logitech_gamepad_f510_11_6_1_0_linux.conf
share/fs-uae/input/logitech_gamepad_f710_11_6_1_0_linux.conf
share/fs-uae/input/logitech_logitech_cordless_rumblepad_2_12_4_1_0_linux.conf
share/fs-uae/input/logitech_r_precision_tm_gamepad_10_2_0_0_windows.conf
share/fs-uae/input/logitech_rumblepad_2_usb_12_4_1_0_macosx.conf
share/fs-uae/input/logitech_rumblepad_2_usb_12_4_1_0_windows.conf
share/fs-uae/input/mad_catz/wired_xbox_360_controller_sfiv.ini
share/fs-uae/input/microsoft/controller.ini
share/fs-uae/input/microsoft/controller_xbox_360_for_windows.ini
share/fs-uae/input/microsoft/controller_xbox_360_wireless_receiver_for_windows.ini
share/fs-uae/input/microsoft/wireless_360_controller.ini
share/fs-uae/input/microsoft/x_box_360_pad.ini
share/fs-uae/input/microsoft/xbox_360_for_windows_controller.ini
share/fs-uae/input/microsoft/xbox_360_wireless_receiver.ini
share/fs-uae/input/microsoft/xbox_360_wireless_receiver_for_windows_controller.ini
share/fs-uae/input/microsoft_x_box_360_pad_11_6_1_0_linux.conf
share/fs-uae/input/microsoft_x_box_one_pad_11_6_1_0_linux.conf
share/fs-uae/input/mosic/a_speed_link_competition_pro.ini
share/fs-uae/input/mosic/speed_link_competition_pro.ini
share/fs-uae/input/mosic/usb_2a4k_gamepad.ini
share/fs-uae/input/mosic_speed_link_competition_pro_4_2_0_0_linux.conf
share/fs-uae/input/other/retro_joystick_interface_v1_2.ini
share/fs-uae/input/other/usb_2_axis_8_button_gamepad.ini
share/fs-uae/input/p880_12_4_1_0_macosx.conf
share/fs-uae/input/p880_12_4_1_0_windows.conf
share/fs-uae/input/playstation_r_3_controller_19_4_0_0_macosx.conf
share/fs-uae/input/ps3_usb_cordless_gamepad_13_4_1_0_linux.conf
share/fs-uae/input/ps3_usb_cordless_gamepad_13_4_1_0_macosx.conf
share/fs-uae/input/ps3_usb_cordless_gamepad_13_4_1_0_windows.conf
share/fs-uae/input/retro_joystick_adapter_v2_0_3_2_0_0_macosx.conf
share/fs-uae/input/retro_joystick_adapter_v2_0_3_2_0_0_windows.conf
share/fs-uae/input/retrolink/usb_gamepad_10_2_0_0_linux.ini
share/fs-uae/input/retronicdesign_com_retro_joystick_adapter_v2_0_8_2_0_0_linux.conf
share/fs-uae/input/saitek/dual_analog_gamepad.ini
share/fs-uae/input/saitek/p880.ini
share/fs-uae/input/saitek/x52_flight_control_system.ini
share/fs-uae/input/saitek_p880_12_4_1_0_linux.conf
share/fs-uae/input/shanwan_gioteck_ps3_wired_controller_13_4_1_0_linux.conf
share/fs-uae/input/sony/computer_entertainment_wireless_inputdevice.ini
share/fs-uae/input/sony/playstation_r_3_controller.ini
share/fs-uae/input/sony/playstation_r_3_inputdevice.ini
share/fs-uae/input/sony_computer_entertainment_wireless_controller_14_10_1_0_linux.conf
share/fs-uae/input/sony_playstation_r_3_controller_19_27_0_0_linux.conf
share/fs-uae/input/speed_link_competition_pro_4_2_0_0_macosx.conf
share/fs-uae/input/speed_link_competition_pro_4_2_0_0_windows.conf
share/fs-uae/input/speedlink_strike_2_gamepad_12_5_1_0_windows.conf
share/fs-uae/input/speedlink_torid_12_4_1_0_linux.conf
share/fs-uae/input/speedlink_torid_12_4_1_0_windows.conf
share/fs-uae/input/thrustmaster/2_in_1_dt.ini
share/fs-uae/input/thrustmaster/t_mini_wireless.ini
share/fs-uae/input/thrustmaster/top_gun_fox_2_pro.ini
share/fs-uae/input/thrustmaster_2_in_1_dt_12_4_1_0_linux.conf
share/fs-uae/input/thrustmaster_dual_analog_3_2_12_4_1_0_macosx.conf
share/fs-uae/input/thrustmaster_dual_analog_3_2_12_4_1_0_windows.conf
share/fs-uae/input/thrustmaster_thrustmaster_dual_analog_3_2_12_4_1_0_linux.conf
share/fs-uae/input/universal_gamepad.ini
share/fs-uae/input/unknown.ini
share/fs-uae/input/usb_2_axis_8_button_gamepad_8_2_0_0_linux.conf
share/fs-uae/input/usb_2_axis_8_button_gamepad_8_2_0_0_macosx.conf
share/fs-uae/input/usb_2_axis_8_button_gamepad_8_2_0_0_windows.conf
share/fs-uae/input/usb_gamepad_10_2_0_0_linux.conf
share/fs-uae/input/wireless_360_controller_15_6_0_0_macosx.conf
share/fs-uae/input/wireless_controller_14_6_1_0_macosx.conf
share/fs-uae/input/wireless_controller_14_6_1_0_windows.conf
share/fs-uae/input/wisegroup_ltd/mp_8866_dual_usb_joypad.ini
share/fs-uae/input/wisegroup_ltd/tigergame_ps_ps2_game_controller_adapter.ini
share/fs-uae/input/x360controller_16_6_0_0_macosx.conf
share/fs-uae/input/xbox_360_wired_controller_15_6_0_0_macosx.conf
share/fs-uae/input/xbox_360_wireless_receiver_15_6_0_0_linux.conf
share/fs-uae/input/xbox_one_wired_controller_15_6_0_0_macosx.conf
share/fs-uae/input/xeox_gamepad_sl_6556_bk_12_4_1_0_linux.conf
share/fs-uae/input/xeox_gamepad_sl_6556_bk_12_4_1_0_windows.conf
share/fs-uae/input/xgaming/x_arcade.ini
share/fs-uae/input/xgaming/x_arcade_right.ini
share/fs-uae/input/xinput_controller_15_6_0_0_windows.conf
share/fs-uae/input/zeemote/steelseries_free.ini
share/fs-uae/item_background.png
share/fs-uae/led-bars-edge/audio_led_1.png
share/fs-uae/led-bars-edge/audio_led_2.png
share/fs-uae/led-bars-edge/audio_led_3.png
share/fs-uae/led-bars-edge/cd_led_1.png
share/fs-uae/led-bars-edge/cd_led_2.png
share/fs-uae/led-bars-edge/df0_led_1.png
share/fs-uae/led-bars-edge/df0_led_2.png
share/fs-uae/led-bars-edge/df1_led_1.png
share/fs-uae/led-bars-edge/df1_led_2.png
share/fs-uae/led-bars-edge/df2_led_1.png
share/fs-uae/led-bars-edge/df2_led_2.png
share/fs-uae/led-bars-edge/df3_led_1.png
share/fs-uae/led-bars-edge/df3_led_2.png
share/fs-uae/led-bars-edge/digit_0.png
share/fs-uae/led-bars-edge/digit_1.png
share/fs-uae/led-bars-edge/digit_10.png
share/fs-uae/led-bars-edge/digit_2.png
share/fs-uae/led-bars-edge/digit_3.png
share/fs-uae/led-bars-edge/digit_4.png
share/fs-uae/led-bars-edge/digit_5.png
share/fs-uae/led-bars-edge/digit_6.png
share/fs-uae/led-bars-edge/digit_7.png
share/fs-uae/led-bars-edge/digit_8.png
share/fs-uae/led-bars-edge/digit_9.png
share/fs-uae/led-bars-edge/fps_led_1.png
share/fs-uae/led-bars-edge/fps_led_2.png
share/fs-uae/led-bars-edge/fps_led_3.png
share/fs-uae/led-bars-edge/hd_led_1.png
share/fs-uae/led-bars-edge/hd_led_2.png
share/fs-uae/led-bars-edge/md_led_1.png
share/fs-uae/led-bars-edge/md_led_2.png
share/fs-uae/led-bars-edge/power_led_0.png
share/fs-uae/led-bars-edge/power_led_1.png
share/fs-uae/led-bars-edge/theme.conf
share/fs-uae/led-bars-edge/top_left_overlay.png
share/fs-uae/led-bars-edge/top_right_overlay.png
share/fs-uae/led-bars-edge/vsync_led_1.png
share/fs-uae/led-bars-edge/vsync_led_2.png
share/fs-uae/led-bars-edge/vsync_led_3.png
share/fs-uae/menu_arrow.png
share/fs-uae/menu_fade_item.png
share/fs-uae/menu_fade_selected_item.png
share/fs-uae/menu_font.png
share/fs-uae/pause_indicator.png
share/fs-uae/shaders/atari-color-fix.shader
share/fs-uae/shaders/crt.shader
share/fs-uae/shaders/curvature.shader
share/fs-uae/shaders/edge-detection.shader
share/fs-uae/shaders/hard-light-bloom-gamma.shader
share/fs-uae/shaders/hard-light-bloom.shader
share/fs-uae/shaders/hard-light.shader
share/fs-uae/shaders/heavybloom.shader
share/fs-uae/shaders/horizontal-blur.shader
share/fs-uae/shaders/hq2x.shader
share/fs-uae/shaders/lanczos-6tap.shader
share/fs-uae/shaders/scale2x.shader
share/fs-uae/shaders/scale4xhq.shader
share/fs-uae/shaders/scanline-3x.shader
share/fs-uae/shaders/scanline-4x.shader
share/fs-uae/shaders/scanlines-classic.shader
share/fs-uae/shaders/scanlines-nonlinear-blur.shader
share/fs-uae/shaders/scanlines-nonlinear.shader
share/fs-uae/shaders/screenlines-nonlinear-blur-hsl-thick.shader
share/fs-uae/shaders/screenlines-nonlinear-blur-hsl.shader
share/fs-uae/shaders/screenlines-nonlinear-blur-thick.shader
share/fs-uae/shaders/screenlines-nonlinear-blur.shader
share/fs-uae/shaders/screenlines-nonlinear.shader
share/fs-uae/shaders/simplebloom.shader
share/fs-uae/shaders/test-gamma-screenlines.shader
share/fs-uae/shaders/test-gamma.shader
share/fs-uae/shaders/test.shader
share/fs-uae/shaders/testbloom-2.shader
share/fs-uae/shaders/testbloom.shader
share/fs-uae/share-dir
share/fs-uae/sidebar.png
share/fs-uae/sidebar_edge.png
share/fs-uae/stretch.png
share/fs-uae/theme.conf
share/fs-uae/title_font.png
share/fs-uae/top_item_background.png
share/fs-uae/ubuntu_12_04/heading_strip.png
share/fs-uae/ubuntu_12_04/item_background.png
share/fs-uae/ubuntu_12_04/sidebar.png
share/fs-uae/ubuntu_12_04/sidebar_edge.png
share/fs-uae/ubuntu_12_04/theme.conf
share/fs-uae/ubuntu_12_04/top_item_background.png
share/fs-uae/volume.png
share/fs-uae/volume_muted.png
share/icons/hicolor/128x128/apps/fs-uae.png
share/icons/hicolor/16x16/apps/fs-uae.png
share/icons/hicolor/256x256/apps/fs-uae.png
share/icons/hicolor/32x32/apps/fs-uae.png
share/icons/hicolor/48x48/apps/fs-uae.png
share/icons/hicolor/64x64/apps/fs-uae.png
share/locale/cs/LC_MESSAGES/fs-uae.mo
share/locale/da/LC_MESSAGES/fs-uae.mo
share/locale/de/LC_MESSAGES/fs-uae.mo
share/locale/el/LC_MESSAGES/fs-uae.mo
share/locale/es/LC_MESSAGES/fs-uae.mo
share/locale/fi/LC_MESSAGES/fs-uae.mo
share/locale/fr/LC_MESSAGES/fs-uae.mo
share/locale/it/LC_MESSAGES/fs-uae.mo
share/locale/nb/LC_MESSAGES/fs-uae.mo
share/locale/pl/LC_MESSAGES/fs-uae.mo
share/locale/pt/LC_MESSAGES/fs-uae.mo
share/locale/pt_BR/LC_MESSAGES/fs-uae.mo
share/locale/sr/LC_MESSAGES/fs-uae.mo
share/locale/sv/LC_MESSAGES/fs-uae.mo
share/locale/tr/LC_MESSAGES/fs-uae.mo
share/mime/packages/fs-uae.xml

10
emulators/fs-uae/distinfo Normal file
View File

@@ -0,0 +1,10 @@
$NetBSD: distinfo,v 1.2 2015/11/07 13:30:21 adam Exp $
SHA1 (fs-uae-2.6.2.tar.gz) = d997924b12bd4e4b95a860da8a13bf59b806c42a
RMD160 (fs-uae-2.6.2.tar.gz) = 4d4af938177eb589e21c99bf91de5f265959206c
SHA512 (fs-uae-2.6.2.tar.gz) = 94ead53f0e15cf3917c3b914fa4e611d5b38e9be8d149bff442c564140ce2d3b43f0447e82bb243c9443cd52491825955b4e3decb12b61e7ca91fd426bd5290a
Size (fs-uae-2.6.2.tar.gz) = 4573533 bytes
SHA1 (patch-configure) = c0db0d05dae3918d624f3af86b386f63db2ff200
SHA1 (patch-libfsemu_src_emu_audio__openal.c) = ef59599314071eb07ead34e2b78b4b66414195db
SHA1 (patch-manymouse_x11__xinput2.c) = 9b2891d1ce62affb694ac11b2386115799ed6fa9
SHA1 (patch-src_od-fs_bsdsocket__posix.cpp) = 78ecdd2efe903fdebfb0e144a4fc775296b73048

View File

@@ -0,0 +1,24 @@
$NetBSD: patch-configure,v 1.1 2015/11/07 13:30:21 adam Exp $
Fix OpenAL support on Darwin.
--- configure.orig 2015-11-07 13:22:13.000000000 +0000
+++ configure
@@ -7122,7 +7122,7 @@ fi
$as_echo "$as_me: Using OpenAL.framework" >&6;}
# OPENAL_CFLAGS="-I/System/Library/Frameworks/OpenAL.framework/Headers"
# OPENAL_CFLAGS="-I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk/System/Library/Frameworks/OpenAL.framework/Headers"
- OPENAL_CFLAGS="-I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenAL.framework/Headers"
+ OPENAL_CFLAGS="-framework OpenAL"
OPENAL_LIBS="-framework OpenAL"
;; #(
@@ -7148,7 +7148,7 @@ $as_echo "no" >&6; }
$as_echo "$as_me: Using OpenAL.framework" >&6;}
# OPENAL_CFLAGS="-I/System/Library/Frameworks/OpenAL.framework/Headers"
# OPENAL_CFLAGS="-I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk/System/Library/Frameworks/OpenAL.framework/Headers"
- OPENAL_CFLAGS="-I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/OpenAL.framework/Headers"
+ OPENAL_CFLAGS="-framework OpenAL"
OPENAL_LIBS="-framework OpenAL"
;; #(

View File

@@ -0,0 +1,22 @@
$NetBSD: patch-libfsemu_src_emu_audio__openal.c,v 1.1 2015/11/07 13:30:21 adam Exp $
Fix OpenAL support on Darwin.
--- libfsemu/src/emu/audio_openal.c.orig 2015-11-07 13:27:07.000000000 +0000
+++ libfsemu/src/emu/audio_openal.c
@@ -14,11 +14,15 @@
#ifdef HAVE_AL_AL_H
#include <AL/al.h>
+#elif defined(__APPLE__)
+#include <OpenAL/al.h>
#else
#include <al.h>
#endif
#ifdef HAVE_AL_ALC_H
#include <AL/alc.h>
+#elif defined(__APPLE__)
+#include <OpenAL/alc.h>
#else
#include <alc.h>
#endif

View File

@@ -0,0 +1,14 @@
$NetBSD: patch-manymouse_x11__xinput2.c,v 1.1 2015/11/04 21:24:14 adam Exp $
Include proper header file.
--- manymouse/x11_xinput2.c.orig 2014-09-23 10:39:54.000000000 +0000
+++ manymouse/x11_xinput2.c
@@ -25,6 +25,7 @@
#include <stdlib.h>
#include <string.h>
#include <dlfcn.h>
+#include <sys/select.h>
#include <X11/extensions/XInput2.h>
/* 32 is good enough for now. */

View File

@@ -0,0 +1,15 @@
$NetBSD: patch-src_od-fs_bsdsocket__posix.cpp,v 1.1 2015/11/04 21:24:14 adam Exp $
u_int8_t * won't automagically become const char *.
--- src/od-fs/bsdsocket_posix.cpp.orig 2014-09-23 10:39:54.000000000 +0000
+++ src/od-fs/bsdsocket_posix.cpp
@@ -928,7 +928,7 @@ static void *bsdlib_threadfunc (void *ar
break;
case 7: {
- struct hostent *tmphostent = gethostbyaddr (get_real_address (sb->name), sb->a_addrlen, sb->flags);
+ struct hostent *tmphostent = gethostbyaddr ((const char *)get_real_address (sb->name), sb->a_addrlen, sb->flags);
if (tmphostent) {
copyHostent (tmphostent, sb);

View File

@@ -1,6 +1,7 @@
# $NetBSD: Makefile,v 1.27 2014/01/01 11:52:14 wiz Exp $
# $NetBSD: Makefile,v 1.1 2016/01/17 20:46:54 wiz Exp $
DISTNAME= fuse-utils-1.1.1
PKGNAME= ${DISTNAME:S/fuse/fuse-emulator/}
PKGREVISION= 1
CATEGORIES= emulators
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=fuse-emulator/}

View File

@@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.8 2013/08/31 22:27:02 adam Exp $
@comment $NetBSD: PLIST,v 1.1 2016/01/17 20:46:54 wiz Exp $
bin/audio2tape
bin/createhdf
bin/fmfconv

View File

@@ -1,6 +1,7 @@
$NetBSD: distinfo,v 1.11 2013/08/31 22:27:02 adam Exp $
$NetBSD: distinfo,v 1.1 2016/01/17 20:46:54 wiz Exp $
SHA1 (fuse-utils-1.1.1.tar.gz) = 373132e76f2788c344dd0e1f9a9b898e823fdff1
RMD160 (fuse-utils-1.1.1.tar.gz) = 4fb73c52efe95256c9266c36a7cee06550a49f26
SHA512 (fuse-utils-1.1.1.tar.gz) = 67a9cc6af97f213a43b5e557dfe800f823e914faae99d7c5b2ddfc52656ab89bac737df644b9aa32ac009bdc0740d2064ccc6de2643ecba9141787245f9657f9
Size (fuse-utils-1.1.1.tar.gz) = 505766 bytes
SHA1 (patch-configure) = bfcc95f0a558f0d10037c9ac125021171f641b67

View File

@@ -1,4 +1,4 @@
$NetBSD: patch-configure,v 1.1 2011/12/19 15:03:18 wiz Exp $
$NetBSD: patch-configure,v 1.1 2016/01/17 20:46:54 wiz Exp $
Fix build with audiofile-0.3+.

View File

@@ -1,7 +1,8 @@
# $NetBSD: Makefile,v 1.62 2015/06/12 10:50:03 wiz Exp $
# $NetBSD: Makefile,v 1.3 2016/08/03 10:22:43 adam Exp $
DISTNAME= fuse-1.1.1
PKGREVISION= 7
PKGNAME= ${DISTNAME:S/fuse/fuse-emulator/}
PKGREVISION= 9
CATEGORIES= emulators
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=fuse-emulator/}

View File

@@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.11 2013/06/14 20:53:04 wiz Exp $
@comment $NetBSD: PLIST,v 1.1 2016/01/17 14:27:38 wiz Exp $
bin/fuse
man/man1/fuse.1
share/fuse/128-0.rom

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.17 2013/06/14 20:53:04 wiz Exp $
$NetBSD: distinfo,v 1.1 2016/01/17 14:27:38 wiz Exp $
SHA1 (fuse-1.1.1.tar.gz) = 92dc42bf9e8d26c42858059d59d522255041ab5d
RMD160 (fuse-1.1.1.tar.gz) = 5bb00bf401050101fe2da3ec9a7f9ccc3069e82c
SHA512 (fuse-1.1.1.tar.gz) = 67d12c56057a13121d8a5c073002dd2168268894669bdb50f3aba977cb1f53afa48774bfcb438a627a5afdbd2288248d4449e57d744e17b9e3eba00970685a14
Size (fuse-1.1.1.tar.gz) = 1881332 bytes
SHA1 (patch-aa) = 68d610ec43b220400e7781ae84327926c9d5c498
SHA1 (patch-ac) = 356002f998673f4a5ac2a78285e3bd7b1139be64

View File

@@ -1,4 +1,4 @@
# $NetBSD: options.mk,v 1.1 2007/03/24 15:51:41 adam Exp $
# $NetBSD: options.mk,v 1.1 2016/01/17 14:27:38 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.fuse
PKG_SUPPORTED_OPTIONS= sdl gtk

View File

@@ -1,4 +1,4 @@
$NetBSD: patch-aa,v 1.3 2008/01/24 18:32:37 adam Exp $
$NetBSD: patch-aa,v 1.1 2016/01/17 14:27:38 wiz Exp $
--- sound/osssound.c.orig 2007-12-21 17:43:10.000000000 +0100
+++ sound/osssound.c

View File

@@ -1,4 +1,4 @@
$NetBSD: patch-ac,v 1.3 2010/12/20 20:53:47 adam Exp $
$NetBSD: patch-ac,v 1.1 2016/01/17 14:27:38 wiz Exp $
--- ui/gtk/gtkui.c.orig 2010-12-20 20:17:04.000000000 +0000
+++ ui/gtk/gtkui.c

View File

@@ -1,4 +1,4 @@
$NetBSD: patch-ad,v 1.2 2013/06/14 20:53:04 wiz Exp $
$NetBSD: patch-ad,v 1.1 2016/01/17 14:27:38 wiz Exp $
--- ui/gtk/Makefile.in.orig 2013-05-24 20:56:08.000000000 +0000
+++ ui/gtk/Makefile.in

View File

@@ -1,4 +1,4 @@
$NetBSD: patch-configure,v 1.1 2013/06/14 20:53:04 wiz Exp $
$NetBSD: patch-configure,v 1.1 2016/01/17 14:27:38 wiz Exp $
Fix unportable test(1) construct.

View File

@@ -1,4 +1,4 @@
$NetBSD: patch-screenshot.c,v 1.2 2013/06/14 20:53:04 wiz Exp $
$NetBSD: patch-screenshot.c,v 1.1 2016/01/17 14:27:38 wiz Exp $
Include Zlib header.

View File

@@ -1,9 +1,9 @@
# $NetBSD: Makefile,v 1.26 2015/04/25 14:20:45 tnn Exp $
# $NetBSD: Makefile,v 1.27 2016/03/05 11:28:28 jperkin Exp $
#
DISTNAME= gambatte_src-0.4.1
PKGNAME= ${DISTNAME:S/_src//}
PKGREVISION= 21
PKGREVISION= 22
CATEGORIES= emulators
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gambatte/}

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.5 2014/12/10 23:23:36 joerg Exp $
$NetBSD: distinfo,v 1.6 2015/11/03 20:30:57 agc Exp $
SHA1 (gambatte_src-0.4.1.tar.gz) = 1374720b9cad35b2dace20822bf9b4b2ea0d2059
RMD160 (gambatte_src-0.4.1.tar.gz) = 2b09971498c8f474c71c5e53cbaf444df84b28f8
SHA512 (gambatte_src-0.4.1.tar.gz) = 53502f9143b10679a8a5c1b37e16de53cd1a57cc874de5c7ca934913fd957f32705da12b9fbfbab7e04e93923e5adfcd33a1e697a7f8eecb8fba864072cb4564
Size (gambatte_src-0.4.1.tar.gz) = 263391 bytes
SHA1 (patch-aa) = 96fd6b152afa1ec603864068b747ac50ec830b7d
SHA1 (patch-ab) = c9d7cf6ca8bfa98c0d970a60ecfc34812756447e

View File

@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.22 2015/04/25 14:20:45 tnn Exp $
# $NetBSD: Makefile,v 1.23 2016/03/09 22:10:13 tnn Exp $
#
DISTNAME= gcube-0.4-src
@@ -17,6 +17,7 @@ WRKSRC= ${WRKDIR}/0.4
LDFLAGS.DragonFly= -lm
LDFLAGS.SunOS+= -lm
LDFLAGS.Linux+= -lm
.include "../../mk/bsd.prefs.mk"

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.7 2013/10/20 18:10:41 joerg Exp $
$NetBSD: distinfo,v 1.8 2015/11/03 20:30:57 agc Exp $
SHA1 (gcube-0.4-src.tar.bz2) = dae967f8aedfc2115c3720dfe2c523128fddc8b6
RMD160 (gcube-0.4-src.tar.bz2) = 9a7c13ed611da22705f960686eea225e30b61dc6
SHA512 (gcube-0.4-src.tar.bz2) = f73665386d547322f20ed5e358f4f394b07d74fd90bddbfe1158a7a5d896bff36dabc9833f2d820a7af7673b8c8af62490f7fa07b06a2bbca4df6356a1e3c91a
Size (gcube-0.4-src.tar.bz2) = 803503 bytes
SHA1 (patch-aa) = 40bcf9a8306ddfe63cd28c294856c0df0edfb916
SHA1 (patch-ab) = 8907f650214bec5cdbf032464a1be39cccea5d81

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.4 2012/12/20 21:59:21 joerg Exp $
$NetBSD: distinfo,v 1.5 2015/11/03 20:30:57 agc Exp $
SHA1 (generator-0.35-cbiere-r4.tar.bz2) = 09d61950f128497af339d46ffc6c224eafe78206
RMD160 (generator-0.35-cbiere-r4.tar.bz2) = 27d8fd2fb741bbbbd13956845c939ec4a0798b04
SHA512 (generator-0.35-cbiere-r4.tar.bz2) = 73fd36d8004135c172025b3eb3385f731e294935413d7ac905672f1a88434ca332325821c5f15d5ae83fb1385fcde9f1e7f32242f8ac175bb96bd535b5d91620
Size (generator-0.35-cbiere-r4.tar.bz2) = 435289 bytes
SHA1 (patch-main_event.c) = c9abbf1f80772844ba08701f6fe1adc07af139ae
SHA1 (patch-main_vdp.c) = f905128b025d793f5a26c94ae80533211aef2105

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.10 2012/12/20 21:59:20 joerg Exp $
$NetBSD: distinfo,v 1.11 2015/11/03 20:30:57 agc Exp $
SHA1 (generator-0.35.tar.gz) = a61138579efd97028d3a69c54c3c6fcd0a3d74ab
RMD160 (generator-0.35.tar.gz) = 6b448018b8ed0fd9755ddb850f48892304d12e78
SHA512 (generator-0.35.tar.gz) = 0aa30a8c71a1eb5e2c5bbf01a39794818bbcedb572a6989c84b6f3cc5f69eb316425928a1e514412c11142951cdec75be3f3d6845b94490776c417407ada44bf
Size (generator-0.35.tar.gz) = 469541 bytes
SHA1 (patch-aa) = 5b971a07345bbd8e3d86284127829df5f4f5a541
SHA1 (patch-ab) = 487620ee83fc17119ad6b8ab3e9a19a1401a5c02

View File

@@ -1,9 +1,9 @@
# $NetBSD: Makefile,v 1.38 2015/04/25 14:20:45 tnn Exp $
# $NetBSD: Makefile,v 1.39 2016/08/03 10:22:43 adam Exp $
#
DISTNAME= gens-rc3
PKGNAME= gens-2.12rc3
PKGREVISION= 30
PKGREVISION= 31
CATEGORIES= emulators
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gens/}

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.7 2006/07/29 20:40:09 dillo Exp $
$NetBSD: distinfo,v 1.8 2015/11/03 20:30:58 agc Exp $
SHA1 (gens-rc3.tar.gz) = 6057564665007686c9ea8df364be3220499f9917
RMD160 (gens-rc3.tar.gz) = d2a36a5bdca8948b12624cba15dab0c5b527a688
SHA512 (gens-rc3.tar.gz) = af960c8af019549457f707ba484fb712f951513cca22b6ec970ce4ebdba0c51c17daa8b4521e5b1265ca007ddb5771d97b4e4d9749162d3967450cfce2185b11
Size (gens-rc3.tar.gz) = 658729 bytes
SHA1 (patch-aa) = e6a4768963e9da1799b80e775f0637eb07b2ca5c
SHA1 (patch-ab) = dd38b7ebcbadc0a3881397916c2444d4a2ac2e35

View File

@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.8 2014/05/09 07:37:04 wiz Exp $
# $NetBSD: Makefile,v 1.10 2016/07/09 13:03:46 wiz Exp $
DISTNAME= GNS3-0.8.3.1-src
PKGNAME= gns3-0.8.3.1
@@ -14,7 +14,7 @@ LICENSE= gnu-gpl-v2
DEPENDS+= dynamips>=0.2.8rc1:../../emulators/dynamips
PYTHON_VERSIONS_INCOMPATIBLE= 33 34 # not yet ported as of 0.8.3.1
PYTHON_VERSIONS_INCOMPATIBLE= 34 35 # not yet ported as of 0.8.3.1
EGG_NAME= ${DISTNAME:S/-src//}
REPLACE_PYTHON+= src/GNS3/Dynagen/dynagen.py src/GNS3/Dynagen/confConsole.py
REPLACE_PYTHON+= src/GNS3/Dynagen/console.py src/GNS3/Dynagen/dynamips_lib.py

View File

@@ -1,5 +1,6 @@
$NetBSD: distinfo,v 1.2 2013/03/01 21:29:14 markd Exp $
$NetBSD: distinfo,v 1.3 2015/11/03 20:30:58 agc Exp $
SHA1 (GNS3-0.8.3.1-src.tar.bz2) = 1918901dd0b06a96a71825cbba66ad067716c1d4
RMD160 (GNS3-0.8.3.1-src.tar.bz2) = c0d92c44767314c6f8438e3f89e5d606aa867d82
SHA512 (GNS3-0.8.3.1-src.tar.bz2) = 124a9369c074870016e58b7b8bbbe46a7c399912f85f506344b4d9ef36b5b62e640d2a9b6938945aa3ed214c1598e88cd9c05ea4d4301668f04e4696d9d4fe49
Size (GNS3-0.8.3.1-src.tar.bz2) = 2611269 bytes

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.4 2015/01/03 11:21:07 nat Exp $
$NetBSD: distinfo,v 1.5 2015/11/03 20:30:58 agc Exp $
SHA1 (gnuboy-1.0.3.tar.gz) = 4c371445b6599c6636d08ba9c5de7bb9fbf78437
RMD160 (gnuboy-1.0.3.tar.gz) = dfaf927fe2d4e03f39d83079b7dd3aa02c8983b9
SHA512 (gnuboy-1.0.3.tar.gz) = 89e8075dac5ec17b375a5739367b46c55130211fb487a052be1cca49a5d86cc1a7f1619b2b2473d744fbe3c51fdb1a11110b15836cc9cc9de588932b91d258e6
Size (gnuboy-1.0.3.tar.gz) = 187627 bytes
SHA1 (patch-aa) = c72c7de796e01e3a9d123b2bd7464d7397cc6cd5
SHA1 (patch-configure) = 63b9ee2fe6e13f06354a3ef95bb3dedc41221990

View File

@@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.5 2013/10/28 23:45:28 joerg Exp $
$NetBSD: distinfo,v 1.6 2015/11/03 20:30:58 agc Exp $
SHA1 (gnuboy-1.0.3.tar.gz) = 4c371445b6599c6636d08ba9c5de7bb9fbf78437
RMD160 (gnuboy-1.0.3.tar.gz) = dfaf927fe2d4e03f39d83079b7dd3aa02c8983b9
SHA512 (gnuboy-1.0.3.tar.gz) = 89e8075dac5ec17b375a5739367b46c55130211fb487a052be1cca49a5d86cc1a7f1619b2b2473d744fbe3c51fdb1a11110b15836cc9cc9de588932b91d258e6
Size (gnuboy-1.0.3.tar.gz) = 187627 bytes
SHA1 (patch-aa) = d99a316e40d1249685204f23e66e3709cefc03e3
SHA1 (patch-ab) = e3fe25086d105864f4d127c84bfe3f3234820927

Some files were not shown because too many files have changed in this diff Show More