# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-text/highlight/highlight-3.3.ebuild,v 1.2 2011/02/09 11:48:50 radhermit Exp $ EAPI=4 inherit toolchain-funcs eutils 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="~amd64 ~hppa ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" IUSE="examples qt4" DEPEND="dev-lang/lua dev-libs/boost qt4? ( x11-libs/qt-gui:4 )" RDEPEND="${DEPEND}" 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() { epatch "${FILESDIR}"/${P}-parallel-make.patch 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[@]}" use qt4 && emake -f makefile "${myhlopts[@]}" gui } 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 "${D}"/usr/share/doc/${PF}/examples fi }