gentoo-ebuilds/app-doc/gnu-c-intro-ref/gnu-c-intro-ref-0.1.ebuild
Sam James e511af954e
app-doc/gnu-c-intro-ref: add 0.1
Signed-off-by: Sam James <sam@gentoo.org>
2025-05-28 04:35:43 +01:00

53 lines
1.2 KiB
Bash

# Copyright 2022-2025 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
elif [[ ${PV} != *_p* ]] ; then
SRC_URI="mirror://gnu/c-intro-and-ref/c-intro-and-ref-${PV}.tar.gz"
S="${WORKDIR}"/c-intro-and-ref-${PV}
else
MY_COMMIT="62962013107481127176ef04d69826e41f51313c"
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}
fi
LICENSE="FDL-1.3+"
SLOT="0"
IUSE="pdf"
if [[ ${PV} != 9999 ]] ; then
KEYWORDS="~amd64"
fi
BDEPEND="
sys-apps/texinfo
pdf? (
app-text/ghostscript-gpl
app-text/texlive-core
virtual/texi2dvi
)
"
src_prepare() {
default
# We don't need it for releases but they're infrequent, so let's
# not bother conditionalising it (as we often use snapshots).
eautoreconf
}
src_compile() {
emake info html $(usev pdf 'pdf')
}
src_install() {
emake DESTDIR="${D}" install-info install-html $(usev pdf 'install-pdf')
}