diff options
author | Kristian Fiskerstrand <k_f@gentoo.org> | 2019-02-09 19:46:31 +0100 |
---|---|---|
committer | Kristian Fiskerstrand <k_f@gentoo.org> | 2019-02-09 19:49:58 +0100 |
commit | 618fae45cfecbf1f75201f923edac64c06a1ffde (patch) | |
tree | 227d08e27c2780fe6d2cd3b830703218ab9c478d /gnome-extra | |
parent | net-nds/yp-tools: x86 stable (bug #676746) (diff) | |
download | gentoo-618fae45cfecbf1f75201f923edac64c06a1ffde.tar.gz gentoo-618fae45cfecbf1f75201f923edac64c06a1ffde.tar.bz2 gentoo-618fae45cfecbf1f75201f923edac64c06a1ffde.zip |
gnome-extra/cjs: Add missing subslot dep
Signed-off-by: Kristian Fiskerstrand <k_f@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'gnome-extra')
-rw-r--r-- | gnome-extra/cjs/cjs-4.0.0-r1.ebuild | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/gnome-extra/cjs/cjs-4.0.0-r1.ebuild b/gnome-extra/cjs/cjs-4.0.0-r1.ebuild new file mode 100644 index 000000000000..a570b3b3d468 --- /dev/null +++ b/gnome-extra/cjs/cjs-4.0.0-r1.ebuild @@ -0,0 +1,81 @@ +# Copyright 1999-2019 Gentoo Authors +# 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" +} |