diff options
| author | Henning Schild <henning@hennsch.de> | 2022-08-01 20:37:56 +0200 |
|---|---|---|
| committer | Piotr Karbowski <slashbeast@gentoo.org> | 2022-08-29 21:14:20 +0200 |
| commit | fb7ab158478ebd19c76267608193e255c508b51a (patch) | |
| tree | cfebce7f3e55e9c55db4b99658e2d265c575986e /x11-misc/gmrun/gmrun-1.4w.ebuild | |
| parent | 8357dc7ab13c60a0415543becc5704718027a281 (diff) | |
| download | gentoo-fb7ab158478ebd19c76267608193e255c508b51a.tar.gz gentoo-fb7ab158478ebd19c76267608193e255c508b51a.tar.bz2 gentoo-fb7ab158478ebd19c76267608193e255c508b51a.zip | |
x11-misc/gmrun: bump version to 1.4w
Closes: https://bugs.gentoo.org/576992
Signed-off-by: Henning Schild <henning@hennsch.de>
Closes: https://github.com/gentoo/gentoo/pull/26699
Signed-off-by: Piotr Karbowski <slashbeast@gentoo.org>
Diffstat (limited to 'x11-misc/gmrun/gmrun-1.4w.ebuild')
| -rw-r--r-- | x11-misc/gmrun/gmrun-1.4w.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/x11-misc/gmrun/gmrun-1.4w.ebuild b/x11-misc/gmrun/gmrun-1.4w.ebuild new file mode 100644 index 000000000000..0d37c5769256 --- /dev/null +++ b/x11-misc/gmrun/gmrun-1.4w.ebuild @@ -0,0 +1,36 @@ +# 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/WdesktopX/${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/WdesktopX/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 +} |
