blob: 28076fe8ec0b42447f0ce708265b22f32e4caa7f (
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
52
53
54
55
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.0.ebuild,v 1.13 2009/08/09 16:31:01 armin76 Exp $
NEED_PYTHON=2.3
inherit distutils
MY_PN="Pygments"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Pygments is a syntax highlighting package written in Python."
HOMEPAGE="http://pygments.org/"
SRC_URI="http://cheeseshop.python.org/packages/source/P/${MY_PN}/${MY_P}.tar.gz"
LICENSE="BSD"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
SLOT="0"
IUSE="doc test"
DEPEND="test? ( media-fonts/ttf-bitstream-vera
dev-python/nose )"
RDEPEND="dev-python/setuptools"
S="${WORKDIR}/${MY_P}"
DOCS="CHANGES"
src_unpack() {
distutils_src_unpack
# Make lexer recognize ebuilds as bash input
sed -i \
-e "/\(BashLexer\|aliases\)/s/\('sh'\)/\1, 'ebuild', 'eclass'/" \
-e "/\(BashLexer\|filenames\)/s/\('\*\.sh'\)/\1, '*.ebuild', '*.eclass'/" \
${PN}/lexers/_mapping.py ${PN}/lexers/other.py ||\
die "sed failed."
#Our usual PYTHONPATH manipulation trick doesn't work, it will try to run
#tests on the installed version:
if use test ; then
sed -i \
-e "s/import pygments/sys.path.insert(0, '.');import pygments/" \
tests/run.py || \
die "sed failed"
fi
}
src_install(){
distutils_src_install
use doc && dohtml -r docs/build/
}
src_test() {
"${python}" tests/run.py || die "tests failed"
}
|