sci-visualization/gri: Removing EAPI 4 ebuild
authorGerhard Bräunlich <wippbox@gmx.net>
Sat, 14 Jan 2017 15:51:42 +0000 (16:51 +0100)
committerDavid Seifert <soap@gentoo.org>
Sun, 15 Jan 2017 10:12:24 +0000 (11:12 +0100)
Package-Manager: portage-2.3.0
Closes: https://github.com/gentoo/gentoo/pull/3469

sci-visualization/gri/Manifest
sci-visualization/gri/gri-2.12.19.ebuild [deleted file]

index 683c8207cab48c5ead5f9ac9c1602dfbaa8ae6c8..20ccfc2398672f23f8fc5e70f6f66dd0a52c7f8d 100644 (file)
@@ -1,2 +1 @@
-DIST gri-2.12.19.tar.gz 1658449 SHA256 9c1b315f309268a64c538c691644ac83665c88a65c408d427afe8ed22592b6e6 SHA512 cf4c4675b5e5d38b3ef3f6db1209bd29e08b9d5547edc245ec78bbd0f0549937c6de0298c3bd3a565206ab2f8742c45a2344b227136f13412faf9734c5bbe3c6 WHIRLPOOL 5fa851fb8f13bcc3bdbf9d07c2af75295c3014a52b65e723e8ce9c9186af5c7a6a49df45cd3a9115fce562676df1ee07c1df68c6a19fec3e4f6134a528b5fe4b
 DIST gri-2.12.23.tar.gz 1668587 SHA256 a24e703f30250ed705c0a242aa59a24748259ea7355fca52152f367f45bfd2e7 SHA512 0b028c56e9603fd00480ad7a92461c1e60f7879d89bffb5b83a2ee52c8870546e584c75478777dbb2d4934095fe9a9d4efd2aa2ff756c1860459a1e0cc0b4216 WHIRLPOOL f272827cfa5fa65604dc2a116660a78b7b0ac1df6d5ddacd943fae5ab258d05546285bffb89779aabe710c79a04d3f665b25484af3bbf5ffa1762ca3cee0c245
diff --git a/sci-visualization/gri/gri-2.12.19.ebuild b/sci-visualization/gri/gri-2.12.19.ebuild
deleted file mode 100644 (file)
index 754c65e..0000000
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=2
-
-inherit eutils elisp-common
-
-DESCRIPTION="language for scientific graphics programming"
-HOMEPAGE="http://gri.sourceforge.net/"
-SRC_URI="mirror://sourceforge/gri/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="doc emacs examples"
-RESTRICT="test"
-
-DEPEND=">=sci-libs/netcdf-3.5.0
-       virtual/latex-base
-       media-gfx/imagemagick[png]
-       app-text/ghostscript-gpl
-       emacs? ( virtual/emacs )"
-
-RDEPEND="${DEPEND}"
-
-SITEFILE="50gri-gentoo.el"
-
-src_prepare() {
-       epatch "${FILESDIR}"/${PN}-2.12.18-postscript.patch
-}
-
-src_compile() {
-       VARTEXFONTS="${T}/fonts" emake || die
-       if use emacs; then
-               elisp-compile src/*.el || die
-       fi
-}
-
-src_install() {
-       # Replace PREFIX now and correct paths in the startup message.
-       sed -e s,PREFIX/share/gri/doc/,/usr/share/doc/${P}/, -i "${S}/src/startup.msg"
-
-       einstall || die
-
-       # license text not necessary
-       rm "${D}"/usr/share/gri/doc/license.txt
-
-       # install target installs it always and in the wrong location
-       # remove it here and call elisp-install in case of USE=emacs below
-       rm -rf "${D}"/usr/share/emacs
-
-       if ! use doc; then
-               sed -e "s/Manual at.*//" -i "${D}"/usr/share/gri/startup.msg
-               rm "${D}"/usr/share/gri/doc/cmdrefcard.ps
-               rm "${D}"/usr/share/gri/doc/refcard.ps
-               rm -rf "${D}"/usr/share/gri/doc/html
-       fi
-       if ! use examples; then
-               sed -e "s/Examples at.*//" -i "${D}"/usr/share/gri/startup.msg
-               rm -rf "${D}"/usr/share/gri/doc/examples
-       fi
-
-       dodoc README
-
-       #move docs to the proper place
-       mv "${D}"/usr/share/gri/doc/* "${D}/usr/share/doc/${PF}"
-       rmdir "${D}/usr/share/gri/doc/"
-
-       if use emacs; then
-               cd src
-               elisp-install ${PN} *.{el,elc} || die
-               elisp-site-file-install "${FILESDIR}/${SITEFILE}" \
-                       || die
-       fi
-}
-
-pkg_postinst() {
-       use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-       use emacs && elisp-site-regen
-}