diff options
author | Andrey Grozin <grozin@gentoo.org> | 2012-03-09 08:24:20 +0000 |
---|---|---|
committer | Andrey Grozin <grozin@gentoo.org> | 2012-03-09 08:24:20 +0000 |
commit | ac1d466752da75fa7fe3a246525ea5e0afda25d4 (patch) | |
tree | 080e5bd8fb01da6e0a5702a99f5acc191a310947 /sci-visualization | |
parent | Bump for #404149 (diff) | |
download | gentoo-2-ac1d466752da75fa7fe3a246525ea5e0afda25d4.tar.gz gentoo-2-ac1d466752da75fa7fe3a246525ea5e0afda25d4.tar.bz2 gentoo-2-ac1d466752da75fa7fe3a246525ea5e0afda25d4.zip |
Version bump, closing #407389
(Portage version: 2.2.0_alpha90/cvs/Linux i686)
Diffstat (limited to 'sci-visualization')
-rw-r--r-- | sci-visualization/gle/ChangeLog | 7 | ||||
-rw-r--r-- | sci-visualization/gle/gle-4.2.4b.ebuild | 107 |
2 files changed, 113 insertions, 1 deletions
diff --git a/sci-visualization/gle/ChangeLog b/sci-visualization/gle/ChangeLog index 70f42b9e32c1..8b8d7b1580e8 100644 --- a/sci-visualization/gle/ChangeLog +++ b/sci-visualization/gle/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-visualization/gle # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gle/ChangeLog,v 1.17 2012/03/08 11:27:27 grozin Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gle/ChangeLog,v 1.18 2012/03/09 08:24:20 grozin Exp $ + +*gle-4.2.4b (09 Mar 2012) + + 09 Mar 2012; Andrey Grozin <grozin@gentoo.org> +gle-4.2.4b.ebuild: + Version bump, closing #407389 08 Mar 2012; Andrey Grozin <grozin@gentoo.org> -gle-4.2.3b.ebuild, -files/gle-4.2.3b-overflows.patch, -files/gle-4.2.3b-parallel.patch, diff --git a/sci-visualization/gle/gle-4.2.4b.ebuild b/sci-visualization/gle/gle-4.2.4b.ebuild new file mode 100644 index 000000000000..663b8331fb18 --- /dev/null +++ b/sci-visualization/gle/gle-4.2.4b.ebuild @@ -0,0 +1,107 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gle/gle-4.2.4b.ebuild,v 1.1 2012/03/09 08:24:20 grozin Exp $ + +EAPI=4 +inherit eutils elisp-common qt4-r2 flag-o-matic autotools + +DESCRIPTION="Graphics Layout Engine" +HOMEPAGE="http://glx.sourceforge.net/" +MY_P=${PN}-graphics-${PV} +MAN_V=4.2.2 +SRC_URI="mirror://sourceforge/glx/${MY_P}f-src.tar.gz + doc? ( mirror://sourceforge/glx/${PN}-manual-${MAN_V}.pdf + mirror://sourceforge/glx/GLEusersguide.pdf )" +SLOT="0" +LICENSE="BSD-2 emacs? ( GPL-2 ) qt4? ( GPL-2 )" +IUSE="X qt4 jpeg png tiff doc emacs vim-syntax" +KEYWORDS="~amd64 ~x86" + +DEPEND="sys-libs/ncurses + X? ( x11-libs/libX11 ) + qt4? ( x11-libs/qt-opengl:4 ) + jpeg? ( virtual/jpeg ) + png? ( media-libs/libpng ) + tiff? ( media-libs/tiff ) + emacs? ( virtual/emacs )" + +RDEPEND="${DEPEND} + app-text/ghostscript-gpl + virtual/latex-base + vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )" + +S="${WORKDIR}"/${MY_P} + +src_prepare() { + epatch "${FILESDIR}"/${P}-parallel.patch + eaclocal + eautoconf +} + +src_configure() { + # CPPFLAGS are understood as C++ flags + append-cppflags ${CXXFLAGS} + econf \ + --without-rpath \ + --with-manip \ + $(use_with qt4 qt /usr) \ + $(use_with X x) \ + $(use_with jpeg) \ + $(use_with png) \ + $(use_with tiff) +} + +src_compile() { + emake + if use emacs; then + cd contrib/editors/highlighting + mv ${PN}-emacs.el ${PN}-mode.el + elisp-compile ${PN}-mode.el || die + fi +} + +src_install() { + # -jN failed to install some data files + emake -j1 DESTDIR="${D}" install + rmdir "${D}"/usr/share/doc/gle-graphics || die "rmdir gle-graphics failed" + dodoc README.txt + + if use qt4; then + newicon src/gui/images/gle_icon.png gle.png + make_desktop_entry qgle GLE gle + newdoc src/gui/readme.txt gui_readme.txt + fi + + if use doc; then + insinto /usr/share/doc/${PF} + doins "${DISTDIR}"/${PN}-manual-${MAN_V}.pdf \ + "${DISTDIR}"/GLEusersguide.pdf + fi + + if use emacs; then + elisp-install ${PN} contrib/editors/highlighting/gle-mode.{el,elc} || die + elisp-site-file-install "${FILESDIR}"/64gle-gentoo.el || die + fi + + if use vim-syntax ; then + dodir /usr/share/vim/vimfiles/ftplugins \ + /usr/share/vim/vimfiles/indent \ + /usr/share/vim/vimfiles/syntax + cd contrib/editors/highlighting/vim + chmod 644 ftplugin/* indent/* syntax/* + insinto /usr/share/vim/vimfiles/ftplugins + doins ftplugin/* + insinto /usr/share/vim/vimfiles/indent + doins indent/* + insinto /usr/share/vim/vimfiles/syntax + doins syntax/* + fi +} + +pkg_postinst() { + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +} |