This file was deleted.

This file was deleted.

@@ -12,7 +12,7 @@ way, called evim or Easy Vim."
HOMEPAGE="https://www.vim.org/"
COPYRIGHT="1991-2019 Bram Moleenar et al."
LICENSE="Vim"
REVISION="1"
REVISION="2"
SOURCE_URI="https://github.com/vim/vim/archive/v$portVersion.tar.gz"
CHECKSUM_SHA256="3bfb6b0de36e96862933e49df93412a46a0914356ec16dd60a5ccbd5cdc46d25"
SOURCE_FILENAME="vim-$portVersion.tar.gz"
@@ -41,7 +41,7 @@ REQUIRES="
haiku
lib:libiconv
lib:libintl
lib:libncurses
lib:libncurses >= 6
"

if [ $effectiveTargetArchitecture != "x86_gcc2" ] ; then
@@ -55,7 +55,7 @@ BUILD_REQUIRES="
devel:libiconv
devel:libintl
# devel:liblua
devel:libncurses
devel:libncurses >= 6
devel:libtclstub8.5
"

@@ -7,13 +7,13 @@ Some graphical tools are also provided, with a focus on debugging, analyzing, \
reverse engineering and experimentations."
HOMEPAGE="https://github.com/cpcsdk/cpctools"
COPYRIGHT="2005 Thierry Jouin
2008-2015 Romain Giot, Adrien Destugues, Quentin Carlier, Mauricio Muñoz Lucero"
2008-2019 Romain Giot, Adrien Destugues, Quentin Carlier, Mauricio Muñoz Lucero and other contributors"
LICENSE="MIT
GNU GPL v2"
REVISION="6"
SOURCE_URI="https://github.com/cpcsdk/cpctools/archive/ac9ebe65c7eb49bc1175050d4a6d912bbf5856f5.tar.gz"
CHECKSUM_SHA256="a4bb951fb5866e2db4a87a4104187bb5265f3de089f3ed500b132d6cd0dd9942"
SOURCE_DIR="cpctools-ac9ebe65c7eb49bc1175050d4a6d912bbf5856f5"
REVISION="1"
SOURCE_URI="https://github.com/cpcsdk/cpctools/archive/$portVersion.tar.gz"
CHECKSUM_SHA256="e36b873e092dbe31a6a9a53423acc525c56680bf030372d992adf9741d59398f"
SOURCE_DIR="cpctools-$portVersion"

ARCHITECTURES="x86_gcc2"

@@ -26,9 +26,6 @@ PROVIDES="
cmd:damsConverter
cmd:dataDBGenerator
cmd:dataLinker
cmd:hideur
cmd:png2crtc
cmd:raw2crtc
lib:libcpc
"
REQUIRES="
@@ -57,22 +54,13 @@ BUILD()
cmake ../cpctools $cmakeDirArgs
make $jobArgs
popd

pushd gfx2crtc
make $jobArgs
popd

pushd hideur_maikeur
make $jobArgs
popd
}

INSTALL()
{
pushd cpctools.build
make install
popd
cp gfx2crtc/{png2crtc,raw2crtc} hideur_maikeur/hideur $binDir

rm -rf $prefix/docs
}
@@ -0,0 +1,46 @@
SUMMARY="Convert PNG or raw files to Amstrad CPC screen format"
DESCRIPTION="convert gfx (linear raw 8bits per pixel or PNG 1,2 or 4 bits) in a
compatible format for Amstrad CPC and Plus. Various CRTC registers can be
adjusted for exact control of the results."
HOMEPAGE="https://github.com/cpcsdk/gfx2crtc"
COPYRIGHT="2008-2017 Quentin Carlier, Adrien Destugues"
LICENSE="GNU GPL v2"
REVISION="1"
SOURCE_URI="https://github.com/cpcsdk/gfx2crtc/archive/$portVersion.tar.gz"
CHECKSUM_SHA256="5c0a5a385b61ccfeabcb5e29f5297c8916469f25a0bd49d3f090e738e58a11bc"
SOURCE_DIR="gfx2crtc-$portVersion"

ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"

PROVIDES="
gfx2crtc = $portVersion
cmd:png2crtc = $portVersion
cmd:raw2crtc = $portVersion
"
REQUIRES="
haiku
lib:libpng16
lib:libz
"

BUILD_REQUIRES="
haiku_devel
devel:libpng16
devel:libz
"
BUILD_PREREQUIRES="
makefile_engine
cmd:make
cmd:gcc
"

BUILD()
{
make $jobArgs OBJ_DIR=objects
}

INSTALL()
{
mkdir -p $binDir
cp -a raw2crtc png2crtc $binDir
}