mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-19 18:20:07 +02:00
Fix ordering
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
SUMMARY="Code generator for Haiku"
|
||||
DESCRIPTION="
|
||||
Hugen is a simply python script for generating code for Haiku \
|
||||
applications. It is based on templates. You can define your own \
|
||||
@@ -5,7 +6,6 @@ one and quick generate some files with adequate names and content \
|
||||
instead creating it manually. Templates for class and simple \
|
||||
application with Makefile and Jamfile are provided by default.
|
||||
"
|
||||
SUMMARY="Code generator for Haiku"
|
||||
HOMEPAGE="https://github.com/aldeck/hugen"
|
||||
COPYRIGHT="2009 Alexandre Deckner"
|
||||
LICENSE="MIT"
|
||||
|
||||
@@ -9,6 +9,7 @@ REVISION="2"
|
||||
SOURCE_URI="http://www.msweet.org/files/project3/mxml-$portVersion.tar.gz"
|
||||
CHECKSUM_SHA256="b0d347da1a0d5a8c9e82f66087d55cfe499728dacae563740d7e733648c69795"
|
||||
PATCHES="mxml-$portVersion.patch"
|
||||
|
||||
ARCHITECTURES="x86_gcc2"
|
||||
SECONDARY_ARCHITECTURES=""
|
||||
|
||||
@@ -16,17 +17,15 @@ PROVIDES="
|
||||
mxml$secondaryArchSuffix = $portVersion
|
||||
lib:mxml$secondaryArchSuffix = 1.4 compat >= 1
|
||||
"
|
||||
|
||||
PROVIDES_devel="
|
||||
mxml${secondaryArchSuffix}_devel = $portVersion
|
||||
devel:mxml$secondaryArchSuffix = 1.4 compat >= 1
|
||||
"
|
||||
|
||||
REQUIRES="
|
||||
haiku$secondaryArchSuffix
|
||||
lib:libz$secondaryArchSuffix
|
||||
"
|
||||
|
||||
PROVIDES_devel="
|
||||
mxml${secondaryArchSuffix}_devel = $portVersion
|
||||
devel:mxml$secondaryArchSuffix = 1.4 compat >= 1
|
||||
"
|
||||
REQUIRES_devel="
|
||||
mxml$secondaryArchSuffix == $portVersion base
|
||||
"
|
||||
@@ -34,7 +33,6 @@ REQUIRES_devel="
|
||||
BUILD_REQUIRES="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
"
|
||||
|
||||
BUILD_PREREQUIRES="
|
||||
cmd:libtoolize
|
||||
cmd:make
|
||||
|
||||
@@ -2,22 +2,20 @@ SUMMARY="A YAML parser and emitter in C++"
|
||||
DESCRIPTION="yaml-cpp is a YAML parser and emitter in C++ matching the YAML \
|
||||
1.2 spec."
|
||||
HOMEPAGE="https://github.com/sparsehash/sparsehash/"
|
||||
COPYRIGHT="2008 Jesse Beder"
|
||||
LICENSE="BSD (2-clause)"
|
||||
REVISION="1"
|
||||
SOURCE_URI="https://github.com/sparsehash/sparsehash/archive/sparsehash-$portVersion.tar.gz"
|
||||
CHECKSUM_SHA256="05e986a5c7327796dad742182b2d10805a8d4f511ad090da0490f146c1ff7a8c"
|
||||
SOURCE_DIR="sparsehash-sparsehash-$portVersion"
|
||||
REVISION="1"
|
||||
LICENSE="BSD (2-clause)"
|
||||
COPYRIGHT="2008 Jesse Beder"
|
||||
PATCHES="sparsehash-$portVersion.patchset"
|
||||
|
||||
ARCHITECTURES="!x86_gcc2 x86 x86_64"
|
||||
SECONDARY_ARCHITECTURES="!x86_gcc2 x86"
|
||||
|
||||
PATCHES="sparsehash-$portVersion.patchset"
|
||||
|
||||
PROVIDES="
|
||||
sparsehash$secondaryArchSuffix = $portVersion compat >= 2
|
||||
"
|
||||
|
||||
REQUIRES="
|
||||
haiku$secondaryArchSuffix
|
||||
"
|
||||
@@ -25,7 +23,6 @@ REQUIRES="
|
||||
BUILD_REQUIRES="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
"
|
||||
|
||||
BUILD_PREREQUIRES="
|
||||
cmd:aclocal
|
||||
cmd:autoconf
|
||||
|
||||
@@ -2,12 +2,12 @@ SUMMARY="A YAML parser and emitter in C++"
|
||||
DESCRIPTION="yaml-cpp is a YAML parser and emitter in C++ matching the YAML \
|
||||
1.2 spec."
|
||||
HOMEPAGE="http://github.com/jbeder/yaml-cpp/"
|
||||
COPYRIGHT="2008 Jesse Beder"
|
||||
LICENSE="MIT"
|
||||
REVISION="1"
|
||||
SOURCE_URI="http://yaml-cpp.googlecode.com/files/yaml-cpp-$portVersion.tar.gz"
|
||||
CHECKSUM_SHA256="3e7c9052b43d987d41819a203d97fc45de4eed3ec67e0fdb14265c3d11046f06"
|
||||
SOURCE_DIR="yaml-cpp-$portVersion"
|
||||
REVISION="1"
|
||||
LICENSE="MIT"
|
||||
COPYRIGHT="2008 Jesse Beder"
|
||||
|
||||
ARCHITECTURES="!x86_gcc2 x86 x86_64"
|
||||
SECONDARY_ARCHITECTURES="x86"
|
||||
@@ -16,16 +16,23 @@ PROVIDES="
|
||||
yaml_cpp$secondaryArchSuffix = $portVersion compat >= 0.5
|
||||
lib:libyaml_cpp$secondaryArchSuffix = $portVersion compat >= 0.5
|
||||
"
|
||||
|
||||
REQUIRES="
|
||||
haiku$secondaryArchSuffix
|
||||
"
|
||||
|
||||
PROVIDES_devel="
|
||||
yaml_cpp${secondaryArchSuffix}_devel = $portVersion compat >= 0.5
|
||||
devel:libyaml_cpp$secondaryArchSuffix = 0.5.1 compat >= 0.5
|
||||
"
|
||||
REQUIRES_devel="
|
||||
yaml_cpp$secondaryArchSuffix == $portVersion
|
||||
boost${secondaryArchSuffix}_devel
|
||||
"
|
||||
|
||||
BUILD_REQUIRES="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
boost${secondaryArchSuffix}_devel
|
||||
"
|
||||
|
||||
BUILD_PREREQUIRES="
|
||||
cmd:cmake
|
||||
cmd:make
|
||||
@@ -57,13 +64,3 @@ INSTALL()
|
||||
packageEntries devel \
|
||||
$developDir
|
||||
}
|
||||
|
||||
PROVIDES_devel="
|
||||
yaml_cpp${secondaryArchSuffix}_devel = $portVersion compat >= 0.5
|
||||
devel:libyaml_cpp$secondaryArchSuffix = 0.5.1 compat >= 0.5
|
||||
"
|
||||
|
||||
REQUIRES_devel="
|
||||
yaml_cpp$secondaryArchSuffix == $portVersion
|
||||
boost${secondaryArchSuffix}_devel
|
||||
"
|
||||
|
||||
Reference in New Issue
Block a user