mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-16 00:30:06 +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.
103 lines
2.2 KiB
Bash
103 lines
2.2 KiB
Bash
SUMMARY="The GNU debugger"
|
|
DESCRIPTION="GDB is the GNU debugger. It allows you to see what is going on \
|
|
'inside' another program while it executes -- or what another program was \
|
|
doing at the moment it crashed.
|
|
|
|
GDB can do four main kinds of things (plus other things in support of \
|
|
these) to help you catch bugs in the act:
|
|
|
|
* Start your program, specifying anything that might affect its behavior.
|
|
* Make your program stop on specified conditions.
|
|
* Examine what has happened, when your program has stopped.
|
|
* Change things in your program, so you can experiment with correcting \
|
|
the effects of one bug and go on to learn about another.
|
|
|
|
The program being debugged can be written in Ada, C, C++, Objective-C, \
|
|
Pascal (and many other languages). Those programs might be executing \
|
|
on the same machine as GDB (native) or on another machine (remote). \
|
|
GDB can run on most popular UNIX and Microsoft Windows variants."
|
|
HOMEPAGE="https://sourceware.org/gdb/"
|
|
COPYRIGHT="2018 Free Software Foundation, Inc."
|
|
LICENSE="GNU GPL v2
|
|
GNU GPL v3"
|
|
REVISION="2"
|
|
SOURCE_URI="https://ftp.gnu.org/gnu/gdb/gdb-$portVersion.tar.xz"
|
|
CHECKSUM_SHA256="af61a0263858e69c5dce51eab26662ff3d2ad9aa68da9583e8143b5426be4b34"
|
|
PATCHES="gdb-$portVersion.patch"
|
|
|
|
ARCHITECTURES="?all !x86_gcc2"
|
|
|
|
PROVIDES="
|
|
gdb = $portVersion
|
|
cmd:gdb = $portVersion
|
|
devel:libbfd = $portVersion
|
|
devel:libopcodes = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libexpat
|
|
lib:libiconv
|
|
lib:libncurses
|
|
lib:libpython2.7
|
|
lib:libz
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
devel:libexpat
|
|
devel:libiconv
|
|
devel:libncurses
|
|
devel:libpython2.7
|
|
devel:libz
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel
|
|
cmd:awk
|
|
cmd:bison
|
|
cmd:cmp
|
|
cmd:flex
|
|
cmd:gcc
|
|
cmd:ld
|
|
cmd:m4
|
|
cmd:make
|
|
cmd:makeinfo
|
|
cmd:python
|
|
cmd:yacc
|
|
"
|
|
|
|
TEST_REQUIRES="
|
|
cmd:runtest
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
if [ $targetArchitecture = x86 ]; then
|
|
TARGET=i586-pc-haiku
|
|
elif [ $targetArchitecture = x86_64 ]; then
|
|
TARGET=x86_64-unknown-haiku
|
|
fi
|
|
|
|
runConfigure --omit-dirs "docDir dataRootDir" ./configure \
|
|
--host=$TARGET --target=$TARGET \
|
|
--disable-nls --with-system-zlib
|
|
|
|
make configure-host
|
|
make configure-target
|
|
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
|
|
prepareInstalledDevelLibs \
|
|
libbfd \
|
|
libopcodes
|
|
rm $developLibDir/*.la
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
make check
|
|
}
|