mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-19 02:00:06 +02:00
70 lines
1.4 KiB
Bash
70 lines
1.4 KiB
Bash
SUMMARY="An emulator for the Amstrad PCW"
|
|
DESCRIPTION="JOYCE includes ANNE, which emulates the PCW16. Additional it can \
|
|
emulate:
|
|
|
|
- The Z80 CPU, using Ian Collier's Z80 core from xz80.
|
|
- The screen.
|
|
- The keyboard.
|
|
- The floppy disc controller - enough of it to support the Amstrad BIOS. \
|
|
Floppies are emulated with disc image files.
|
|
- The Centronics ports.
|
|
- The CPS8256 serial interface.
|
|
- The PCW8256 dot-matrix printer.
|
|
- The PCW9512 daisywheel printer.
|
|
- AMX or Kempston mice.
|
|
- The beeper."
|
|
HOMEPAGE="http://www.seasip.info/Unix/Joyce/index.html"
|
|
COPYRIGHT="2002-2012 John Elliott"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
SOURCE_URI="http://www.seasip.info/Unix/Joyce/joyce-2.2.6.tar.gz"
|
|
CHECKSUM_SHA256="d92089dc3e583e88973ef6708dc35e649500949086da0a03f973efe3f62c3d8f"
|
|
PATCHES="joyce-2.2.6.patchset"
|
|
|
|
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
|
|
|
|
PROVIDES="
|
|
joyce = $portVersion
|
|
cmd:xjoyce = $portVersion
|
|
cmd:xanne = $portVersion
|
|
devel:lib765
|
|
devel:libcpmredir
|
|
devel:liblink
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libsdl
|
|
lib:libpng
|
|
lib:libxml2
|
|
lib:libz
|
|
lib:libgl
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
devel:libsdl
|
|
devel:libpng
|
|
devel:libxml2
|
|
devel:libz
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:make
|
|
cmd:gcc
|
|
cmd:awk
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
runConfigure ./configure
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
|
|
# These are already provided in the libdsk package.
|
|
rm $binDir/apriboot $binDir/dsk* $binDir/md3serial $libDir/libdsk*
|
|
prepareInstalledDevelLibs lib765 libcpmredir liblink
|
|
}
|