code style.

This commit is contained in:
Jerome Duval
2018-08-06 15:04:59 +02:00
parent 9a6fd9b28c
commit dedc2c6324
143 changed files with 306 additions and 312 deletions

View File

@@ -27,6 +27,7 @@ REQUIRES="
haiku
cmd:ocaml
"
BUILD_PREREQUIRES="
haiku_devel
cmd:make

View File

@@ -8,9 +8,9 @@ REVISION="1"
SOURCE_URI="http://sourceforge.net/projects/freepascal/files/Haiku/$portVersion/fpc-$portVersion.i386-haiku.tar"
CHECKSUM_SHA256="4c6461a1c989667d08cd31f033d9a5e30b3a3fd58ab064c6adefafb23f4c0582"
SOURCE_DIR="fpc-$portVersion.i386-haiku"
DISABLE_SOURCE_PACKAGE="YES"
ARCHITECTURES="x86_gcc2 x86"
DISABLE_SOURCE_PACKAGE="YES"
PROVIDES="
fpc_bin = $portVersion

View File

@@ -8,9 +8,9 @@ REVISION="1"
SOURCE_URI="http://sourceforge.net/projects/freepascal/files/Haiku/3.0.0/fpc-3.0.0.i386-haiku.tar"
CHECKSUM_SHA256="a81bf8ca23472bf04a7934c3c881c5c26d1a3a801c36360a9a667d1625d8d1f2"
SOURCE_DIR="fpc-3.0.0.i386-haiku"
DISABLE_SOURCE_PACKAGE="YES"
ARCHITECTURES="x86_gcc2 x86"
DISABLE_SOURCE_PACKAGE="YES"
PROVIDES="
fpc_bin = $portVersion

View File

@@ -16,9 +16,13 @@ REVISION="1"
SOURCE_URI="https://sourceforge.net/projects/freepascal/files/Haiku/$portVersion/fpc-$portVersion.i386-haiku.tar"
CHECKSUM_SHA256="f3e1cdd1e5f354d7436313f07ec5fbee91f7b02df01433b30902609b3bb3d2ea"
SOURCE_DIR="fpc-$portVersion.i386-haiku"
DISABLE_SOURCE_PACKAGE="YES"
ARCHITECTURES="x86_gcc2"
DISABLE_SOURCE_PACKAGE="YES"
POST_INSTALL_SCRIPTS="
boot/post-install/createcfg.sh
"
PROVIDES="
fpc_bin = $portVersion
@@ -109,7 +113,3 @@ INSTALL()
" >$postInstallDir/createcfg.sh
chmod 755 $postInstallDir/createcfg.sh
}
POST_INSTALL_SCRIPTS="
boot/post-install/createcfg.sh
"

View File

@@ -37,6 +37,7 @@ REQUIRES_devel="
CONFLICTS_devel="
lua${secondaryArchSuffix}_devel
"
BUILD_PREREQUIRES="
haiku${secondaryArchSuffix}_devel
cmd:make

View File

@@ -31,6 +31,7 @@ PROVIDES_devel="
REQUIRES_devel="
squirrel$secondaryArchSuffix == $portVersion base
"
BUILD_PREREQUIRES="
haiku${secondaryArchSuffix}_devel
cmd:make

View File

@@ -45,6 +45,7 @@ PROVIDES_devel="
"
REQUIRES_devel="
"
BUILD_PREREQUIRES="
haiku${secondaryArchSuffix}_devel
cmd:gcc$secondaryArchSuffix

View File

@@ -27,7 +27,6 @@ REQUIRES="
BUILD_REQUIRES="
haiku_devel >= r1~alpha4_pm_hrev49976
"
BUILD_PREREQUIRES="
cmd:bison
cmd:flex

View File

@@ -1,7 +1,16 @@
SUMMARY="The Yasm modular assembler"
DESCRIPTION="
Yasm is a complete rewrite of the NASM assembler under the “new” BSD License \
(some portions are under other licenses, see COPYING for details).
Yasm currently supports the x86 and AMD64 instruction sets, accepts NASM and \
GAS assembler syntaxes, outputs binary, ELF32, ELF64, 32 and 64-bit Mach-O, \
RDOFF2, COFF, Win32, and Win64 object formats, and generates source debugging \
information in STABS, DWARF 2, and CodeView 8 formats.
Yasm can be easily integrated into Visual Studio 2005/2008 and 2010 for \
assembly of NASM or GAS syntax code into Win32 or Win64 object files.
"
HOMEPAGE="http://www.tortall.net/projects/yasm/"
SOURCE_URI="http://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz"
CHECKSUM_SHA256="3dce6601b495f5b3d45b59f7d2492a340ee7e84b5beca17e48f862502bd5603f"
COPYRIGHT="2001-2014 Peter Johnson and other Yasm developers."
LICENSE="
Artistic
BSD (2-clause)
@@ -9,8 +18,10 @@ LICENSE="
GNU GPL v2
GNU LGPL v2
"
COPYRIGHT="2001-2014 Peter Johnson and other Yasm developers."
REVISION="5"
SOURCE_URI="http://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz"
CHECKSUM_SHA256="3dce6601b495f5b3d45b59f7d2492a340ee7e84b5beca17e48f862502bd5603f"
ARCHITECTURES="x86_gcc2 x86 x86_64"
PROVIDES="
@@ -23,6 +34,7 @@ PROVIDES="
REQUIRES="
haiku
"
BUILD_REQUIRES="
"
BUILD_PREREQUIRES="
@@ -33,7 +45,6 @@ BUILD_PREREQUIRES="
cmd:make
"
defineDebugInfoPackage yasm \
$binDir/vsyasm \
$binDir/yasm \
@@ -59,14 +70,3 @@ TEST()
{
make check
}
DESCRIPTION="
Yasm is a complete rewrite of the NASM assembler under the “new” BSD License \
(some portions are under other licenses, see COPYING for details).
Yasm currently supports the x86 and AMD64 instruction sets, accepts NASM and \
GAS assembler syntaxes, outputs binary, ELF32, ELF64, 32 and 64-bit Mach-O, \
RDOFF2, COFF, Win32, and Win64 object formats, and generates source debugging \
information in STABS, DWARF 2, and CodeView 8 formats.
Yasm can be easily integrated into Visual Studio 2005/2008 and 2010 for \
assembly of NASM or GAS syntax code into Win32 or Win64 object files.
"