0a107c0392
What's New in Kaffe OpenVM 1.0 Beta 3: * New java.awt - now implements old event model (JDK 1.0.2) and will support Swing. * New java.net implementation - fixes many bugs and generally much cleaner. * Initial implementation of Collections API (only Vector and Hashtable currently conform). * Lots of bug fixes.
34 lines
1 KiB
Makefile
34 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.14 1998/12/08 23:19:49 frueauf Exp $
|
|
#
|
|
|
|
DISTNAME= kaffe-1.0.b3
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ftp://ftp.transvirtual.com/pub/kaffe/
|
|
|
|
MAINTAINER= packages@netbsd.org
|
|
HOMEPAGE= http://www.transvirtual.com/kaffe.html
|
|
|
|
DEPENDS+= jpeg-6b:../../graphics/jpeg
|
|
DEPENDS+= png-1.0.2:../../graphics/png
|
|
DEPENDS+= giflib-3.0:../../graphics/giflib
|
|
|
|
CONFLICTS= kaffe-0.9.2 kaffe-1.0.b1 kaffe-1.0.b2
|
|
|
|
ONLY_FOR_ARCHS= arm32 i386 m68k mips* sparc
|
|
NOT_FOR_ARCHS= alpha #assembler problems
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \
|
|
CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
|
LOCALBASE=${LOCALBASE}
|
|
MAKE_ENV= PATH=${PATH}:${LOCALBASE}/bin:${X11BASE}/bin PREFIX=${PREFIX} \
|
|
LOCALBASE=${LOCALBASE} X11BASE=${X11BASE} \
|
|
MOTIFLIB="${MOTIFLIB}" CFLAGS="${CFLAGS}"
|
|
CFLAGS+= -Dunix -I${LOCALBASE}/include -I${X11BASE}/include
|
|
|
|
post-install:
|
|
${MKDIR} ${PREFIX}/share/kaffe
|
|
${INSTALL_DATA} ${WRKSRC}/ENVIRONMENT ${WRKSRC}/license.terms \
|
|
${PREFIX}/share/kaffe
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|