You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-text/robodoc/robodoc-4.99.43.ebuild

35 lines
666 B

# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Automating Software Documentation"
HOMEPAGE="https://www.xs4all.nl/~rfsber/Robo/robodoc.html"
SRC_URI="https://rfsber.home.xs4all.nl/Robo/archives/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="examples"
RDEPEND=">=dev-util/ctags-5.3.1"
DEPEND="${RDEPEND}"
src_configure() {
econf \
--docdir=/usr/share/doc/${PF} \
--disable-dependency-tracking
}
src_install() {
default
insinto /usr/share/${PN}
doins Contributions/*
if use examples; then
insinto /usr/share/${PN}
doins -r Examples/PerlExample
fi
}