diff options
author | Alexis Ballier <aballier@gentoo.org> | 2007-11-15 13:23:17 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2007-11-15 13:23:17 +0000 |
commit | 45f16cdd2fa84a2777503be4cf21535943bd8a56 (patch) | |
tree | 45f060b439b532ea36cb3133dcb682c84877d6eb /dev-lang/spidermonkey/spidermonkey-1.7.0.ebuild | |
parent | Delete old ebuilds so that ~arch users get 1.6.3 version too. (diff) | |
download | gentoo-2-45f16cdd2fa84a2777503be4cf21535943bd8a56.tar.gz gentoo-2-45f16cdd2fa84a2777503be4cf21535943bd8a56.tar.bz2 gentoo-2-45f16cdd2fa84a2777503be4cf21535943bd8a56.zip |
version bump
(Portage version: 2.1.3.19)
Diffstat (limited to 'dev-lang/spidermonkey/spidermonkey-1.7.0.ebuild')
-rw-r--r-- | dev-lang/spidermonkey/spidermonkey-1.7.0.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/dev-lang/spidermonkey/spidermonkey-1.7.0.ebuild b/dev-lang/spidermonkey/spidermonkey-1.7.0.ebuild new file mode 100644 index 000000000000..93246426a23d --- /dev/null +++ b/dev-lang/spidermonkey/spidermonkey-1.7.0.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/spidermonkey/spidermonkey-1.7.0.ebuild,v 1.1 2007/11/15 13:23:17 aballier Exp $ + +inherit eutils toolchain-funcs multilib + +MY_P="js-${PV}" +DESCRIPTION="Stand-alone JavaScript C library" +HOMEPAGE="http://www.mozilla.org/js/spidermonkey/" +SRC_URI="ftp://ftp.mozilla.org/pub/mozilla.org/js/${MY_P}.tar.gz" + +LICENSE="NPL-1.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="threadsafe" + +S="${WORKDIR}/js/src" + +RDEPEND="threadsafe? ( dev-libs/nspr )" + +DEPEND="${RDEPEND}" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${PN}-1.5-build.patch" + epatch "${FILESDIR}/${PN}-1.6-header.patch" + epatch "${FILESDIR}/${P}-threadsafe.diff" + if [[ ${CHOST} == *-freebsd* ]]; then + # Don't try to be smart, this does not work in cross-compile anyway + ln -s "${S}/config/Linux_All.mk" "${S}/config/$(uname -s)$(uname -r).mk" + fi +} + +src_compile() { + tc-export CC LD AR + if use threadsafe; then + emake -j1 -f Makefile.ref LIBDIR="$(get_libdir)" JS_THREADSAFE=1 \ + || die "emake with threadsafe enabled failed"; + else + emake -j1 -f Makefile.ref LIBDIR="$(get_libdir)" \ + || die "emake without threadsafe enabled failed"; + fi +} + +src_install() { + emake -f Makefile.ref install DESTDIR="${D}" LIBDIR="$(get_libdir)" || die + dodoc ../jsd/README + dohtml README.html +} |