You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# Copyright 1999-2013 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
EAPI=4
|
|
|
|
|
|
|
|
inherit toolchain-funcs eutils qt4-r2
|
|
|
|
|
|
|
|
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-3"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
|
|
|
|
IUSE="examples qt4"
|
|
|
|
|
|
|
|
RDEPEND="dev-lang/lua
|
|
|
|
qt4? (
|
|
|
|
dev-qt/qtgui:4
|
|
|
|
dev-qt/qtcore:4
|
|
|
|
)"
|
|
|
|
DEPEND="${RDEPEND}
|
|
|
|
dev-libs/boost"
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
epatch "${FILESDIR}"/${P}-parallel-make.patch
|
|
|
|
|
|
|
|
sed -i -e "/LSB_DOC_DIR/s:doc/${PN}:doc/${PF}:" \
|
|
|
|
src/core/datadir.cpp || die
|
|
|
|
}
|
|
|
|
|
|
|
|
src_compile() {
|
|
|
|
myhlopts=(
|
|
|
|
"CXX=$(tc-getCXX)"
|
|
|
|
"AR=$(tc-getAR)"
|
|
|
|
"LDFLAGS=${LDFLAGS}"
|
|
|
|
"CFLAGS=${CXXFLAGS}"
|
|
|
|
"DESTDIR=${ED}"
|
|
|
|
"PREFIX=${EPREFIX}/usr"
|
|
|
|
"doc_dir=${EPREFIX}/usr/share/doc/${PF}/"
|
|
|
|
"conf_dir=${EPREFIX}/etc/highlight/"
|
|
|
|
)
|
|
|
|
|
|
|
|
emake -f makefile "${myhlopts[@]}"
|
|
|
|
if use qt4 ; then
|
|
|
|
cd src/gui-qt
|
|
|
|
eqmake4 'DEFINES+=DATA_DIR=\\\"/usr/share/${PN}/\\\" CONFIG_DIR=\\\"/etc/${PN}/\\\" DOC_DIR=\\\"/usr/share/doc/${PF}/\\\"'
|
|
|
|
emake
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
emake -f makefile "${myhlopts[@]}" install
|
|
|
|
use qt4 && emake -f makefile "${myhlopts[@]}" install-gui
|
|
|
|
|
|
|
|
if use examples ; then
|
|
|
|
docompress -x /usr/share/doc/${PF}/examples
|
|
|
|
else
|
|
|
|
rm -rf "${ED}"/usr/share/doc/${PF}/examples
|
|
|
|
fi
|
|
|
|
}
|