diff options
Diffstat (limited to 'gnome-extra/cjs/cjs-2.4.2.ebuild')
-rw-r--r-- | gnome-extra/cjs/cjs-2.4.2.ebuild | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/gnome-extra/cjs/cjs-2.4.2.ebuild b/gnome-extra/cjs/cjs-2.4.2.ebuild new file mode 100644 index 000000000000..b492980b7963 --- /dev/null +++ b/gnome-extra/cjs/cjs-2.4.2.ebuild @@ -0,0 +1,75 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +GCONF_DEBUG="no" + +inherit autotools eutils 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:24 + >=dev-libs/glib-2.36: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 ) +" +# Cinnamon 2.2 does not work with this release. +RDEPEND="${RDEPEND} + !<gnome-extra/cinnamon-2.4 +" + +src_prepare() { + # Disable broken unittests + epatch "${FILESDIR}"/${PN}-2.4.0-disable-unittest-*.patch + + epatch_user + eautoreconf + gnome2_src_prepare +} + +src_configure() { + # FIXME: add systemtap/dtrace support, like in glib:2 + # FIXME: --enable-systemtap installs files in ${D}/${D} for some reason + # XXX: Do NOT enable coverage, completely useless for portage installs + gnome2_src_configure \ + --disable-systemtap \ + --disable-dtrace \ + --disable-coverage \ + $(use_with cairo) \ + $(use_with gtk) +} + +src_test() { + Xemake 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" +} |