diff options
Diffstat (limited to 'gnome-extra/cjs/cjs-4.6.0.ebuild')
-rw-r--r-- | gnome-extra/cjs/cjs-4.6.0.ebuild | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/gnome-extra/cjs/cjs-4.6.0.ebuild b/gnome-extra/cjs/cjs-4.6.0.ebuild deleted file mode 100644 index bbdc3a6ffabe..000000000000 --- a/gnome-extra/cjs/cjs-4.6.0.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit autotools gnome2-utils pax-utils virtualx xdg-utils - -DESCRIPTION="Linux Mint's fork of gjs for Cinnamon" -HOMEPAGE="https://projects.linuxmint.com/cinnamon/" -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 ~arm64 x86" -RESTRICT="test" - -RDEPEND=" - dev-lang/spidermonkey:52 - >=dev-libs/glib-2.42:2 - >=dev-libs/gobject-introspection-1.41.4:= - sys-libs/readline:0= - dev-libs/libffi:0= - cairo? ( x11-libs/cairo[X,glib] ) - gtk? ( x11-libs/gtk+:3 ) -" -DEPEND="${RDEPEND} - test? ( sys-apps/dbus ) -" -BDEPEND=" - sys-devel/autoconf-archive - sys-devel/gettext - virtual/pkgconfig -" - -src_prepare() { - xdg_environment_reset - default - eautoreconf - gnome2_disable_deprecation_warning - - sed -ie "s/'Gjs'/'Cjs'/g" \ - "${S}"/installed-tests/js/testExceptions.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 - econf \ - --disable-maintainer-mode \ - --enable-compile-warnings=minimum \ - --disable-systemtap \ - --disable-dtrace \ - $(use_with cairo) \ - $(use_with gtk) -} - -src_test() { - virtx emake check -} - -src_install() { - # installation sometimes fails in parallel - default -j1 - find "${D}" -name '*.la' -delete || die - - if use examples; then - docinto examples - dodoc "${S}"/examples/* - fi - - # Required for cjs-console to run correctly on PaX systems - pax-mark mr "${ED}/usr/bin/cjs-console" -} |