libdsk: bump version, add libVersion(Compat) and defineDebugInfoPackage (#3039)

This commit is contained in:
Schrijvers Luc
2018-09-13 12:59:44 +02:00
committed by Jérôme Duval
parent 4345bd32d7
commit 39bd420a63
2 changed files with 126 additions and 94 deletions

View File

@@ -1,94 +0,0 @@
SUMMARY="A library for manipulating disk image files"
DESCRIPTION="LIBDSK is a library for accessing discs and disc image files. \
It is intended for use in:
* Emulator tools - converting between real floppy discs and disc images, as \
CPCTRANS / PCWTRANS do under DOS.
* Filesystem utilities - CPMTOOLS is configurable to use LIBDSK, thus allowing \
the use of CPMTOOLS on emulator .DSK images. To do this, install LIBDSK and \
then build CPMTOOLS, using \"./configure --with-libdsk\". For CPMTOOLS 1.9 or \
2.0, you will also need to apply this patch.
* Emulators - it is possible to use LIBDSK as part of an emulator's floppy \
controller emulation, thus giving the emulator transparent access to .DSK \
files or real discs.
"
HOMEPAGE="http://www.seasip.info/Unix/LibDsk/"
COPYRIGHT="2010-2015 John Elliott"
LICENSE="GNU GPL v2"
REVISION="3"
SOURCE_URI="http://www.seasip.info/Unix/LibDsk/libdsk-$portVersion.tar.gz"
CHECKSUM_SHA256="e1c56f6395a011d508a5e548dcbcadce8ee8cb95740f986d6e8e3695ed59de82"
ARCHITECTURES="x86 x86_gcc2"
SECONDARY_ARCHITECTURES="x86 x86_gcc2"
PROVIDES="
libdsk$secondaryArchSuffix = $portVersion
lib:libdsk$secondaryArchSuffix = 4.3.0 compat >= 4
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libz$secondaryArchSuffix
"
if [ -z "$secondaryArchSuffix" ]; then
PROVIDES_tools="
libdsk_tools = $portVersion
cmd:apriboot
cmd:dskconv
cmd:dskdump
cmd:dskform
cmd:dskid
cmd:dskscan
cmd:dsktrans
cmd:dskutil
cmd:md3serial
"
REQUIRES_tools="
haiku
lib:libdsk
"
fi
PROVIDES_devel="
devel:libdsk$secondaryArchSuffix = $portVersion
"
REQUIRES_devel="
libdsk$secondaryArchSuffix == $portVersion base
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
"
BUILD_PREREQUIRES="
cmd:aclocal
cmd:autoconf
cmd:gcc$secondaryArchSuffix
cmd:libtoolize
cmd:make
"
BUILD()
{
# aclocal
# libtoolize --install --copy --force
# autoconf
runConfigure ./configure
make $jobArgs
}
INSTALL()
{
make install
# remove command for secondary architecture
if [ -n "$secondaryArchSuffix" ]; then
rm -rf $binDir
fi
prepareInstalledDevelLib libdsk
packageEntries devel $developDir
if [ -z "$secondaryArchSuffix" ]; then
packageEntries tools $binDir
fi
}

View File

@@ -0,0 +1,126 @@
SUMMARY="A library for manipulating disk image files"
DESCRIPTION="LIBDSK is a library for accessing discs and disc image files. \
It is intended for use in:
* Emulator tools - converting between real floppy discs and disc images, as \
CPCTRANS / PCWTRANS do under DOS.
* Filesystem utilities - CPMTOOLS is configurable to use LIBDSK, thus allowing \
the use of CPMTOOLS on emulator .DSK images. To do this, install LIBDSK and \
then build CPMTOOLS, using \"./configure --with-libdsk\". For CPMTOOLS 1.9 or \
2.0, you will also need to apply this patch.
* Emulators - it is possible to use LIBDSK as part of an emulator's floppy \
controller emulation, thus giving the emulator transparent access to .DSK \
files or real discs."
HOMEPAGE="http://www.seasip.info/Unix/LibDsk/"
COPYRIGHT="2010-2018 John Elliott"
LICENSE="GNU GPL v2"
REVISION="1"
SOURCE_URI="http://www.seasip.info/Unix/LibDsk/libdsk-$portVersion.tar.gz"
CHECKSUM_SHA256="0d3b4dbe1986682bd38fa3cb50aa6f37190f8adac32e0b9f88644df9ccbcbeb9"
ARCHITECTURES="x86_gcc2 x86 x86_64"
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
libVersion="4.3.1"
libVersionCompat="$libVersion compat >= ${libVersion%%.*}"
PROVIDES="
libdsk$secondaryArchSuffix = $portVersion
lib:libdsk$secondaryArchSuffix = $libVersionCompat
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libbz2$secondaryArchSuffix
lib:libz$secondaryArchSuffix
"
PROVIDES_devel="
libdsk${secondaryArchSuffix}_devel = $portVersion
devel:libdsk$secondaryArchSuffix = $libVersionCompat
"
REQUIRES_devel="
libdsk$secondaryArchSuffix == $portVersion base
"
if [ -z "$secondaryArchSuffix" ]; then
PROVIDES_tools="
libdsk_tools = $portVersion
cmd:apriboot = $portVersion
cmd:dskconv = $portVersion
cmd:dskdump = $portVersion
cmd:dskform = $portVersion
cmd:dskid = $portVersion
cmd:dskscan = $portVersion
cmd:dsktrans = $portVersion
cmd:dskutil = $portVersion
cmd:md3serial = $portVersion
"
REQUIRES_tools="
libdsk == $portVersion base
haiku
lib:libbz2
lib:libdsk
lib:libz
"
fi
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libbz2$secondaryArchSuffix
devel:libz$secondaryArchSuffix
"
BUILD_PREREQUIRES="
cmd:awk
cmd:gcc$secondaryArchSuffix
cmd:libtoolize$secondaryArchSuffix
cmd:make
"
defineDebugInfoPackage libdsk$secondaryArchSuffix \
"$libDir"/libdsk.so.$libVersion
BUILD()
{
runConfigure ./configure
make $jobArgs
}
INSTALL()
{
make install
# remove command for secondary architecture
if [ -n "$secondaryArchSuffix" ]; then
rm -rf "$binDir"
fi
rm -f "$libDir"/libdsk.la
prepareInstalledDevelLib libdsk
mkdir -p "$developLibDir"/pkgconfig
cat > "$developLibDir"/pkgconfig/libdsk.pc << EOF
prefix=${prefix}
exec_prefix=${prefix}
libdir=${libDir}
includedir=${includeDir}
Name: libdsk
Description: Library for accessing discs and disc image files
Version: $portVersion
Libs: -L${developLibDir} -ldsk
Cflags: -I${includeDir}
EOF
packageEntries devel \
"$developDir"
if [ -z "$secondaryArchSuffix" ]; then
packageEntries tools \
"$binDir"
fi
}
TEST()
{
make check
}