Files
gentoo/dev-python/cheetah-docs/cheetah-docs-0.9.16_alpha1.ebuild
Jakov Smolic e75cbd3d1d dev-python/cheetah-docs: update homepage link
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr>
Signed-off-by: Aaron Bauman <bman@gentoo.org>
2020-07-31 18:33:06 -04:00

35 lines
727 B
Bash

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils vcs-clean
DESCRIPTION="Documentation for Cheetah templates"
HOMEPAGE="https://www.cheetahtemplate.org/"
SRC_URI="mirror://sourceforge/cheetahtemplate/CheetahDocs-${PV/_alpha/a}.tgz"
IUSE=""
LICENSE="OPL"
KEYWORDS="~amd64 ~ia64 ppc x86"
SLOT="0"
S=${WORKDIR}/CheetahDocs
RESTRICT="binchecks strip"
src_install() {
ecvs_clean
dodoc *.txt TODO
dohtml -r devel_guide_html devel_guide_html_multipage \
users_guide_html users_guide_html_multipage \
OnePageTutorial.html
# Install the source code.
insinto /usr/share/doc/${PF}
doins -r devel_guide_src users_guide_src
doins *.ps *.pdf
}