blob: e191496b08903564d2fd47379b9fa918d4268a81 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/highlight/highlight-2.9.ebuild,v 1.3 2009/05/04 20:24:08 ssuominen Exp $
EAPI=2
inherit eutils toolchain-funcs
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/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
IUSE="qt4"
RDEPEND="qt4? ( x11-libs/qt-gui:4
x11-libs/qt-core:4 )"
DEPEND="${RDEPEND}"
src_prepare() {
sed -i -e 's:-O2::' -e 's:CFLAGS:CXXFLAGS:g' \
-e 's:qmake-qt4:/usr/bin/qmake:' \
src/makefile || die "sed failed"
}
src_compile() {
emake -f makefile CXX="$(tc-getCXX)" \
|| die "emake failed"
if use qt4; then
emake -j1 -f makefile CXX="$(tc-getCXX)" gui \
|| die "emake gui failed"
fi
}
src_install() {
dodir /usr/bin
emake -f makefile DESTDIR="${D}" \
install || die "emake install failed"
if use qt4; then
emake -f makefile DESTDIR="${D}" \
install-gui || die "emake install-gui failed"
doicon src/gui-qt/${PN}.xpm
domenu ${PN}.desktop
fi
}
|