blob: 1f551d94b0578abc50b2d4f870c941c90c44d172 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/code2html/code2html-0.9.1-r1.ebuild,v 1.5 2009/07/03 00:47:51 jer Exp $
inherit eutils
DESCRIPTION="Converts source files to colored HTML output."
HOMEPAGE="http://www.palfrader.org/code2html/"
SRC_URI="http://www.palfrader.org/code2html/all/${P}.tar.gz
mirror://gentoo/${P}-gentoo_patches.tar.bz2"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 hppa ~ppc ~ppc64 ~x86"
IUSE=""
DEPEND=""
RDEPEND=">=dev-lang/perl-5"
src_unpack() {
unpack ${A}
cd "${S}"
# Be consistent in color codes (bug #119406)
epatch "${WORKDIR}"/${P}-lowercase_color_codes.patch
# Improved C++ support (bug #133159)
epatch "${WORKDIR}"/${P}-cpp_keywords.patch
# Improved Ada support (bug #133176)
epatch "${WORKDIR}"/${P}-ada_identifiers.patch
}
src_install () {
into /usr
dobin code2html
dodoc ChangeLog CREDITS README
doman code2html.1
}
|