gnome-extra/cjs: New upstream version 3.8.0
authorKristian Fiskerstrand <k_f@gentoo.org>
Wed, 4 Jul 2018 10:52:27 +0000 (12:52 +0200)
committerKristian Fiskerstrand <k_f@gentoo.org>
Tue, 31 Jul 2018 08:34:36 +0000 (10:34 +0200)
Force while in local branch. spidermonkey will be in testing before
it is released in global tree

Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --force

gnome-extra/cjs/Manifest
gnome-extra/cjs/cjs-3.8.0.ebuild [new file with mode: 0644]

index c20b7157e77ec3117f488e898b42dbba189ccdfe..71ccfeaff2cc8d61dca5199179a4c070b06e9f1e 100644 (file)
@@ -1 +1,2 @@
 DIST cjs-3.6.1.tar.gz 426279 BLAKE2B b9d99e06b580b81178d0b4e2e3d854769357f28277500aed9f5bc2672f26ec72f584576c53d7aa6069737ae81bd0b1bf05d56d39c947de1206c506d72c8da075 SHA512 648997c76acb11885a53a73aa456989784fe5f5a12e0f349bce658c1eb3e3ce2b5c576ace488962c9b012fc85c2c3dd828f61f857cc9da7b60ee5fcdd7d25155
+DIST cjs-3.8.0.tar.gz 446667 BLAKE2B d7d37d2aa47fb32b401727e2d5f7f6bd3779e62f5bdaf77501e0999bc7d74a14c5c9924702091d4b32dc7a572b5e920e2dcf19e50b048907f87993d8be392ea7 SHA512 7f776be2d4863ea7bb32e266efb0c5d5e0f86bab68bdabc1478e04809f8f887b4ff0853075baffa46055d347fc22c6252faefaceba750f61b0b21229f6130bd0
diff --git a/gnome-extra/cjs/cjs-3.8.0.ebuild b/gnome-extra/cjs/cjs-3.8.0.ebuild
new file mode 100644 (file)
index 0000000..dfb627a
--- /dev/null
@@ -0,0 +1,81 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools gnome2 pax-utils virtualx
+
+DESCRIPTION="Linux Mint's fork of gjs for Cinnamon"
+HOMEPAGE="http://cinnamon.linuxmint.com/"
+SRC_URI="https://github.com/linuxmint/cjs/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT || ( MPL-1.1 LGPL-2+ GPL-2+ )"
+SLOT="0"
+IUSE="+cairo examples gtk test"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+       dev-lang/spidermonkey:52
+       >=dev-libs/glib-2.37.3:2
+       >=dev-libs/gobject-introspection-1.38:=
+       sys-libs/readline:0
+       virtual/libffi
+       cairo? ( x11-libs/cairo[X,glib] )
+       gtk? ( x11-libs/gtk+:3 )
+"
+DEPEND="${RDEPEND}
+       gnome-base/gnome-common
+       sys-devel/gettext
+       virtual/pkgconfig
+       test? ( sys-apps/dbus )
+       sys-devel/autoconf-archive
+"
+# Cinnamon 2.2 does not work with this release.
+RDEPEND="${RDEPEND}
+       !<gnome-extra/cinnamon-2.4
+"
+
+RESTRICT="test"
+
+src_prepare() {
+       eautoreconf
+       gnome2_src_prepare
+       sed -ie "s/gjs-console/cjs-console/g" \
+               "${S}"/installed-tests/scripts/testCommandLine.sh \
+               "${S}"/installed-tests/scripts/testWarnings.sh || die
+
+       sed -ie "s/Gjs-WARNING/Cjs-WARNING/g" \
+               "${S}"/installed-tests/scripts/testCommandLine.sh || die
+
+       sed -ie "s/'Gjs'/'Cjs'/g" \
+               "${S}"/installed-tests/js/testExceptions.js \
+               "${S}"/installed-tests/js/testSignals.js \
+               "${S}"/installed-tests/js/testGDBus.js \
+               "${S}"/installed-tests/js/testEverythingBasic.js || die
+}
+
+src_configure() {
+       # FIXME: add systemtap/dtrace support, like in glib:2
+       # FIXME: --enable-systemtap installs files in ${D}/${D} for some reason
+       gnome2_src_configure \
+               --disable-systemtap \
+               --disable-dtrace \
+               $(use_with cairo) \
+               $(use_with gtk)
+}
+
+src_test() {
+       virtx emake check
+}
+
+src_install() {
+       # installation sometimes fails in parallel
+       gnome2_src_install -j1
+
+       if use examples; then
+               insinto /usr/share/doc/"${PF}"/examples
+               doins "${S}"/examples/*
+       fi
+
+       # Required for cjs-console to run correctly on PaX systems
+       pax-mark mr "${ED}/usr/bin/cjs-console"
+}