blob: fcd7fcbef545707e46bb966c7cae3e91051ea68e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# ex:ts=8
# New ports collection makefile for: janosvm
# Date created: Jun 19, 2001
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= janosvm
PORTVERSION= 0.6.0
PORTREVISION= 2
CATEGORIES= java
MASTER_SITES= http://www.cs.utah.edu/flux/janos/${DISTNAME}/
MAINTAINER= ports@FreeBSD.org
COMMENT= A virtual machine for executing Java bytecodes
USE_XLIB= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-x
USE_GMAKE= yes
USE_LDCONFIG= yes
MAN1= janosvm.1 jsihey.1 jsiregister.1 jsiunregister.1
.include <bsd.port.pre.mk>
.if ${ARCH} == "alpha"
BROKEN= "Configure fails on alpha"
.endif
.if ${OSVERSION} >= 500113
BROKEN= "Fails to link"
.endif
.if !defined(NOPORTDOCS)
post-install:
@${MKDIR} ${DOCSDIR}
${CP} -R ${WRKSRC}/FAQ ${DOCSDIR}
${CP} -R ${WRKSRC}/doc ${DOCSDIR}
.endif
.include <bsd.port.post.mk>
|