blob: 0ea22a3cf64f02f8ee29f9605c0216f858e65843 (
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
47
48
49
50
51
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit perl-module
DESCRIPTION="Extensible, multi-language source code documentation generator"
HOMEPAGE="http://www.naturaldocs.org/"
SRC_URI="https://downloads.sourceforge.net/naturaldocs/${P}.zip"
S="${WORKDIR}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
BDEPEND="app-arch/unzip"
src_install() {
insinto /usr/share/${PN}
doins -r Styles Info JavaScript
insinto /etc/${PN}
doins -r Config/.
dosym ../../../etc/${PN} /usr/share/${PN}/Config
perl_set_version
insinto ${VENDOR_LIB}
doins -r Modules/NaturalDocs
dodir /usr/share/${PN}/Modules
dosym ../../../..${VENDOR_LIB}/NaturalDocs /usr/share/${PN}/Modules/NaturalDocs
exeinto /usr/share/${PN}
doexe ${PN}
# Symlink the Perl script into /usr/bin
dodir /usr/bin
dosym ../share/${PN}/${PN} /usr/bin/${PN}
# Documentation
dodoc -r Help/.
dosym ../doc/${PF}/html /usr/share/${PN}/Help
}
pkg_preinst() {
if [[ -e /usr/share/${PN}/Config && ! -L /usr/share/${PN}/Config ]] ; then
mkdir -p /etc/${PN}
mv /usr/share/${PN}/Config/* /etc/${PN}/
rm -rf /usr/share/${PN}/Config
fi
}
|