De-Lint recipes.

*	less
	Remove "." from SUMMARY.
	Minor cosmetics.

*	lftp
	Remove "." from SUMMARY.
	Moved _devel block up.
	Minor cosmetics.

*	libaacs
	Moved _devel block up.
	Minor cosmetics.

*	libarchive
	Remove "." from SUMMARY.
	Moved _devel block up.
	Minor cosmetics.

*	libavlduptree
	Shortened SUMMARY.
	Moved _devel block up.
	Minor cosmetics.

*	libbdplus
	Remove "." from SUMMARY.
	Moved _devel block up.
	Minor cosmetics.

*	libdwarf
	Shortened SUMMARY.
	Moved _devel block up.
	Minor cosmetics.

*	libebml
	Changed SUMMARY.
	Moved _devel block up.
	Minor cosmetics.

*	libffi
	Remove "." from SUMMARY.
	Moved _devel block up.
	Minor cosmetics.

*	libgcrypt
	Remove "." from SUMMARY.
	Moved _devel block up.
	Minor cosmetics.

*	libgeotiff
	Remove "." from SUMMARY.
	Moved _devel block up.
	Minor cosmetics.

*	libid3tag
	Improved DESCRIPTION.
	Moved _devel block up.
	Minor cosmetics.

*	libidn
	Remove "." from SUMMARY.
	Moved _devel block up.
	Minor cosmetics.

*	liblo
	Moved _devel block up.
	Minor cosmetics.

*	libmatroska
	Remove "." from SUMMARY.
	Moved _devel block up.
	Minor cosmetics.

*	libmdi
	Remove "." and improved SUMMARY.
	Sorted _devel blocks.
	Minor cosmetics.

*	libmetalink
	Remove "." from SUMMARY.
	Moved _devel block up.
	Minor cosmetics.

*	libmicro
	Improved SUMMARY.
	Added cmd:hg to BUILD_PREREQUIRES.

*	libmng
	Remove "." from SUMMARY.
	Moved _devel block up.
	Minor cosmetics.

*	libmmp4v2
	Improved SUMMARY and DESCRIPTION.
	Moved _devel block up.
	Minor cosmetics.

*	libpurple
	Remove "." from SUMMARY.
	Moved _devel and _finch block up.
	Minor cosmetics.

*	libquicktime
	Improved SUMMARY and DESCRIPTION.
	Moved _devel block up.
	Minor cosmetics.

*	libsdl
	Improved SUMMARY and DESCRIPTION.
	Moved _devel block up.
	Minor cosmetics.

*	libsoundtouch
	Improved DESCRIPTION.
	Moved _devel block up.
	Minor cosmetics.

*	libtar
	Remove "." from SUMMARY.
	Moved _devel block up.
	Minor cosmetics.

*	libtommath
	Remove "." from SUMMARY.
	Minor cosmetics.
This commit is contained in:
Humdinger
2015-07-21 06:22:45 +02:00
parent 605cb5f83c
commit b733ccc20f
31 changed files with 526 additions and 650 deletions

View File

@@ -1,20 +1,18 @@
SUMMARY="A set of C subroutines that is useful for indexing a set of key/value \
pairs"
DESCRIPTION="
AVLDupTree is a set of C subroutines (not C++, so you can use it in drivers) \
that is useful for indexing a set of key/value pairs, using the key to find \
a matching value. The standard AVL balanced binary tree algorithm is \
enhanced to support multiple values for the same key. It is designed for \
future use in a file system to support fast attribute indexing and queries, \
but you can use it for other things. This package also includes the \
AGMSAVLTest GUI App. It tests the operations on the tree, provided by \
libavlduptree.
"
LICENSE="GNU LGPL v2.1"
COPYRIGHT="2001 Alexander G. M. Smith"
SUMMARY="A set of C subroutines for indexing sets of key/value pairs"
DESCRIPTION="AVLDupTree is a set of C subroutines (not C++, so you can use it \
in drivers) that is useful for indexing a set of key/value pairs, using the \
key to find a matching value.
The standard AVL balanced binary tree algorithm is enhanced to support \
multiple values for the same key. It is designed for future use in a file \
system to support fast attribute indexing and queries, but you can use it for \
other things. This package also includes the AGMSAVLTest GUI App. It tests \
the operations on the tree, provided by libavlduptree."
HOMEPAGE="https://github.com/HaikuArchives/AVLDupTree"
SOURCE_URI="git+https://github.com/HaikuArchives/AVLDupTree.git#5969ca7e26e65857a9ade8ed6abee2fda7f1e9d9"
LICENSE="GNU LGPL v2.1"
COPYRIGHT="2001 Alexander G. M. Smith"
REVISION="1"
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
SECONDARY_ARCHITECTURES="x86_gcc2 ?x86"
@@ -22,19 +20,26 @@ PROVIDES="
libavlduptree$secondaryArchSuffix = $portVersion
lib:libavlduptree$secondaryArchSuffix = 1.0.0 compat >= 1
"
REQUIRES="
haiku$secondaryArchSuffix
cmd:make
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
"
BUILD_PREREQUIRES="
PROVIDES_devel="
libavlduptree${secondaryArchSuffix}_devel = $portVersion
devel:libavlduptree$secondaryArchSuffix = 1.0.0 compat >= 1
"
REQUIRES_devel="
libavlduptree${secondaryArchSuffix} == $portVersion base
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
cmd:make
"
BUILD_PREREQUIRES="
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
cmd:make
cmd:mkdir
"
@@ -54,14 +59,3 @@ INSTALL()
# devel package
packageEntries devel $developDir
}
# ----- devel package -------------------------------------------------------
PROVIDES_devel="
libavlduptree${secondaryArchSuffix}_devel = $portVersion
devel:libavlduptree$secondaryArchSuffix = 1.0.0 compat >= 1
"
REQUIRES_devel="
libavlduptree${secondaryArchSuffix} == $portVersion base
"