# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=9 DESCRIPTION="Distributed issue tracking embedded in Git" HOMEPAGE="https://github.com/remenoscodes/git-native-issue" if [[ ${PV} == *9999 ]] ; then inherit git-r3 EGIT_REPO_URI="https://github.com/remenoscodes/git-native-issue.git" else SRC_URI="https://github.com/remenoscodes/${PN}/releases/download/v${PV}/git-native-issue-v${PV}.tar.gz" KEYWORDS="~amd64" S="${WORKDIR}/${PN}-v${PV}" fi LICENSE="" SLOT="0" IUSE="" DOCS=( ISSUE-FORMAT.md README.md ) src_prepare() { default sed -i "/^prefix =/s@/usr/local@${EPREFIX}/usr@" Makefile || die } src_install() { emake DESTDIR="${D}" install{,-doc} einstalldocs }