diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2021-10-19 14:44:55 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2021-10-19 19:17:04 -0400 |
commit | c0c97b16cb4e20d130fffdfea3aee9597b6027ae (patch) | |
tree | 07b46715c6518648ba3ecb8dace75970a04f8f52 /x11-terms/guake | |
parent | net-wireless/bluez: Drop old (diff) | |
download | gentoo-c0c97b16cb4e20d130fffdfea3aee9597b6027ae.tar.gz gentoo-c0c97b16cb4e20d130fffdfea3aee9597b6027ae.tar.bz2 gentoo-c0c97b16cb4e20d130fffdfea3aee9597b6027ae.zip |
x11-terms/guake: drop live ebuild
Without a proper maintainer, keeping -9999 updated does not seem
worth it (especially with the fickle Makefile operations and
paths that are likely to require fine tuning not to break).
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'x11-terms/guake')
-rw-r--r-- | x11-terms/guake/guake-9999.ebuild | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/x11-terms/guake/guake-9999.ebuild b/x11-terms/guake/guake-9999.ebuild deleted file mode 100644 index 0c37d44a1ac0..000000000000 --- a/x11-terms/guake/guake-9999.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..9} ) -DISTUTILS_SINGLE_IMPL=1 - -inherit distutils-r1 gnome2-utils xdg-utils - -if [[ ${PV} == *9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/Guake/guake.git" -else - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~x86" -fi - -DESCRIPTION="Drop-down terminal for GNOME" -HOMEPAGE=" - https://github.com/Guake/guake/ - https://pypi.org/project/guake/" - -LICENSE="GPL-2" -SLOT="0" -IUSE="utempter" - -RDEPEND=" - dev-libs/glib - dev-libs/keybinder:3[introspection] - $(python_gen_cond_dep ' - dev-python/dbus-python[${PYTHON_USEDEP}] - dev-python/pbr[${PYTHON_USEDEP}] - dev-python/pycairo[${PYTHON_USEDEP}] - dev-python/pygobject:3[${PYTHON_USEDEP}] - ') - x11-libs/libnotify[introspection] - x11-libs/libwnck:3[introspection] - x11-libs/vte:2.91[introspection] - utempter? ( sys-libs/libutempter )" -DEPEND="${RDEPEND}" -BDEPEND=" - gnome-base/gsettings-desktop-schemas - sys-devel/gettext" - -PATCHES=( - "${FILESDIR}"/${PN}-3.3.2-paths.patch -) - -python_compile_all() { - emake prepare-install PREFIX=/usr - emake generate-paths PREFIX=/usr DATA_DIR='$(datadir)/guake' DEV_SCHEMA_DIR='$(gsettingsschemadir)' - default -} - -python_install_all() { - emake install-schemas install-locale PREFIX=/usr DESTDIR="${D}" - distutils-r1_python_install_all -} - -pkg_postinst() { - gnome2_schemas_update - xdg_desktop_database_update -} - -pkg_postrm() { - gnome2_schemas_update - xdg_desktop_database_update -} |