# Copyright 1999-2022 Gentoo Foundation # 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="http://sourceforge.net/projects/gmrun/" LICENSE="GPL-1" SLOT="0" IUSE="elibc_glibc" RDEPEND="x11-libs/gtk+:2 dev-libs/popt" DEPEND="${RDEPEND} virtual/pkgconfig elibc_glibc? ( >=sys-libs/glibc-2.10 )" src_install() { emake DESTDIR="${D}" install || die "emake install failed" dodoc AUTHORS ChangeLog README* }