Magellan Linux

Annotation of /trunk/extras/spidermonkey/spidermonkey-52.7.3-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 30865 - (hide annotations) (download)
Mon Apr 30 13:44:09 2018 UTC (6 years ago) by niro
File size: 2090 byte(s)
auto added: ver bump to 52.7.3-r1
1 niro 30861 # $Id$
2    
3     PNAME="spidermonkey"
4     PVER="52.7.3"
5     PBUILD="r1"
6    
7     PCAT="dev-java"
8    
9     DESCRIPTION="SpiderMonkey is the code-name for the Mozilla's C implementation of JavaScript."
10     HOMEPAGE="https://developer.mozilla.org/en-US/docs/SpiderMonkey"
11    
12     DEPEND=">= sys-libs/zlib-1.2
13     >= sys-libs/readline-7
14     >= sys-libs/libstdc++-7.3"
15     SDEPEND=">= dev-lang/python-2.7
16     >= app-arch/zip-3"
17    
18     # direct mecurial export
19 niro 30862 SRCFILE="FIREFOX_${PVER//./_}esr_RELEASE.tar.bz2"
20 niro 30864 SRCDIR="${BUILDDIR}/mozilla-unified-FIREFOX_${PVER//./_}esr_RELEASE"
21 niro 30861
22     EMUL_LINUX_32=true
23 niro 30864 sminclude multilib
24 niro 30861 msetfeature "!check"
25    
26     SRC_URI=(
27 niro 30863 #https://hg.mozilla.org/mozilla-unified/archive/${SRCFILE}
28 niro 30861 mirror://${PNAME}/${SRCFILE}
29     mirror://${PNAME}/${PNAME}-${PVER}-fix-soname.patch
30     mirror://${PNAME}/${PNAME}-${PVER}-copy-headers.patch
31     mirror://${PNAME}/${PNAME}-${PVER}-disable-mozglue.patch
32     mirror://${PNAME}/${PNAME}-${PVER}-include-configure-script.patch
33     )
34    
35     UP2DATE="updatecmd https://hg.mozilla.org/mozilla-unified/tags | grep '/FIREFOX_.*esr_RELEASE' | sed -e 's:.*/FIREFOX_\(.*\)esr_RELEASE:\1:' -e 's:_:\.:g' | upsort_pipe"
36    
37     src_prepare()
38     {
39     munpack ${SRCFILE} || die
40 niro 30864 mpatch ${PNAME}-${PVER}-fix-soname.patch || die
41     mpatch ${PNAME}-${PVER}-copy-headers.patch || die
42     mpatch ${PNAME}-${PVER}-disable-mozglue.patch || die
43     mpatch ${PNAME}-${PVER}-include-configure-script.patch || die
44 niro 30861 }
45    
46     src_compile()
47     {
48     export CFLAGS+=' -fno-delete-null-pointer-checks -fno-strict-aliasing -fno-tree-vrp -flto=3'
49     export CXXFLAGS+=' -fno-delete-null-pointer-checks -fno-strict-aliasing -fno-tree-vrp -flto=3'
50     export CC=gcc
51     export CXX=g++
52     export PYTHON=/usr/bin/python2
53    
54 niro 30865 SRCSUBDIR="js/src" \
55 niro 30861 mconfigure \
56     --disable-debug \
57     --disable-debug-symbols \
58     --disable-strip \
59     --enable-gold \
60     --enable-optimize="-O2" \
61     --enable-pie \
62     --enable-posix-nspr-emulation \
63     --enable-readline \
64     --enable-release \
65     --enable-shared-js \
66     --enable-tests \
67     --with-intl-api \
68     --with-system-zlib \
69     --without-system-icu \
70     || die
71    
72 niro 30865 SRCSUBDIR="js/src" mmake || die
73 niro 30861 }
74 niro 30864
75     src_install()
76     {
77 niro 30865 SRCSUBDIR="js/src" mmake DESTDIR=${BINDIR} install || die
78 niro 30864 }