blob: 3faf5470b43b137317353041d4bb925d49fe23bb (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/NaturalDocs/NaturalDocs-1.40.ebuild,v 1.3 2009/05/19 15:19:18 fmccor Exp $
inherit perl-module
MY_P="${PN}-1.4"
DESCRIPTION="Extensible, multi-language source code documentation generator"
HOMEPAGE="http://www.naturaldocs.org/"
SRC_URI="mirror://sourceforge/naturaldocs/${MY_P}.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc sparc ~x86"
IUSE=""
RDEPEND="dev-lang/perl"
DEPEND="${RDEPEND}
app-arch/unzip
!<app-doc/NaturalDocs-1.40" # for dosym
S="${WORKDIR}"
src_install() {
insinto /usr/share/${PN}
doins -r Styles Info JavaScript
insinto /etc/${PN}
doins -r Config/*
dosym /etc/${PN} /usr/share/${PN}/Config
perlinfo
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 /usr/share/${PN}/${PN} /usr/bin/${PN}
# Documentation
dohtml -r Help/*
dosym /usr/share/doc/${PF}/html /usr/share/${PN}/Help
}
|