mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-23 04:00:05 +02:00
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:
@@ -1,12 +1,12 @@
|
||||
SUMMARY="libdwarf and dwarfdump - library and utility for working with DWARF Debugging Information Format"
|
||||
DESCRIPTION="
|
||||
DWARF is a widely used, standardized debugging data format. DWARF was \
|
||||
originally designed along with Executable and Linkable Format (ELF), although \
|
||||
it is independent of object file formats. The name is a medieval fantasy \
|
||||
complement to ELF that has no official meaning, although the backronym \
|
||||
'Debugging With Attributed Record Formats' was later proposed.
|
||||
The DWARF Debugging Information Format is of interest to programmers working on \
|
||||
compilers and debuggers (and anyone interested in reading or writing DWARF \
|
||||
SUMMARY="libdwarf and dwarfdump for working with DWARF"
|
||||
DESCRIPTION="DWARF is a widely used, standardized debugging data format. \
|
||||
DWARF was originally designed along with Executable and Linkable Format (ELF),\
|
||||
although it is independent of object file formats. The name is a medieval \
|
||||
fantasy complement to ELF that has no official meaning, although the \
|
||||
backronym 'Debugging With Attributed Record Formats' was later proposed.
|
||||
|
||||
The DWARF Debugging Information Format is of interest to programmers working \
|
||||
on compilers and debuggers (and anyone interested in reading or writing DWARF \
|
||||
information). DWARF uses a data structure called a Debugging Information Entry \
|
||||
(DIE) to represent each variable, type, procedure, etc. It was developed by a \
|
||||
committee (known as the PLSIG at the time) starting around 1991. Starting \
|
||||
@@ -16,13 +16,14 @@ have been shipped (as an executable and archive respectively, not source) with \
|
||||
every release of the SGI MIPS/IRIX C compiler. In 1994 (I think the correct \
|
||||
year) SGI agreed to open-source libdwarf (and in 1999 to open-source dwarfdump) \
|
||||
so anyone could use them.
|
||||
|
||||
libdwarf allows reading, creation and manipulation of dwarf data. dwarfdump \
|
||||
(written in C) and dwarfdump2 (written in C++) do the same job, they let you \
|
||||
dump out, in readable form, the DWARF2, DWARF3, or DWARF4 data from an object \
|
||||
file, but dwarfdump2 does a better job in some respects.
|
||||
|
||||
This package includes dwarfdump2 and libdwarf, although the source package has \
|
||||
been patched to make dwarfdump and dwarfgen haiku compatible as well.
|
||||
"
|
||||
been patched to make dwarfdump and dwarfgen Haiku compatible as well."
|
||||
HOMEPAGE="http://www.prevanders.net/dwarf.html"
|
||||
SOURCE_URI="http://www.prevanders.net/libdwarf-20130729.tar.gz"
|
||||
CHECKSUM_SHA256="b6455d8616baf2883e2af91f006d6cbd583128fdfff46e3d1fae460bc223bb7b"
|
||||
@@ -45,17 +46,21 @@ PROVIDES="
|
||||
lib:libdwarf$secondaryArchSuffix = $portVersion
|
||||
cmd:dwarfdump = $portVersion
|
||||
"
|
||||
|
||||
REQUIRES="
|
||||
haiku$secondaryArchSuffix
|
||||
lib:libelf$secondaryArchSuffix
|
||||
"
|
||||
|
||||
PROVIDES_devel="
|
||||
libdwarf${secondaryArchSuffix}_devel = $portVersion
|
||||
devel:libdwarf$secondaryArchSuffix = $portVersion
|
||||
"
|
||||
REQUIRES_devel="
|
||||
lib:libdwarf$secondaryArchSuffix == $portVersion base
|
||||
"
|
||||
BUILD_REQUIRES="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
devel:libelf$secondaryArchSuffix
|
||||
"
|
||||
|
||||
BUILD_PREREQUIRES="
|
||||
cmd:gcc$secondaryArchSuffix
|
||||
cmd:ld$secondaryArchSuffix
|
||||
@@ -80,12 +85,3 @@ INSTALL()
|
||||
make install mandir=$manDir
|
||||
packageEntries devel $developDir
|
||||
}
|
||||
|
||||
PROVIDES_devel="
|
||||
libdwarf${secondaryArchSuffix}_devel = $portVersion
|
||||
devel:libdwarf$secondaryArchSuffix = $portVersion
|
||||
"
|
||||
|
||||
REQUIRES_devel="
|
||||
lib:libdwarf$secondaryArchSuffix == $portVersion base
|
||||
"
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
SUMMARY="libebml is a C++ library to parse EBML content (read/write)."
|
||||
SUMMARY="A C++ library to parse EBML content (read/write)"
|
||||
DESCRIPTION="libebml is a C++ library to parse EBML content (read/write)."
|
||||
HOMEPAGE="http://www.matroska.org/"
|
||||
SOURCE_URI="http://dl.matroska.org/downloads/libebml/libebml-1.3.1.tar.bz2"
|
||||
CHECKSUM_SHA256="195894b31aaca55657c9bc157d744f23b0c25597606b97cfa5a9039c4b684295"
|
||||
PATCHES="libebml-$portVersion.patchset"
|
||||
REVISION="2"
|
||||
LICENSE="GNU LGPL v2.1"
|
||||
COPYRIGHT="2005-2013 CoreCodec, Inc."
|
||||
@@ -10,7 +11,6 @@ COPYRIGHT="2005-2013 CoreCodec, Inc."
|
||||
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
||||
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
||||
|
||||
|
||||
PROVIDES="
|
||||
libebml$secondaryArchSuffix = $portVersion
|
||||
lib:libebml$secondaryArchSuffix = 4.0.0 compat >= 4
|
||||
@@ -20,19 +20,23 @@ REQUIRES="
|
||||
lib:libstdc++${secondaryArchSuffix}
|
||||
"
|
||||
|
||||
PATCHES="
|
||||
libebml-$portVersion.patchset
|
||||
"
|
||||
if [ $effectiveTargetArchitecture != x86_gcc2 ]; then
|
||||
REQUIRES+="
|
||||
lib:libgcc_s${secondaryArchSuffix}
|
||||
"
|
||||
fi
|
||||
|
||||
PROVIDES_devel="
|
||||
libebml${secondaryArchSuffix}_devel = $portVersion
|
||||
devel:libebml$secondaryArchSuffix = 4.0.0 compat >= 4
|
||||
"
|
||||
REQUIRES_devel="
|
||||
libebml$secondaryArchSuffix == $portVersion base
|
||||
"
|
||||
BUILD_REQUIRES="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
"
|
||||
BUILD_PREREQUIRES="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
cmd:aclocal
|
||||
cmd:autoconf
|
||||
cmd:automake
|
||||
@@ -59,11 +63,3 @@ INSTALL()
|
||||
|
||||
packageEntries devel $developDir
|
||||
}
|
||||
|
||||
PROVIDES_devel="
|
||||
libebml${secondaryArchSuffix}_devel = $portVersion
|
||||
devel:libebml$secondaryArchSuffix = 4.0.0 compat >= 4
|
||||
"
|
||||
REQUIRES_devel="
|
||||
libebml$secondaryArchSuffix == $portVersion base
|
||||
"
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
SUMMARY="A portable, high level programming interface."
|
||||
DESCRIPTION="
|
||||
A portable, high level programming interface to various calling conventions.
|
||||
"
|
||||
SUMMARY="A portable, high level programming interface"
|
||||
DESCRIPTION="Libffi is a foreign function interface library which gives its \
|
||||
user a C programming language interface used to call natively compiled \
|
||||
functions. Libffi is typically used as a bridging technology between compiled \
|
||||
and interpreted language implementations. It can also be used to implement \
|
||||
plugins."
|
||||
HOMEPAGE="http://sourceware.org/libffi"
|
||||
LICENSE="MIT"
|
||||
REVISION="2"
|
||||
@@ -18,16 +20,20 @@ PROVIDES="
|
||||
libffi$secondaryArchSuffix = $portVersion compat >= 3
|
||||
lib:libffi$secondaryArchSuffix = 6.0.1 compat >= 6
|
||||
"
|
||||
|
||||
REQUIRES="
|
||||
haiku$secondaryArchSuffix
|
||||
"
|
||||
|
||||
BUILD_REQUIRES="
|
||||
PROVIDES_devel="
|
||||
libffi${secondaryArchSuffix}_devel = $portVersion
|
||||
devel:libffi$secondaryArchSuffix = 6.0.1 compat >= 6
|
||||
"
|
||||
|
||||
BUILD_PREREQUIRES="
|
||||
REQUIRES_devel="
|
||||
libffi$secondaryArchSuffix == $portVersion base
|
||||
"
|
||||
BUILD_REQUIRES="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
"
|
||||
BUILD_PREREQUIRES="
|
||||
cmd:gcc$secondaryArchSuffix
|
||||
cmd:make
|
||||
cmd:awk
|
||||
@@ -55,12 +61,3 @@ INSTALL()
|
||||
$developDir \
|
||||
$documentationDir
|
||||
}
|
||||
|
||||
PROVIDES_devel="
|
||||
libffi${secondaryArchSuffix}_devel = $portVersion
|
||||
devel:libffi$secondaryArchSuffix = 6.0.1 compat >= 6
|
||||
"
|
||||
|
||||
REQUIRES_devel="
|
||||
libffi$secondaryArchSuffix == $portVersion base
|
||||
"
|
||||
|
||||
@@ -1,10 +1,9 @@
|
||||
SUMMARY="A portable, high level programming interface"
|
||||
DESCRIPTION="
|
||||
Libffi is a foreign function interface library which gives its user a \
|
||||
C programming language interface used to call natively compiled functions. \
|
||||
Libffi is typically used as a bridging technology between compiled \
|
||||
and interpreted language implementations. It can also be used to \
|
||||
implement plugins."
|
||||
DESCRIPTION="Libffi is a foreign function interface library which gives its \
|
||||
user a C programming language interface used to call natively compiled \
|
||||
functions. Libffi is typically used as a bridging technology between compiled \
|
||||
and interpreted language implementations. It can also be used to implement \
|
||||
plugins."
|
||||
HOMEPAGE="http://sourceware.org/libffi"
|
||||
LICENSE="MIT"
|
||||
REVISION="2"
|
||||
@@ -24,10 +23,17 @@ PROVIDES="
|
||||
REQUIRES="
|
||||
haiku$secondaryArchSuffix
|
||||
"
|
||||
PROVIDES_devel="
|
||||
libffi${secondaryArchSuffix}_devel = $portVersion
|
||||
devel:libffi$secondaryArchSuffix = 6.0.4 compat >= 6
|
||||
"
|
||||
REQUIRES_devel="
|
||||
libffi$secondaryArchSuffix == $portVersion base
|
||||
"
|
||||
BUILD_REQUIRES="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
"
|
||||
BUILD_PREREQUIRES="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
cmd:gcc$secondaryArchSuffix
|
||||
cmd:make
|
||||
cmd:awk
|
||||
@@ -55,11 +61,3 @@ INSTALL()
|
||||
$developDir \
|
||||
$documentationDir
|
||||
}
|
||||
|
||||
PROVIDES_devel="
|
||||
libffi${secondaryArchSuffix}_devel = $portVersion
|
||||
devel:libffi$secondaryArchSuffix = 6.0.4 compat >= 6
|
||||
"
|
||||
REQUIRES_devel="
|
||||
libffi$secondaryArchSuffix == $portVersion base
|
||||
"
|
||||
|
||||
@@ -1,39 +1,46 @@
|
||||
SUMMARY="GNU's basic cryptographic library."
|
||||
DESCRIPTION="
|
||||
Libgcrypt is a general purpose crypto library based on the code \
|
||||
used in GnuPG.
|
||||
"
|
||||
LICENSE="GNU LGPL v3"
|
||||
COPYRIGHT="2000-2013 Free Software Foundation, Inc."
|
||||
SUMMARY="GNU's basic cryptographic library"
|
||||
DESCRIPTION="Libgcrypt is a general purpose crypto library based on the code \
|
||||
used in GnuPG."
|
||||
HOMEPAGE="http://directory.fsf.org/project/libgcrypt/"
|
||||
LICENSE="GNU LGPL v3"
|
||||
REVISION="2"
|
||||
|
||||
ARCHITECTURES="x86"
|
||||
|
||||
SOURCE_URI="ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-1.5.3.tar.bz2"
|
||||
CHECKSUM_SHA256="bcf5334e7da352c45de6aec5d2084ce9a1d30029ff4a4a5da13f1848874759d1"
|
||||
REVISION="2"
|
||||
ARCHITECTURES="x86"
|
||||
COPYRIGHT="2000-2013 Free Software Foundation, Inc."
|
||||
PATCHES="libgcrypt-1.5.3.patch"
|
||||
|
||||
PROVIDES="
|
||||
libgcrypt = $portVersion compat >= 1.5
|
||||
lib:libgcrypt = 11.8.2 compat >= 11
|
||||
"
|
||||
|
||||
REQUIRES="
|
||||
haiku
|
||||
lib:libgpg_error
|
||||
"
|
||||
|
||||
PROVIDES_devel="
|
||||
libgcrypt_devel = $portVersion compat >= 1.5
|
||||
devel:libgcrypt = 11.8.2 compat >= 11
|
||||
cmd:dumpsexp = $portVersion compat >= 1.5
|
||||
cmd:libgcrypt_config = $portVersion compat >= 1.5
|
||||
cmd:hmac256 = $portVersion compat >= 1.5
|
||||
"
|
||||
REQUIRES_devel="
|
||||
libgcrypt == $portVersion base
|
||||
libgpg_error_devel
|
||||
"
|
||||
BUILD_REQUIRES="
|
||||
haiku_devel
|
||||
devel:libgpg_error
|
||||
"
|
||||
|
||||
BUILD_PREREQUIRES="
|
||||
cmd:autoconf
|
||||
cmd:make
|
||||
cmd:gcc
|
||||
"
|
||||
|
||||
PATCHES="libgcrypt-1.5.3.patch"
|
||||
|
||||
BUILD()
|
||||
{
|
||||
autoconf
|
||||
@@ -50,16 +57,3 @@ INSTALL()
|
||||
packageEntries devel \
|
||||
$developDir $binDir
|
||||
}
|
||||
|
||||
PROVIDES_devel="
|
||||
libgcrypt_devel = $portVersion compat >= 1.5
|
||||
devel:libgcrypt = 11.8.2 compat >= 11
|
||||
cmd:dumpsexp = $portVersion compat >= 1.5
|
||||
cmd:libgcrypt_config = $portVersion compat >= 1.5
|
||||
cmd:hmac256 = $portVersion compat >= 1.5
|
||||
"
|
||||
|
||||
REQUIRES_devel="
|
||||
libgcrypt == $portVersion base
|
||||
libgpg_error_devel
|
||||
"
|
||||
|
||||
@@ -1,34 +1,44 @@
|
||||
SUMMARY="GNU's basic cryptographic library."
|
||||
DESCRIPTION="
|
||||
Libgcrypt is a general purpose crypto library based on the code \
|
||||
used in GnuPG.
|
||||
"
|
||||
LICENSE="GNU LGPL v3"
|
||||
COPYRIGHT="2000-2013 Free Software Foundation, Inc."
|
||||
SUMMARY="GNU's basic cryptographic library"
|
||||
DESCRIPTION="Libgcrypt is a general purpose crypto library based on the code \
|
||||
used in GnuPG."
|
||||
HOMEPAGE="http://directory.fsf.org/project/libgcrypt/"
|
||||
SOURCE_URI="ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-$portVersion.tar.bz2"
|
||||
CHECKSUM_SHA256="41b4917b93ae34c6a0e2127378d7a4d66d805a2a86a09911d4f9bd871db7025f"
|
||||
LICENSE="GNU LGPL v3"
|
||||
REVISION="1"
|
||||
|
||||
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
||||
SECONDARY_ARCHITECTURES="x86"
|
||||
|
||||
|
||||
SOURCE_URI="ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-$portVersion.tar.bz2"
|
||||
CHECKSUM_SHA256="41b4917b93ae34c6a0e2127378d7a4d66d805a2a86a09911d4f9bd871db7025f"
|
||||
COPYRIGHT="2000-2013 Free Software Foundation, Inc."
|
||||
PATCHES="libgcrypt-$portVersion.patchset"
|
||||
|
||||
PROVIDES="
|
||||
libgcrypt${secondaryArchSuffix} = $portVersion compat >= 1.6
|
||||
lib:libgcrypt${secondaryArchSuffix} = 20.0.3 compat >= 20
|
||||
"
|
||||
|
||||
REQUIRES="
|
||||
haiku${secondaryArchSuffix}
|
||||
lib:libgpg_error${secondaryArchSuffix}
|
||||
"
|
||||
|
||||
PROVIDES_devel="
|
||||
libgcrypt${secondaryArchSuffix}_devel = $portVersion compat >= 1.6
|
||||
devel:libgcrypt$secondaryArchSuffix = 20.0.3 compat >= 20
|
||||
cmd:dumpsexp$secondaryArchSuffix = $portVersion compat >= 1.6
|
||||
cmd:libgcrypt_config$secondaryArchSuffix = $portVersion compat >= 1.6
|
||||
cmd:hmac256$secondaryArchSuffix = $portVersion compat >= 1.6
|
||||
cmd:mpicalc$secondaryArchSuffix = $portVersion compat >= 1.6
|
||||
"
|
||||
REQUIRES_devel="
|
||||
libgcrypt${secondaryArchSuffix} == $portVersion base
|
||||
haiku${secondaryArchSuffix}
|
||||
libgpg_error${secondaryArchSuffix}
|
||||
"
|
||||
BUILD_REQUIRES="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
devel:libgpg_error${secondaryArchSuffix}
|
||||
"
|
||||
|
||||
BUILD_PREREQUIRES="
|
||||
cmd:autoconf
|
||||
cmd:make
|
||||
@@ -51,18 +61,3 @@ INSTALL()
|
||||
packageEntries devel \
|
||||
$developDir $binDir
|
||||
}
|
||||
|
||||
PROVIDES_devel="
|
||||
libgcrypt${secondaryArchSuffix}_devel = $portVersion compat >= 1.6
|
||||
devel:libgcrypt$secondaryArchSuffix = 20.0.3 compat >= 20
|
||||
cmd:dumpsexp$secondaryArchSuffix = $portVersion compat >= 1.6
|
||||
cmd:libgcrypt_config$secondaryArchSuffix = $portVersion compat >= 1.6
|
||||
cmd:hmac256$secondaryArchSuffix = $portVersion compat >= 1.6
|
||||
cmd:mpicalc$secondaryArchSuffix = $portVersion compat >= 1.6
|
||||
"
|
||||
|
||||
REQUIRES_devel="
|
||||
libgcrypt${secondaryArchSuffix} == $portVersion base
|
||||
haiku${secondaryArchSuffix}
|
||||
libgpg_error${secondaryArchSuffix}
|
||||
"
|
||||
|
||||
@@ -1,14 +1,10 @@
|
||||
SUMMARY="A library for IM communication."
|
||||
SUMMARY="A library for IM communication"
|
||||
DESCRIPTION="libpurple is a library for IM communication used by many open \
|
||||
source IM clients. It implements a variety of protocols, for example IRC, Jabber \
|
||||
or ICQ."
|
||||
source IM clients. It implements a variety of protocols, for example IRC, \
|
||||
Jabber or ICQ."
|
||||
HOMEPAGE="https://pidgin.im/"
|
||||
SOURCE_URI="http://downloads.sourceforge.net/project/pidgin/Pidgin/$portVersion/pidgin-$portVersion.tar.bz2"
|
||||
SOURCE_DIR="pidgin-$portVersion"
|
||||
CHECKSUM_SHA256="f2ae211341fc77efb9945d40e9932aa535cdf3a6c8993fe7919fca8cc1c04007"
|
||||
REVISION="1"
|
||||
LICENSE="GNU GPL v2"
|
||||
COPYRIGHT="1998-2015 Rob Flynn et al."
|
||||
REVISION="1"
|
||||
|
||||
ARCHITECTURES="x86 ?x86_64"
|
||||
if [ $effectiveTargetArchitecture != x86_gcc2 ]; then
|
||||
@@ -16,12 +12,16 @@ if [ $effectiveTargetArchitecture != x86_gcc2 ]; then
|
||||
fi
|
||||
SECONDARY_ARCHITECTURES="x86"
|
||||
|
||||
SOURCE_URI="http://downloads.sourceforge.net/project/pidgin/Pidgin/$portVersion/pidgin-$portVersion.tar.bz2"
|
||||
CHECKSUM_SHA256="f2ae211341fc77efb9945d40e9932aa535cdf3a6c8993fe7919fca8cc1c04007"
|
||||
COPYRIGHT="1998-2015 Rob Flynn et al."
|
||||
SOURCE_DIR="pidgin-$portVersion"
|
||||
|
||||
PROVIDES="
|
||||
libpurple$secondaryArchSuffix = $portVersion
|
||||
lib:libpurple$secondaryArchSuffix = $portVersion
|
||||
lib:libgnt$secondaryArchSuffix = $portVersion
|
||||
"
|
||||
|
||||
REQUIRES="
|
||||
haiku$secondaryArchSuffix
|
||||
lib:libglib_2.0$secondaryArchSuffix
|
||||
@@ -48,7 +48,34 @@ REQUIRES="
|
||||
lib:libpanelw$secondaryArchSuffix
|
||||
lib:libncursesw$secondaryArchSuffix
|
||||
"
|
||||
|
||||
PROVIDES_devel="
|
||||
libpurple${secondaryArchSuffix}_devel = $portVersion
|
||||
devel:libpurple$secondaryArchSuffix = $portVersion
|
||||
devel:libgnt$secondaryArchSuffix = $portVersion
|
||||
"
|
||||
REQUIRES_devel="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
libpurple$secondaryArchSuffix == $portVersion base
|
||||
"
|
||||
PROVIDES_finch="
|
||||
libpurple${secondaryArchPrefix}_finch = $portVersion
|
||||
cmd:finch$secondaryArchSuffix
|
||||
"
|
||||
REQUIRES_finch="
|
||||
haiku${secondaryArchSuffix}
|
||||
libpurple$secondaryArchSuffix == $portVersion base
|
||||
lib:libffi$secondaryArchSuffix
|
||||
lib:libglib_2.0$secondaryArchSuffix
|
||||
lib:libgmodule_2.0$secondaryArchSuffix
|
||||
lib:libgobject_2.0$secondaryArchSuffix
|
||||
lib:libgthread_2.0$secondaryArchSuffix
|
||||
lib:libiconv$secondaryArchSuffix
|
||||
lib:libidn$secondaryArchSuffix
|
||||
lib:libintl$secondaryArchSuffix
|
||||
lib:libncurses${secondaryArchSuffix}
|
||||
lib:libxml2$secondaryArchSuffix
|
||||
lib:libz$secondaryArchSuffix
|
||||
"
|
||||
BUILD_REQUIRES="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
glib2${secondaryArchSuffix}_devel
|
||||
@@ -120,37 +147,3 @@ INSTALL()
|
||||
prepareInstalledDevelLib libgnt
|
||||
packageEntries devel $developDir
|
||||
}
|
||||
|
||||
# ----- devel package ------------------------------------------------------
|
||||
|
||||
PROVIDES_devel="
|
||||
libpurple${secondaryArchSuffix}_devel = $portVersion
|
||||
devel:libpurple$secondaryArchSuffix = $portVersion
|
||||
devel:libgnt$secondaryArchSuffix = $portVersion
|
||||
"
|
||||
REQUIRES_devel="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
libpurple$secondaryArchSuffix == $portVersion base
|
||||
"
|
||||
|
||||
# ----- finch package ------------------------------------------------------
|
||||
|
||||
PROVIDES_finch="
|
||||
libpurple${secondaryArchPrefix}_finch = $portVersion
|
||||
cmd:finch$secondaryArchSuffix
|
||||
"
|
||||
REQUIRES_finch="
|
||||
haiku${secondaryArchSuffix}
|
||||
libpurple$secondaryArchSuffix == $portVersion base
|
||||
lib:libffi$secondaryArchSuffix
|
||||
lib:libglib_2.0$secondaryArchSuffix
|
||||
lib:libgmodule_2.0$secondaryArchSuffix
|
||||
lib:libgobject_2.0$secondaryArchSuffix
|
||||
lib:libgthread_2.0$secondaryArchSuffix
|
||||
lib:libiconv$secondaryArchSuffix
|
||||
lib:libidn$secondaryArchSuffix
|
||||
lib:libintl$secondaryArchSuffix
|
||||
lib:libncurses${secondaryArchSuffix}
|
||||
lib:libxml2$secondaryArchSuffix
|
||||
lib:libz$secondaryArchSuffix
|
||||
"
|
||||
|
||||
@@ -1,22 +1,27 @@
|
||||
SUMMARY="A C library for manipulating tar files."
|
||||
DESCRIPTION="
|
||||
libtar is a library for manipulating tar files from within C programs.
|
||||
Here are some of its features:
|
||||
SUMMARY="A C library for manipulating tar files"
|
||||
DESCRIPTION="libtar is a library for manipulating tar files from within C \
|
||||
programs. Here are some of its features:
|
||||
|
||||
* Handles both POSIX tar file format and the GNU extensions.
|
||||
* API provides functions for easy use, such as tar_extract_all().
|
||||
* Also provides functions for more granular use, such as \
|
||||
tar_append_regfile().
|
||||
"
|
||||
HOMEPAGE="http://repo.or.cz/w/libtar.git/"
|
||||
SOURCE_URI="http://repo.or.cz/w/libtar.git/snapshot/0907a9034eaf2a57e8e4a9439f793f3f05d446cd.tar.gz"
|
||||
SOURCE_FILENAME="$portVersionedName.tar.gz"
|
||||
CHECKSUM_SHA256="d1b2660d0af735fed2d2a0c3369dda7bea7445a4b1ef2f2742b352b1e1eec5f8"
|
||||
- Handles both POSIX tar file format and the GNU extensions.
|
||||
- API provides functions for easy use, such as tar_extract_all().
|
||||
- Also provides functions for more granular use, such as \
|
||||
tar_append_regfile()."
|
||||
HOMEPAGE="http://repo.or.cz/w/libtar.git/"
|
||||
LICENSE="BSD (3-clause)"
|
||||
REVISION="1"
|
||||
|
||||
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
||||
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
||||
|
||||
SOURCE_URI="http://repo.or.cz/w/libtar.git/snapshot/0907a9034eaf2a57e8e4a9439f793f3f05d446cd.tar.gz"
|
||||
SOURCE_FILENAME="$portVersionedName.tar.gz"
|
||||
CHECKSUM_SHA256="d1b2660d0af735fed2d2a0c3369dda7bea7445a4b1ef2f2742b352b1e1eec5f8"
|
||||
COPYRIGHT="
|
||||
1998-2003 University of Illinois Board of Trustees
|
||||
1998-2003 Mark D. Roth
|
||||
"
|
||||
SOURCE_DIR="$portName"
|
||||
|
||||
PROVIDES="
|
||||
libtar${secondaryArchSuffix} = $portVersion
|
||||
cmd:libtar
|
||||
@@ -25,6 +30,13 @@ PROVIDES="
|
||||
REQUIRES="
|
||||
haiku${secondaryArchSuffix}
|
||||
"
|
||||
PROVIDES_devel="
|
||||
libtar${secondaryArchSuffix}_devel = $portVersion
|
||||
devel:libtar$secondaryArchSuffix = 0.0.0
|
||||
"
|
||||
REQUIRES_devel="
|
||||
libtar$secondaryArchSuffix == $portVersion base
|
||||
"
|
||||
BUILD_REQUIRES="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
"
|
||||
@@ -40,8 +52,6 @@ BUILD_PREREQUIRES="
|
||||
cmd:autoheader
|
||||
"
|
||||
|
||||
SOURCE_DIR="$portName"
|
||||
|
||||
BUILD()
|
||||
{
|
||||
aclocal
|
||||
@@ -64,18 +74,3 @@ INSTALL()
|
||||
packageEntries devel \
|
||||
$developDir
|
||||
}
|
||||
|
||||
PROVIDES_devel="
|
||||
libtar${secondaryArchSuffix}_devel = $portVersion
|
||||
devel:libtar$secondaryArchSuffix = 0.0.0
|
||||
"
|
||||
|
||||
REQUIRES_devel="
|
||||
libtar$secondaryArchSuffix == $portVersion base
|
||||
"
|
||||
|
||||
LICENSE="BSD (3-clause)"
|
||||
COPYRIGHT="
|
||||
1998-2003 University of Illinois Board of Trustees
|
||||
1998-2003 Mark D. Roth
|
||||
"
|
||||
|
||||
@@ -1,44 +1,41 @@
|
||||
SUMMARY="LibTomMath is a theoretic integer library written entirely in C."
|
||||
SUMMARY="A theoretic integer library written entirely in C"
|
||||
DESCRIPTION="LibTomMath is a free open source portable number theoretic \
|
||||
multiple-precision integer library written entirely in C."
|
||||
HOMEPAGE="http://libtommath.org"
|
||||
SOURCE_URI="https://github.com/libtom/libtommath/archive/v0.42.0.tar.gz"
|
||||
CHECKSUM_SHA256="5246356ba18c1b6edf4a7bc836a3d223842b86914cdba6dd8c112bfc59e227c8"
|
||||
REVISION="1"
|
||||
LICENSE="Public Domain"
|
||||
COPYRIGHT="2010 Tom St. Denis"
|
||||
PATCHES="libtommath-0.42.0.patchset"
|
||||
REVISION="1"
|
||||
|
||||
ARCHITECTURES="x86_gcc2 ?x86"
|
||||
SECONDARY_ARCHITECTURES="x86"
|
||||
|
||||
SOURCE_URI="https://github.com/libtom/libtommath/archive/v0.42.0.tar.gz"
|
||||
CHECKSUM_SHA256="5246356ba18c1b6edf4a7bc836a3d223842b86914cdba6dd8c112bfc59e227c8"
|
||||
COPYRIGHT="2010 Tom St. Denis"
|
||||
PATCHES="libtommath-0.42.0.patchset"
|
||||
|
||||
PROVIDES="
|
||||
libtommath$secondaryArchSuffix = $portVersion
|
||||
"
|
||||
|
||||
libtommath$secondaryArchSuffix = $portVersion
|
||||
"
|
||||
PROVIDES_devel="
|
||||
libtommath${secondaryArchSuffix}_devel = $portVersion
|
||||
devel:libtommath$secondaryArchSuffix = $portVersion
|
||||
"
|
||||
|
||||
libtommath${secondaryArchSuffix}_devel = $portVersion
|
||||
devel:libtommath$secondaryArchSuffix = $portVersion
|
||||
"
|
||||
REQUIRES="
|
||||
haiku$secondaryArchSuffix
|
||||
"
|
||||
|
||||
haiku$secondaryArchSuffix
|
||||
"
|
||||
REQUIRES_devel="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
libtommath$secondaryArchSuffix == $portVersion base
|
||||
"
|
||||
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
libtommath$secondaryArchSuffix == $portVersion base
|
||||
"
|
||||
BUILD_REQUIRES="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
cmd:make
|
||||
cmd:cc
|
||||
cmd:ar
|
||||
cmd:ranlib
|
||||
cmd:install
|
||||
"
|
||||
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
cmd:make
|
||||
cmd:cc
|
||||
cmd:ar
|
||||
cmd:ranlib
|
||||
cmd:install
|
||||
"
|
||||
|
||||
BUILD()
|
||||
{
|
||||
make $jobArgs
|
||||
|
||||
Reference in New Issue
Block a user