blob: 02e29194fba7983cedec5fddeaaa2d641808c764 (
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
56
57
58
59
60
61
62
63
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/highlight/highlight-3.0_beta.ebuild,v 1.1 2010/06/19 08:16:01 ssuominen Exp $
EAPI=3
inherit toolchain-funcs
MY_P=${P/_/-}
DESCRIPTION="converts source code to formatted text ((X)HTML, RTF, (La)TeX, XSL-FO, XML) with syntax highlight"
HOMEPAGE="http://www.andre-simon.de/"
SRC_URI="http://www.andre-simon.de/zip/${MY_P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="qt4"
DEPEND="dev-lang/lua
qt4? ( x11-libs/qt-gui:4 )"
S=${WORKDIR}/${MY_P}
pkg_setup() {
myhlopts=(
"CXX=$(tc-getCXX)"
"DESTDIR=${D}"
"PREFIX=${EPREFIX}/usr"
"doc_dir=${EPREFIX}/usr/share/doc/${PF}/"
"conf_dir=${EPREFIX}/etc/highlight/"
)
}
src_prepare() {
sed -i \
-e 's:dir}plugins:dir}web_plugins:' \
makefile || die
sed -i \
-e "/LSB_DOC_DIR/s:doc/${PN}:doc/${PF}:" \
src/core/datadir.cpp || die
sed -i \
-e 's:-O2::' \
-e 's:CFLAGS:CXXFLAGS:g' \
src/makefile || die
}
src_compile() {
emake -f makefile "${myhlopts[@]}" || die
if use qt4; then
emake -j1 -f makefile "${myhlopts[@]}" gui || die
fi
}
src_install() {
emake -f makefile "${myhlopts[@]}" install || die
if use qt4; then
emake -f makefile "${myhlopts[@]}" install-gui || die
fi
}
|