mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-02 23:48:17 -07:00
52 lines
1.3 KiB
Bash
52 lines
1.3 KiB
Bash
# Copyright 2025-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# Autogenerated by pycargoebuild 0.15.0
|
|
|
|
EAPI=8
|
|
|
|
RUST_MIN_VER="1.85"
|
|
|
|
inherit cargo flag-o-matic
|
|
|
|
DESCRIPTION="Stack-based patch management for Git"
|
|
HOMEPAGE="https://stacked-git.github.io/"
|
|
SRC_URI=" https://github.com/stacked-git/stgit/releases/download/v${PV}/${P}.tar.gz"
|
|
SRC_URI+=" https://github.com/gentoo-crate-dist/stgit/releases/download/v${PV}/${P}-crates.tar.xz"
|
|
|
|
LICENSE="GPL-2"
|
|
# Dependent crate licenses
|
|
LICENSE+=" Apache-2.0 BSD MIT Unicode-3.0 ZLIB"
|
|
SLOT="0/2"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
|
|
IUSE="doc"
|
|
|
|
DEPEND="doc? ( app-text/asciidoc )"
|
|
|
|
# rust does not use *FLAGS from make.conf, silence portage warning
|
|
# update with proper path to binaries this crate installs, omit leading /
|
|
QA_FLAGS_IGNORED="usr/bin/stg"
|
|
|
|
src_configure() {
|
|
filter-lto #bug 897692
|
|
}
|
|
|
|
src_compile() {
|
|
cargo_src_compile
|
|
emake completion
|
|
emake contrib
|
|
use doc && emake doc
|
|
}
|
|
|
|
src_install() {
|
|
cargo_src_install
|
|
emake DESTDIR="${D}" prefix="/usr" install-completion
|
|
emake DESTDIR="${D}" prefix="/usr" install-contrib
|
|
if use doc; then
|
|
emake DESTDIR="${D}" prefix="/usr" install-man
|
|
emake DESTDIR="${D}" prefix="/usr" \
|
|
htmldir="/usr/share/doc/${PF}" \
|
|
install-html
|
|
fi
|
|
}
|