Gentoo Archives: gentoo-commits

From: "Markus Dittrich (markusle)" <markusle@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-visualization/epix: ChangeLog epix-1.2.4.ebuild epix-1.0.7.ebuild epix-1.0.24.ebuild
Date: Sun, 15 Jun 2008 10:55:33
Message-Id: E1K7ptP-0000Qw-K1@stork.gentoo.org
1 markusle 08/06/15 10:55:27
2
3 Modified: ChangeLog
4 Added: epix-1.2.4.ebuild
5 Removed: epix-1.0.7.ebuild epix-1.0.24.ebuild
6 Log:
7 Version bump (fixes gcc4.3 issues reported in #226965) and removed old ebuilds.
8 (Portage version: 2.1.4.4)
9
10 Revision Changes Path
11 1.26 sci-visualization/epix/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/epix/ChangeLog?rev=1.26&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/epix/ChangeLog?rev=1.26&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/epix/ChangeLog?r1=1.25&r2=1.26
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/epix/ChangeLog,v
20 retrieving revision 1.25
21 retrieving revision 1.26
22 diff -u -r1.25 -r1.26
23 --- ChangeLog 17 Mar 2008 02:19:29 -0000 1.25
24 +++ ChangeLog 15 Jun 2008 10:55:27 -0000 1.26
25 @@ -1,6 +1,13 @@
26 # ChangeLog for sci-visualization/epix
27 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/epix/ChangeLog,v 1.25 2008/03/17 02:19:29 ken69267 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/epix/ChangeLog,v 1.26 2008/06/15 10:55:27 markusle Exp $
30 +
31 +*epix-1.2.4 (15 Jun 2008)
32 +
33 + 15 Jun 2008; Markus Dittrich <markusle@g.o> -epix-1.0.7.ebuild,
34 + -epix-1.0.24.ebuild, +epix-1.2.4.ebuild:
35 + Version bump (fixes gcc4.3 issues reported in #226965) and removed
36 + old ebuilds.
37
38 17 Mar 2008; Kenneth Prugh <ken69267@g.o> epix-1.2.1.ebuild:
39 amd64 stable, bug #205779
40
41
42
43 1.1 sci-visualization/epix/epix-1.2.4.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/epix/epix-1.2.4.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/epix/epix-1.2.4.ebuild?rev=1.1&content-type=text/plain
47
48 Index: epix-1.2.4.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sci-visualization/epix/epix-1.2.4.ebuild,v 1.1 2008/06/15 10:55:27 markusle Exp $
53
54 inherit elisp-common flag-o-matic toolchain-funcs bash-completion
55
56 DESCRIPTION="2- and 3-D plotter for creating images (to be used in LaTeX)"
57 HOMEPAGE="http://mathcs.holycross.edu/~ahwang/current/ePiX.html"
58 SRC_URI="http://mathcs.holycross.edu/~ahwang/epix/${P}_withpdf.tar.bz2"
59 LICENSE="GPL-2"
60
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 IUSE="emacs"
64
65 DEPEND="virtual/latex-base
66 || ( ( dev-texlive/texlive-pstricks
67 dev-texlive/texlive-pictures
68 dev-texlive/texlive-latexextra
69 dev-tex/xcolor )
70 app-text/tetex
71 app-text/ptex )
72 emacs? ( virtual/emacs )"
73
74 SITEFILE=50${PN}-gentoo.el
75
76 src_unpack() {
77 unpack ${A}
78 cd "${S}"
79 epatch "${FILESDIR}"/${PN}-1.1.17-doc-gentoo.patch
80 sed -e 's:doc/${PACKAGE_TARNAME}:doc/${PACKAGE_TARNAME}-${PACKAGE_VERSION}:' \
81 -i configure || die "sed on configure failed"
82 }
83
84 src_compile() {
85 econf --disable-epix-el || die "configure failed"
86 emake || die "compile failed"
87 }
88
89 src_install() {
90 emake DESTDIR="${D}" install || die "install failed"
91 if use emacs; then
92 # do compilation here as the make install target will
93 # create the .el file
94 elisp-compile *.el || die "elisp-compile failed!"
95 elisp-install ${PN} *.elc *.el || die "elisp-install failed!"
96 elisp-site-file-install "${FILESDIR}/${SITEFILE}"
97 fi
98 dobashcompletion bash_completions \
99 || die "install of bash completions failed"
100 }
101
102 pkg_postinst() {
103 use emacs && elisp-site-regen
104 }
105
106 pkg_postrm() {
107 use emacs && elisp-site-regen
108 }
109
110
111
112 --
113 gentoo-commits@l.g.o mailing list