summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2022-12-07 18:26:41 +0100
committerDavid Seifert <soap@gentoo.org>2022-12-07 18:26:41 +0100
commit59583eec8f07315994ff6204c8173ef96d20045d (patch)
tree7a26cd5272eda139cc6db9cedd38337378e8aaf3 /x11-misc/gmrun/gmrun-1.4w.ebuild
parentx11-misc/gmrun: drop 0.9.2-r2 (diff)
downloadgentoo-59583eec8f07315994ff6204c8173ef96d20045d.tar.gz
gentoo-59583eec8f07315994ff6204c8173ef96d20045d.tar.bz2
gentoo-59583eec8f07315994ff6204c8173ef96d20045d.zip
x11-misc/gmrun: [QA] cleanups
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'x11-misc/gmrun/gmrun-1.4w.ebuild')
-rw-r--r--x11-misc/gmrun/gmrun-1.4w.ebuild36
1 files changed, 0 insertions, 36 deletions
diff --git a/x11-misc/gmrun/gmrun-1.4w.ebuild b/x11-misc/gmrun/gmrun-1.4w.ebuild
deleted file mode 100644
index f7a3f0ee68c3..000000000000
--- a/x11-misc/gmrun/gmrun-1.4w.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/WdesktopX/${PN}.git"
- EGIT_BRANCH="master"
-else
- SRC_URI="https://github.com/wdlkmpx/${PN}/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="amd64 ~mips ppc x86"
-fi
-
-DESCRIPTION="A GTK-2 based launcher box with bash style auto completion!"
-HOMEPAGE="https://github.com/wdlkmpx/gmrun"
-
-LICENSE="ISC"
-SLOT="0"
-IUSE="elibc_glibc nls xdg"
-
-RDEPEND="
- x11-libs/gtk+:3
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- elibc_glibc? ( >=sys-libs/glibc-2.10 )"
-
-src_configure() {
- econf --disable-gtk2 $(use_enable nls) $(use_enable xdg)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc AUTHORS ChangeLog README.md
-}