blob: abce092aa5b5b885c8ba2cd554571ae9e801745f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
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"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
BDEPEND="app-text/asciidoc"
RESTRICT=test # upstream does not ship some tests in tarball
src_prepare() {
default
tc-export CC
export prefix="${EPREFIX}"/usr
# respect CC, CFLAGS and LDFLAGS
sed \
-e 's/cc /$(CC) $(LDFLAGS) /' \
-e 's/^CFLAGS += -O/#&/' \
-e 's/CFLAGS=/CFLAGS+=/' \
-i Makefile || die
}
src_compile() {
# '.adoc.html' rules can't be executed in parallel
# as they reuse the same 'docbook-xsl.css' file name.
emake -j1 html
# Allow full parallelism for the rest
emake
}
src_install() {
default
dodoc README.adoc
}
|