mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-23 04:00:05 +02:00
x86_64 is used as a baseline: the "x86_64" entry, whatever status it has, is transformed into "all", and then the other entries in ARCHITECTURES either dropped or rearranged appropriately.
90 lines
2.4 KiB
Bash
90 lines
2.4 KiB
Bash
SUMMARY="The GNU Readline library"
|
|
DESCRIPTION="The GNU Readline library provides a set of functions for use by \
|
|
applications that allow users to edit command lines as they are typed in. \
|
|
Both Emacs and vi editing modes are available. The Readline library includes \
|
|
additional functions to maintain a list of previously-entered command lines, \
|
|
to recall and perhaps reedit those lines, and perform csh-like history \
|
|
expansion on previous commands.
|
|
|
|
The history facilites are also placed into a separate library, the History \
|
|
library, as part of the build process. The History library may be used without \
|
|
Readline in applications which desire its capabilities."
|
|
HOMEPAGE="http://tiswww.case.edu/php/chet/readline/rltop.html"
|
|
COPYRIGHT="1989-2019 Free Software Foundation, Inc."
|
|
LICENSE="GNU GPL v3"
|
|
REVISION="1"
|
|
SOURCE_URI="ftp://ftp.gnu.org/gnu/readline/readline-8.1.tar.gz"
|
|
CHECKSUM_SHA256="f8ceb4ee131e3232226a17f51b164afc46cd0b9e6cef344be87c65962cb82b02"
|
|
SOURCE_DIR="readline-8.1"
|
|
PATCHES="readline-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="all"
|
|
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
PROVIDES="
|
|
readline$secondaryArchSuffix = $portVersion
|
|
lib:libhistory$secondaryArchSuffix = 8.1 compat >= 8
|
|
lib:libreadline$secondaryArchSuffix = 8.1 compat >= 8
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libncurses$secondaryArchSuffix
|
|
"
|
|
|
|
PROVIDES_devel="
|
|
readline${secondaryArchSuffix}_devel = $portVersion
|
|
devel:libhistory$secondaryArchSuffix = 8.1 compat >= 8
|
|
devel:libreadline$secondaryArchSuffix = 8.1 compat >= 8
|
|
"
|
|
REQUIRES_devel="
|
|
readline$secondaryArchSuffix == $portVersion base
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libncurses$secondaryArchSuffix >= 6
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:aclocal
|
|
cmd:autoconf
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:libtoolize$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:pkg_config$secondaryArchSuffix
|
|
"
|
|
|
|
defineDebugInfoPackage readline$secondaryArchSuffix \
|
|
$libDir/libhistory.so.8.1 \
|
|
$libDir/libreadline.so.8.1
|
|
|
|
BUILD()
|
|
{
|
|
libtoolize --force --copy --install
|
|
aclocal
|
|
autoconf
|
|
runConfigure ./configure \
|
|
--with-curses
|
|
make $jobArgs SHLIB_LIBS=-lncurses
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
|
|
rm $libDir/lib*.a
|
|
|
|
mkdir -p $libDir/pkgconfig
|
|
cp $sourceDir/readline.pc $libDir/pkgconfig/
|
|
|
|
prepareInstalledDevelLibs libhistory libreadline
|
|
rmdir $binDir
|
|
fixPkgconfig
|
|
|
|
# devel package
|
|
packageEntries devel \
|
|
$dataDir \
|
|
$developDir \
|
|
$documentationDir
|
|
}
|