Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

9
emulators/hatari/DESCR Normal file
View File

@@ -0,0 +1,9 @@
Hatari is an Atari ST emulator for systems supported by the SDL library.
Hatari is based on two main sources:
- The WinSTon sourcecode written by Paul Bates
(http://www.sourceforge.net/projects/winston/)
- The UAE's CPU core (http://www.freiburg.linux.de/~uae/)
You need a copy of an Atari ST TOS ROM to use this program. Then run
the program as follows: hatari --tos tos.image

42
emulators/hatari/Makefile Normal file
View File

@@ -0,0 +1,42 @@
# $NetBSD: Makefile,v 1.36 2013/02/16 11:21:05 wiz Exp $
DISTNAME= hatari-${HATARI_VER}
HATARI_VER= 1.6.2
PKGREVISION= 1
CATEGORIES= emulators
MASTER_SITES= http://download.tuxfamily.org/hatari/${HATARI_VER}/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://hatari.tuxfamily.org/
COMMENT= Atari ST emulator
LICENSE= gnu-gpl-v2
USE_CMAKE= yes
USE_LANGUAGES= c
REPLACE_PYTHON+= python-ui/config.py
REPLACE_PYTHON+= python-ui/debugui.py
REPLACE_PYTHON+= python-ui/dialogs.py
REPLACE_PYTHON+= python-ui/hatari.py
REPLACE_PYTHON+= python-ui/hatariui.py
REPLACE_PYTHON+= python-ui/uihelpers.py
SUBST_CLASSES+= fix-python
SUBST_STAGE.fix-python= pre-configure
SUBST_MESSAGE.fix-python= Fixing python
SUBST_FILES.fix-python+= tools/hconsole/example.py
SUBST_FILES.fix-python+= tools/hconsole/hconsole.py
SUBST_FILES.fix-python+= python-ui/gentypes.py
SUBST_SED.fix-python+= -e 's,/usr/bin/env python,${PYTHONBIN},'
INSTALLATION_DIRS+= share/doc/hatari
.include "../../audio/portaudio/buildlink3.mk"
.include "../../devel/SDL/buildlink3.mk"
.include "../../devel/zlib/buildlink3.mk"
.include "../../graphics/png/buildlink3.mk"
.include "../../lang/python/application.mk"
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
.include "../../mk/bsd.pkg.mk"

56
emulators/hatari/PLIST Normal file
View File

@@ -0,0 +1,56 @@
@comment $NetBSD: PLIST,v 1.14 2012/02/21 11:20:47 ryoon Exp $
bin/atari-hd-image
bin/hatari
bin/hatariui
bin/hmsa
bin/zip2st
man/man1/atari-hd-image.1
man/man1/hatari.1
man/man1/hatariui.1
man/man1/hconsole.1
man/man1/hmsa.1
man/man1/zip2st.1
share/applications/hatariui.desktop
share/doc/hatari/authors.txt
share/doc/hatari/compatibility.html
share/doc/hatari/emutos.txt
share/doc/hatari/images/devices.png
share/doc/hatari/images/fileselector.png
share/doc/hatari/images/floppydisks.png
share/doc/hatari/images/harddisks.png
share/doc/hatari/images/joystick.png
share/doc/hatari/images/keyboard.png
share/doc/hatari/images/main.png
share/doc/hatari/images/memory.png
share/doc/hatari/images/monitor.png
share/doc/hatari/images/newfloppy.png
share/doc/hatari/images/screen.png
share/doc/hatari/images/sound.png
share/doc/hatari/images/system.png
share/doc/hatari/images/tos.png
share/doc/hatari/keymap-sample.txt
share/doc/hatari/manual.html
share/doc/hatari/memory-usage.txt
share/doc/hatari/midi-linux.txt
share/doc/hatari/release-notes.txt
share/doc/hatari/todo.txt
share/hatari/hatari-icon.bmp
share/hatari/hatariui/README
share/hatari/hatariui/TODO
share/hatari/hatariui/config.py
share/hatari/hatariui/conftypes.py
share/hatari/hatariui/debugui.py
share/hatari/hatariui/dialogs.py
share/hatari/hatariui/hatari-icon.png
share/hatari/hatariui/hatari.png
share/hatari/hatariui/hatari.py
share/hatari/hatariui/hatariui.py
share/hatari/hatariui/release-notes.txt
share/hatari/hatariui/uihelpers.py
share/hatari/hconsole/example-commands
share/hatari/hconsole/example-debugger
share/hatari/hconsole/example.py
share/hatari/hconsole/hconsole.py
share/hatari/hconsole/release-notes.txt
share/hatari/tos.img
share/icons/hicolor/32x32/apps/hatari-icon.png

View File

@@ -0,0 +1,7 @@
$NetBSD: distinfo,v 1.16 2012/08/12 11:06:25 ryoon Exp $
SHA1 (hatari-1.6.2.tar.bz2) = fce28eb59d7b1574537bfdba757fddc31534bb17
RMD160 (hatari-1.6.2.tar.bz2) = eccd5c63cc0aebb4606ce43c58826ccee897b016
Size (hatari-1.6.2.tar.bz2) = 1739570 bytes
SHA1 (patch-aa) = 1ebe2f92ee176cf5d5b1e4a7c5e2143b1d766ea8
SHA1 (patch-ab) = fc2b8a9cbaff50e845e6c716cab893facf2c527d

View File

@@ -0,0 +1,19 @@
$NetBSD: patch-aa,v 1.2 2004/11/19 10:09:48 adam Exp $
--- src/includes/unzip.h.orig 2003-03-30 14:39:27.000000000 +0100
+++ src/includes/unzip.h
@@ -49,6 +49,14 @@
#ifndef _unz_H
#define _unz_H
+#ifndef OF /* function prototypes */
+# ifdef STDC
+# define OF(args) args
+# else
+# define OF(args) ()
+# endif
+#endif
+
#ifdef __cplusplus
extern "C" {
#endif

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-ab,v 1.3 2010/08/27 08:24:27 adam Exp $
--- CMakeLists.txt.orig 2010-07-22 18:25:40.000000000 +0000
+++ CMakeLists.txt
@@ -177,7 +177,7 @@ if(NOT BIN2DATADIR)
endif()
if(NOT MANDIR)
- set(MANDIR share/man/man1)
+ set(MANDIR man/man1)
endif()
if(NOT DOCDIR)