aboutsummaryrefslogtreecommitdiff
path: root/lang/rubinius/Makefile
blob: 4fda62bbe49a1f118410334be9a9791c50b089bd (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# New ports collection makefile for:		rubinius
# Date created:					10/10/2010
# Whom:						stas
#
# $FreeBSD$
#

PORTNAME=	rubinius
PORTVERSION=	1.2.4
PORTREVISION=	2
CATEGORIES=	lang
MASTER_SITES=	ftp://ftp.SpringDaemons.com/soft/ \
		http://asset.rubini.us/prebuilt/:llvm
DISTFILES=	${DISTNAME}${EXTRACT_SUFX} ${LLVMDIST}:llvm
EXTRACT_ONLY=	${DISTNAME}${EXTRACT_SUFX}

MAINTAINER=	ports@FreeBSD.org
COMMENT=	LLVM based ruby language implementation

HAS_CONFIGURE=	yes
#execinfo is broken for unknow reason
CONFIGURE_ARGS=	--without-execinfo \
		-P "${PREFIX}" \
		-I "${PREFIX}/include/rubinius" \
		-L "${PREFIX}/lib/ruby/rubinius" \
		-G "${PREFIX}/lib/ruby/gems/rubinius" \
		-B "${PREFIX}/bin" \
		-M "${PREFIX}/man" \
		--sitedir "${PREFIX}/lib/ruby/site_ruby/rubinius" \
		--vendordir "${PREFIX}/lib/ruby/vendor_ruby/rubinius"

LLVMDIST=	llvm-2.8.tgz
USES=		perl5
USE_RUBY=	yes
RUBY_NO_RUN_DEPENDS=	yes
USE_RAKE=	yes
USE_PERL5=	build
USE_GMAKE=	yes
MAKE_JOBS_UNSAFE=	yes

OPTIONS_DEFINE=	GDBM
OPTIONS_DEFAULT=	GDBM
GDBM_DESC=	Enable GDBM support

.include <bsd.port.pre.mk>

.if ${ARCH} == "sparc64"
BROKEN=		Does not compile on sparc64
.endif

.if ${PORT_OPTIONS:MGDBM} || exists(${LOCALBASE}/include/gdbm.h)
LIB_DEPENDS=	gdbm.4:${PORTSDIR}/databases/gdbm
PLIST_SUB+=	GDBM=""
.else
PLIST_SUB+=	GDBM="@comment "
.endif

post-extract:
	@${MKDIR} ${WRKSRC}/vm/external_libs/prebuilt/
	@${CP} ${DISTDIR}/${LLVMDIST} ${WRKSRC}/vm/external_libs/prebuilt/${LLVMDIST}

do-build:
	@(cd ${WRKSRC}/; ${SETENV} ${MAKE_ENV} ${RAKE_BIN} build)

do-install:
	@(cd ${WRKSRC}/; ${SETENV} ${MAKE_ENV} ${RAKE_BIN} install)

pre-install:
	${MKDIR} ${PREFIX}/lib/ruby/site_ruby/rubinius
	${MKDIR} ${PREFIX}/lib/ruby/vendor_ruby/rubinius
	@${TOUCH} ${PREFIX}/lib/ruby/site_ruby/rubinius/.keep_me
	@${TOUCH} ${PREFIX}/lib/ruby/vendor_ruby/rubinius/.keep_me

plist:
	truncate -s0 pkg-plist
	@${ECHO_CMD} "bin/rbx" >> pkg-plist
#
# Includes
#
	@${FIND} -ds ${PREFIX}/include/rubinius ! -type d | \
		${SED} 's,^${PREFIX}/*,,' >> pkg-plist
	@${FIND} -ds ${PREFIX}/include/rubinius -type d | \
		${SED} 's,^${PREFIX}/*,@dirrm ,' >> pkg-plist
#
# Libs
#
	@${FIND} -ds ${PREFIX}/lib/ruby/rubinius ! -type d | \
		${SED} 's,^${PREFIX}/*,,' >> pkg-plist
	@${FIND} -ds ${PREFIX}/lib/ruby/rubinius -type d | \
		${SED} 's,^${PREFIX}/*,@dirrm ,' >> pkg-plist
#
# Gems
#
	@${FIND} -ds ${PREFIX}/lib/ruby/gems/rubinius ! -type d | \
		${SED} 's,^${PREFIX}/*,,' >> pkg-plist
	@${FIND} -ds ${PREFIX}/lib/ruby/gems/rubinius -type d | \
		${SED} 's,^${PREFIX}/*,@dirrm ,' >> pkg-plist
#
# Site libs and vendor libs
#
	@${FIND} -ds ${PREFIX}/lib/ruby/site_ruby/rubinius ! -type d | \
		${SED} 's,^${PREFIX}/*,,' >> pkg-plist
	@${FIND} -ds ${PREFIX}/lib/ruby/site_ruby/rubinius -type d | \
		${SED} 's,^${PREFIX}/*,@dirrm ,' >> pkg-plist
	@${FIND} -ds ${PREFIX}/lib/ruby/vendor_ruby/rubinius ! -type d | \
		${SED} 's,^${PREFIX}/*,,' >> pkg-plist
	@${FIND} -ds ${PREFIX}/lib/ruby/vendor_ruby/rubinius -type d | \
		${SED} 's,^${PREFIX}/*,@dirrm ,' >> pkg-plist
#
# Shared dirs
#
	@${ECHO_CMD} "@dirrmtry lib/ruby/site_ruby" >> pkg-plist
	@${ECHO_CMD} "@dirrmtry lib/ruby/vendor_ruby" >> pkg-plist
	@${ECHO_CMD} "@dirrmtry lib/ruby/gems" >> pkg-plist
	@${ECHO_CMD} "@dirrmtry lib/ruby" >> pkg-plist

.include <bsd.port.post.mk>