diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-06-19 08:16:01 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-06-19 08:16:01 +0000 |
commit | 05d080c44948f9cec3d1859404c586a0d1d4d961 (patch) | |
tree | e3c5caa7b279ce1da523cd2d5e173ce740aea91e /app-text/highlight | |
parent | Put docs in the correct directory (#299332) (diff) | |
download | gentoo-2-05d080c44948f9cec3d1859404c586a0d1d4d961.tar.gz gentoo-2-05d080c44948f9cec3d1859404c586a0d1d4d961.tar.bz2 gentoo-2-05d080c44948f9cec3d1859404c586a0d1d4d961.zip |
Version bump.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'app-text/highlight')
-rw-r--r-- | app-text/highlight/ChangeLog | 8 | ||||
-rw-r--r-- | app-text/highlight/highlight-3.0_beta.ebuild | 63 |
2 files changed, 70 insertions, 1 deletions
diff --git a/app-text/highlight/ChangeLog b/app-text/highlight/ChangeLog index e1ab5eae748b..85affc24d26f 100644 --- a/app-text/highlight/ChangeLog +++ b/app-text/highlight/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-text/highlight # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/highlight/ChangeLog,v 1.32 2010/06/08 01:26:55 abcd Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/highlight/ChangeLog,v 1.33 2010/06/19 08:16:01 ssuominen Exp $ + +*highlight-3.0_beta (19 Jun 2010) + + 19 Jun 2010; Samuli Suominen <ssuominen@gentoo.org> + +highlight-3.0_beta.ebuild: + Version bump. 08 Jun 2010; Jonathan Callen <abcd@gentoo.org> highlight-2.9.ebuild: Fix bug 323103 by setting PREFIX="${EPREFIX}/usr" instead of just diff --git a/app-text/highlight/highlight-3.0_beta.ebuild b/app-text/highlight/highlight-3.0_beta.ebuild new file mode 100644 index 000000000000..02e29194fba7 --- /dev/null +++ b/app-text/highlight/highlight-3.0_beta.ebuild @@ -0,0 +1,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 +} |