blob: 0b2a0e72ea02330e447238922baf1a99fb696d7b (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/NaturalDocs/NaturalDocs-1.35.ebuild,v 1.3 2007/01/19 13:55:23 masterdriverz Exp $
DESCRIPTION="Extensible, multi-language source code documentation generator"
HOMEPAGE="http://www.naturaldocs.org/"
SRC_URI="mirror://sourceforge/naturaldocs/${P}.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RDEPEND="dev-lang/perl"
DEPEND="${RDEPEND}
app-arch/unzip"
src_unpack() {
mkdir ${P} || die "could not create directory ${P}"
cd ${P}
unzip ${DISTDIR}/${P}.zip
}
src_compile() {
einfo "Nothing to compile"
}
src_install() {
# Install Perl script, modules, and other supporting stuff
insinto /usr/share/${PN}
doins -r Modules Styles Config Help Info JavaScript
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
dodoc *.txt
dohtml -r Help/*
}
|