mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 05:10: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.
71 lines
1.5 KiB
Bash
71 lines
1.5 KiB
Bash
SUMMARY="GNU Java class library"
|
|
DESCRIPTION="
|
|
Free core class libraries for use with virtual machines and compilers for the \
|
|
Java language"
|
|
HOMEPAGE="http://www.gnu.org/software/classpath"
|
|
COPYRIGHT="1998-1999, 2001-2008 Free Software Foundation
|
|
1991 AT&T
|
|
1993 Sun Microsystems, Inc. All rights reserved
|
|
1997, 1998 by Microstar Software Ltd.
|
|
1991-2005 Unicode, Inc. All rights reserved
|
|
2001 Thai Open Source Software Center Ltd, Sun
|
|
2004 World Wide Web Consortium
|
|
2005 Caolan McNamara
|
|
2005 Daniel Richard G."
|
|
LICENSE="GNU GPL v2
|
|
GNU GPL v2 with classpath exceptions"
|
|
REVISION="1"
|
|
SOURCE_URI="ftp://ftp.gnu.org/gnu/classpath/classpath-0.98.tar.gz"
|
|
CHECKSUM_SHA256="501b5acd4dff79b6100da22cef15080f31071821ce3cea6f1b739bc1b56fac3f"
|
|
SOURCE_DIR="classpath-0.98"
|
|
PATCHES="gnu_classpath-0.98.patch"
|
|
|
|
ARCHITECTURES="?all"
|
|
SECONDARY_ARCHITECTURES="?x86_gcc2 ?x86"
|
|
|
|
PROVIDES="
|
|
gnu_classpath$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:aclocal
|
|
cmd:autoconf
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:jamvm$secondaryArchSuffix # at least one java VM, for now just use jamvm
|
|
cmd:libtoolize
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
libtoolize --force --copy --install
|
|
aclocal -I m4
|
|
autoconf
|
|
runConfigure ./configure \
|
|
--disable-gtk-peer \
|
|
--disable-alsa \
|
|
--disable-plugin \
|
|
--disable-gconf-peer \
|
|
--disable-gjdoc \
|
|
LDFLAGS="-lnetwork"
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
:
|
|
# make test
|
|
# make check
|
|
}
|