aboutsummaryrefslogtreecommitdiffstats
path: root/lang/libjit/Makefile
blob: e945430a426c8d70b4249b4b11cff3f1ecd4eae8 (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
44
45
46
47
48
# New ports collection makefile for:    libjit
# Date created:     2004-04-27
# Whom:         michael johnson <ahze@ahze.net>
#
# $FreeBSD$
#

PORTNAME=   libjit
PORTVERSION=    0.1.0
PORTREVISION=   1
CATEGORIES= lang
MASTER_SITES=   http://download.savannah.gnu.org/releases/dotgnu-pnet/

MAINTAINER= ports@FreeBSD.org
COMMENT=    Libjit implements Just-In-Time compilation functionality

USE_AUTOTOOLS=  libtool
USE_GMAKE=  yes
GNU_CONFIGURE=  yes

USE_LDCONFIG=   yes

INFO=       libjit
MAN3=       libjit.3

.include <bsd.port.pre.mk>

.if ${ARCH} == "ia64"
BROKEN=     Segfault during build
.elif ${ARCH} == "powerpc"
BROKEN=     Fails to compile: invokes i386 asm
.elif ${ARCH} == "sparc64"
BROKEN=     Fails to compile: internal gcc error
.endif

post-patch:
# fix for amd64, Upstream forgot a header file
    ${CP} ${FILESDIR}/extra-jit-rules-interp.h ${WRKSRC}/jit/jit-rules-interp.h
    @${REINPLACE_CMD} -e 's|#undef HAVE_TGMATH_H||' \
        ${WRKSRC}/config.h.in

post-configure:
.if ${ARCH} != "amd64"
    @${REINPLACE_CMD} -e 's|$$pic_flag -DPIC||' \
        ${WRKSRC}/libtool
.endif

.include <bsd.port.post.mk>