mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
Signed-off-by: Matt Turner <mattst88@gentoo.org> Part-of: https://codeberg.org/gentoo/gentoo/pulls/989 Merges: https://codeberg.org/gentoo/gentoo/pulls/989
35 lines
797 B
Bash
35 lines
797 B
Bash
# Copyright 1999-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit go-module
|
|
|
|
DESCRIPTION="fast-export history from a CVS repository or RCS collection"
|
|
HOMEPAGE="http://www.catb.org/~esr/cvs-fast-export/"
|
|
SRC_URI="
|
|
http://www.catb.org/~esr/${PN}/${P}.tar.gz
|
|
https://distfiles.gentoo.org/pub/dev/mattst88@gentoo.org/${P}-deps.tar.xz
|
|
"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
RESTRICT="test"
|
|
|
|
BDEPEND="dev-ruby/asciidoctor"
|
|
|
|
src_compile() {
|
|
# '.adoc.html' rules can't be executed in parallel
|
|
# as they reuse the same 'docbook-xsl.css' file name.
|
|
emake -j1 html
|
|
emake man
|
|
ego build -ldflags "-X main.version=${PV}" -o ${PN} .
|
|
}
|
|
|
|
src_install() {
|
|
dobin ${PN}
|
|
doman ${PN}.1
|
|
dodoc {NEWS,README,TODO,hacking,reporting-bugs}.adoc
|
|
}
|