# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 inherit savedconfig DESCRIPTION="Tool to select a region on the screen and print it to stdout" HOMEPAGE="https://github.com/BanchouBoo/boox" if [[ ${PV} == 9999 ]] then inherit git-r3 EGIT_REPO_URI="https://github.com/BanchouBoo/${PN}" else SRC_URI="https://github.com/BanchouBoo/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64" fi LICENSE="MIT" SLOT="0" RDEPEND=" x11-libs/libxcb x11-libs/xcb-util-cursor " DEPEND="${RDEPEND}" BDEPEND="virtual/pkgconfig" src_prepare() { default restore_config src/config.h } src_install() { emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install einstalldocs save_config src/config.h }