aboutsummaryrefslogtreecommitdiff
blob: a8e864318091beb011a911776992aa06b70df6bb (plain)
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="5"
WANT_AUTOCONF="2.1"
PYTHON_COMPAT=( python2_{6,7} )
PYTHON_REQ_USE="threads"
inherit autotools eutils toolchain-funcs multilib python-any-r1 versionator pax-utils autotools-multilib

MY_PN="mozjs"
MY_P="${MY_PN}-${PV/_/.}"
DESCRIPTION="Stand-alone JavaScript C library"
HOMEPAGE="http://www.mozilla.org/js/spidermonkey/"
SRC_URI="https://ftp.mozilla.org/pub/mozilla.org/js/${MY_P}.tar.bz2"
LICENSE="NPL-1.1"
SLOT="24"
KEYWORDS="~amd64"
IUSE="debug icu jit minimal static-libs +system-icu test"

RESTRICT="ia64? ( test )"

S="${WORKDIR}/${MY_P%.rc*}"
BUILDDIR="${S}/js/src"

RDEPEND=">=dev-libs/nspr-4.9.4[${MULTILIB_USEDEP}]
	virtual/libffi[${MULTILIB_USEDEP}]
	>=sys-libs/zlib-1.1.4[${MULTILIB_USEDEP}]
	system-icu? ( >=dev-libs/icu-1.51:=[${MULTILIB_USEDEP}] )"

DEPEND="${RDEPEND}
	${PYTHON_DEPS}
	app-arch/zip
	virtual/pkgconfig"

abi_builddir() {
	echo "${BUILD_DIR}"/js/src
}

pkg_setup(){
	if [[ ${MERGE_TYPE} != "binary" ]]; then
		python-any-r1_pkg_setup
		export LC_ALL="C"
	fi
}

PATCHES=(
	"${FILESDIR}"/${PN}-${SLOT}-system-icu.patch
	"${FILESDIR}"/${PN}-24.2.0-fix-file-permissions.patch
)
MULTILIB_WRAPPED_HEADERS=(/usr/include/mozjs-24/js-config.h)
MULTILIB_WRAPPED_EXECUTABLES=(@/usr/bin/js24-config)
MULTILIB_PARALLEL_PHASES="src_configure src_compile src_test"

ehook autotools-multilib-global-pre_src_prepare pre_prepare
pre_prepare() {
	if [[ ${CHOST} == *-freebsd* ]]; then
		# Don't try to be smart, this does not work in cross-compile anyway
		ln -sfn "${BUILDDIR}/config/Linux_All.mk" "${S}/config/$(uname -s)$(uname -r).mk" || die
	fi
}

ehook autotools-multilib-global-pre_src_configure pre_configure
pre_configure() {
	ECONF_SOURCE="${BUILDDIR}"

	if use icu; then # make sure system-icu flag only affects icu-enabled build
		myeconfargs+=( $(use_with system-icu) )
	else
		myeconfargs+=( --without-system-icu )
	fi

	myeconfargs+=(
		${myopts}
		--enable-jemalloc
		--enable-readline
		--enable-threadsafe
		--enable-system-ffi
		--enable-jemalloc
		$(use_enable icu intl-api)
		$(use_enable debug)
		$(use_enable jit tracejit)
		$(use_enable jit methodjit)
		$(use_enable static-libs static)
		$(use_enable test tests)
	)
}

ehook autotools-multilib-per-abi-pre_src_configure pre_abi_configure
pre_abi_configure() {
	mkdir -p "$(abi_builddir)" || die
	cd "$(abi_builddir)" || die
	if multilib_is_best_abi ; then
		myeconfargs+=(--with-system-nspr)
	else
		myeconfargs+=(
			--with-nspr-cflags="$(nspr-config-${ABI} --cflags)"
			--with-nspr-libs="$(nspr-config-${ABI} --libs)"
			--with-nspr-prefix="$(nspr-config-${ABI} --prefix)"
			--with-nspr-exec-prefix="$(nspr-config-${ABI} --exec-prefix)"
		)
	fi
	MULTILIB_TC_EXPORT_VARS="CC CXX AR RANLIB LD" multilib_tc_export \
		econf "${myeconfargs[@]}" "${othereconfargs[@]}"
	return 1
}

ehook autotools-multilib-per-abi-pre_src_compile pre_abi_compile
pre_abi_compile() {
	cd "$(abi_builddir)" || die
	if tc-is-cross-compiler; then
		make CFLAGS="" CXXFLAGS="" \
			CC=$(tc-getBUILD_CC) CXX=$(tc-getBUILD_CXX) \
			AR=$(tc-getBUILD_AR) RANLIB=$(tc-getBUILD_RANLIB) \
			jscpucfg host_jsoplengen host_jskwgen || die
		make CFLAGS="" CXXFLAGS="" \
			CC=$(tc-getBUILD_CC) CXX=$(tc-getBUILD_CXX) \
			AR=$(tc-getBUILD_AR) RANLIB=$(tc-getBUILD_RANLIB) \
			-C config nsinstall || die
		mv {,native-}jscpucfg || die
		mv {,native-}host_jskwgen || die
		mv {,native-}host_jsoplengen || die
		mv config/{,native-}nsinstall || die
		sed -e 's@./jscpucfg@./native-jscpucfg@' \
			-e 's@./host_jskwgen@./native-host_jskwgen@' \
			-e 's@./host_jsoplengen@./native-host_jsoplengen@' \
			-i Makefile || die
		sed -e 's@/nsinstall@/native-nsinstall@' -i config/config.mk || die
		rm -f config/host_nsinstall.o \
			config/host_pathsub.o \
			host_jskwgen.o \
			host_jsoplengen.o || die
	fi
}

ehook autotools-multilib-per-abi-pre_src_test pre_abi_test
pre_abi_test() {
	cd "$(abi_builddir)/jsapi-tests" || die
}

ehook autotools-multilib-per-abi-pre_src_install pre_abi_install
pre_abi_install() {
	cd "$(abi_builddir)" || die
}

ehook autotools-multilib-global-post_src_install post_install
post_install() {
	if ! use minimal; then
		if use jit; then
			pax-mark m "${ED}/usr/bin/js${SLOT}"
		fi
	else
		rm -f "${ED}/usr/bin/js${SLOT}"
	fi

	if ! use static-libs; then
		# We can't actually disable building of static libraries
		# They're used by the tests and in a few other places
		find "${D}" -iname '*.a' -delete || die
	fi
}