blob: 206a80678ffcf20c81792a7b5022473dd8b7ee32 (
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
|
# Copyright 2022-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="GNU C Language Intro and Reference Manual"
HOMEPAGE="https://savannah.gnu.org/projects/c-intro-and-ref/"
if [[ ${PV} == *9999 ]] ; then
EGIT_REPO_URI="https://git.savannah.gnu.org/git/c-intro-and-ref.git"
inherit git-r3
else
MY_COMMIT="36a1041cfa542b8c00aa6daad2624797164d87f4"
SRC_URI="https://git.savannah.nongnu.org/cgit/c-intro-and-ref.git/snapshot/c-intro-and-ref-${MY_COMMIT}.tar.gz"
S="${WORKDIR}"/c-intro-and-ref-${MY_COMMIT}
KEYWORDS="~amd64"
fi
LICENSE="FDL-1.3+"
SLOT="0"
IUSE="pdf"
BDEPEND="
sys-apps/texinfo
pdf? (
app-text/ghostscript-gpl
app-text/texlive-core
)
"
src_prepare() {
default
eautoreconf
}
src_compile() {
emake info html $(usev pdf 'pdf')
}
src_install() {
emake DESTDIR="${D}" install-info install-html $(usev pdf 'install-pdf')
}
|