diff options
author | Gerhard Bräunlich <wippbox@gmx.net> | 2017-01-14 16:50:12 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-01-15 11:12:20 +0100 |
commit | c1834e76c803bf29a3f0814a14df1a6d887e7774 (patch) | |
tree | db63b33c1256545ace30753ab10985b6cd5713cf /sci-visualization | |
parent | sci-visualization/ggobi: Removing EAPI < 5 ebuilds (diff) | |
download | gentoo-c1834e76c803bf29a3f0814a14df1a6d887e7774.tar.gz gentoo-c1834e76c803bf29a3f0814a14df1a6d887e7774.tar.bz2 gentoo-c1834e76c803bf29a3f0814a14df1a6d887e7774.zip |
sci-visualization/epix: Removing EAPI 4 ebuild
Package-Manager: portage-2.3.0
Closes: https://github.com/gentoo/gentoo/pull/3468
Diffstat (limited to 'sci-visualization')
-rw-r--r-- | sci-visualization/epix/Manifest | 1 | ||||
-rw-r--r-- | sci-visualization/epix/epix-1.2.10.ebuild | 67 |
2 files changed, 0 insertions, 68 deletions
diff --git a/sci-visualization/epix/Manifest b/sci-visualization/epix/Manifest index 5289ef810b30..24bfead2392d 100644 --- a/sci-visualization/epix/Manifest +++ b/sci-visualization/epix/Manifest @@ -1,2 +1 @@ -DIST epix-1.2.10_withpdf.tar.bz2 1704245 SHA256 ff211a4a0b946a7bff81a1e96dadefbcccd8c7c92d04fbf739b7ff55ba534c5f SHA512 031d9f514217ff209691c2f6eed6fe91551f97443d12d7a6aff9fba8edbefda11735175ff60471f34247daf7d4d8abd1d846825ec0a93d28330799aec48deeac WHIRLPOOL 7bdc28ae2b1dd575c2b5a045c584e85ac06aacceb0ec5a06d99249c10af69c8f258eaf81b17f7853cb82a50bb2809c8769c059f5805a5b09f7f8bdacdf8fa187 DIST epix-1.2.11_withpdf.tar.bz2 1709429 SHA256 e6186a5564e26195887dadd94dba9c0ba596a1402cb5b9866dea10abc66ef4d7 SHA512 16d0edf13711e469a13faba83d47fbab983277a95cfed0e343089258da0b8a56104af9fc217aaa70928c50f10e7d152df93c3638cf2a65a2833142645a829a45 WHIRLPOOL 1540b35b87f7c663a37b45a8c33e3d9b93f07f10d6c54da7df4262b1a685be30ec65ddebd5c6d7030dd3f1c86a990223db05cfc5f93840265b56f902f085536a diff --git a/sci-visualization/epix/epix-1.2.10.ebuild b/sci-visualization/epix/epix-1.2.10.ebuild deleted file mode 100644 index 0c629d22301e..000000000000 --- a/sci-visualization/epix/epix-1.2.10.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 - -inherit elisp-common bash-completion-r1 autotools eutils - -DESCRIPTION="2- and 3-D plotter for creating images (to be used in LaTeX)" -HOMEPAGE="http://mathcs.holycross.edu/~ahwang/current/ePiX.html" -SRC_URI="http://mathcs.holycross.edu/~ahwang/epix/${P}_withpdf.tar.bz2" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux" -IUSE="doc emacs examples" - -DEPEND=" - virtual/latex-base - dev-texlive/texlive-pstricks - dev-texlive/texlive-pictures - dev-texlive/texlive-latexextra - dev-tex/xcolor - emacs? ( virtual/emacs )" -RDEPEND="${DEPEND}" -SITEFILE=50${PN}-gentoo.el - -src_prepare() { - epatch "${FILESDIR}"/${PN}-1.2.10-autotools.patch - eautoreconf -} - -src_configure() { - econf \ - --docdir="${EPREFIX}/usr/share/doc/${PF}" \ - --disable-epix-el -} - -src_install() { - default - if use emacs; then - # do compilation here as the make install target will - # create the .el file - elisp-compile *.el || die "elisp-compile failed!" - elisp-install ${PN} *.elc *.el || die "elisp-install failed!" - elisp-site-file-install "${FILESDIR}/${SITEFILE}" - fi - newbashcomp bash_completions epix - bashcomp_alias epix flix elaps laps - if use doc; then - insinto /usr/share/doc/${PF} - doins doc/*gz - fi - if use examples; then - cd samples - insinto /usr/share/doc/${PF}/examples - doins *.xp *.flx *c *h README - fi -} - -pkg_postinst() { - use emacs && elisp-site-regen -} - -pkg_postrm() { - use emacs && elisp-site-regen -} |