blob: 02a27b21e5a24a0e0e1c9d47d847a703ae1eab0d (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-0.9.ebuild,v 1.9 2008/07/23 17:36:04 mr_bones_ Exp $
NEED_PYTHON=2.3
inherit eutils 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 ~hppa ~ia64 ~ppc ppc64 ~sparc ~x86"
SLOT="0"
IUSE="doc test"
DEPEND="test? ( media-fonts/ttf-bitstream-vera )"
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"
}
|