diff options
author | Tim Harder <radhermit@gentoo.org> | 2012-03-01 02:57:08 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2012-03-01 02:57:08 +0000 |
commit | 9128072c67230157b6b9e1113f6a3f57a1a9f0a7 (patch) | |
tree | 7aea073a359093dc49219329b4d15521dcfef8f5 /app-text/highlight | |
parent | Version bump. (diff) | |
download | gentoo-2-9128072c67230157b6b9e1113f6a3f57a1a9f0a7.tar.gz gentoo-2-9128072c67230157b6b9e1113f6a3f57a1a9f0a7.tar.bz2 gentoo-2-9128072c67230157b6b9e1113f6a3f57a1a9f0a7.zip |
Version bump.
(Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
Diffstat (limited to 'app-text/highlight')
-rw-r--r-- | app-text/highlight/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/highlight/highlight-3.8.ebuild | 63 |
2 files changed, 69 insertions, 1 deletions
diff --git a/app-text/highlight/ChangeLog b/app-text/highlight/ChangeLog index ded6770fa45f..032d71386a9a 100644 --- a/app-text/highlight/ChangeLog +++ b/app-text/highlight/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/highlight # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/highlight/ChangeLog,v 1.50 2012/01/28 05:07:37 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/highlight/ChangeLog,v 1.51 2012/03/01 02:57:08 radhermit Exp $ + +*highlight-3.8 (01 Mar 2012) + + 01 Mar 2012; Tim Harder <radhermit@gentoo.org> +highlight-3.8.ebuild: + Version bump. 28 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> highlight-3.7.ebuild: Keyword ~ppc64 wrt #399545 diff --git a/app-text/highlight/highlight-3.8.ebuild b/app-text/highlight/highlight-3.8.ebuild new file mode 100644 index 000000000000..6b9889fe803d --- /dev/null +++ b/app-text/highlight/highlight-3.8.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/highlight/highlight-3.8.ebuild,v 1.1 2012/03/01 02:57:08 radhermit Exp $ + +EAPI=4 + +inherit toolchain-funcs 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 ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="examples qt4" + +DEPEND="dev-lang/lua + dev-libs/boost + qt4? ( x11-libs/qt-gui:4 + x11-libs/qt-core:4 )" +RDEPEND="${DEPEND}" + +pkg_setup() { + myhlopts=( + "CXX=$(tc-getCXX)" + "AR=$(tc-getAR)" + "LDFLAGS=${LDFLAGS}" + "CFLAGS=${CXXFLAGS}" + "DESTDIR=${D}" + "PREFIX=${EPREFIX}/usr" + "LUA_CFLAGS=" + "HL_CONFIG_DIR=${EPREFIX}/etc/highlight/" + "HL_DATA_DIR=${EPREFIX}/usr/share/highlight/" + "doc_dir=${EPREFIX}/usr/share/doc/${PF}/" + "conf_dir=${EPREFIX}/etc/highlight/" + ) +} + +src_prepare() { + sed -i -e "/LSB_DOC_DIR/s:doc/${PN}:doc/${PF}:" \ + src/core/datadir.cpp || die +} + +src_compile() { + emake -f makefile "${myhlopts[@]}" + if use qt4 ; then + cd src/gui-qt + eqmake4 'DEFINES+=DATA_DIR=\\\"'"${EPREFIX}"'/usr/share/${PN}/\\\" CONFIG_DIR=\\\"'"${EPREFIX}"'/etc/${PN}/\\\" DOC_DIR=\\\"'"${EPREFIX}"'/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 +} |