Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-visualization/epix/
Date: Sun, 01 Sep 2019 15:26:00
Message-Id: 1567351551.112d93e221777c61fd0cefa6ff9fa539497bc1fc.zlogene@gentoo
1 commit: 112d93e221777c61fd0cefa6ff9fa539497bc1fc
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 1 15:25:26 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 1 15:25:51 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=112d93e2
7
8 sci-visualization/epix: Drop old
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.16
11 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
12
13 sci-visualization/epix/epix-1.2.11.ebuild | 66 -------------------------------
14 1 file changed, 66 deletions(-)
15
16 diff --git a/sci-visualization/epix/epix-1.2.11.ebuild b/sci-visualization/epix/epix-1.2.11.ebuild
17 deleted file mode 100644
18 index 7f6af033a27..00000000000
19 --- a/sci-visualization/epix/epix-1.2.11.ebuild
20 +++ /dev/null
21 @@ -1,66 +0,0 @@
22 -# Copyright 1999-2014 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -inherit elisp-common bash-completion-r1 autotools eutils
28 -
29 -DESCRIPTION="2- and 3-D plotter for creating images (to be used in LaTeX)"
30 -HOMEPAGE="http://mathcs.holycross.edu/~ahwang/current/ePiX.html"
31 -SRC_URI="http://mathcs.holycross.edu/~ahwang/epix/${P}_withpdf.tar.bz2"
32 -
33 -SLOT="0"
34 -LICENSE="GPL-2"
35 -KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
36 -IUSE="doc emacs examples"
37 -
38 -DEPEND="
39 - virtual/latex-base
40 - dev-texlive/texlive-pstricks
41 - dev-texlive/texlive-pictures
42 - dev-texlive/texlive-latexextra
43 - dev-tex/xcolor
44 - emacs? ( virtual/emacs )"
45 -RDEPEND="${DEPEND}"
46 -SITEFILE=50${PN}-gentoo.el
47 -
48 -src_prepare() {
49 - epatch "${FILESDIR}"/${PN}-1.2.10-autotools.patch
50 - eautoreconf
51 -}
52 -
53 -src_configure() {
54 - econf \
55 - --docdir="${EPREFIX}/usr/share/doc/${PF}" \
56 - --disable-epix-el
57 -}
58 -
59 -src_install() {
60 - default
61 - if use emacs; then
62 - # do compilation here as the make install target will
63 - # create the .el file
64 - elisp-compile *.el || die "elisp-compile failed!"
65 - elisp-install ${PN} *.elc *.el || die "elisp-install failed!"
66 - elisp-site-file-install "${FILESDIR}/${SITEFILE}"
67 - fi
68 - newbashcomp bash_completions epix
69 - bashcomp_alias epix flix elaps laps
70 - if use doc; then
71 - insinto /usr/share/doc/${PF}
72 - doins doc/*gz
73 - fi
74 - if use examples; then
75 - cd samples
76 - insinto /usr/share/doc/${PF}/examples
77 - doins *.xp *.flx *c *h README
78 - fi
79 -}
80 -
81 -pkg_postinst() {
82 - use emacs && elisp-site-regen
83 -}
84 -
85 -pkg_postrm() {
86 - use emacs && elisp-site-regen
87 -}