Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-mathematics/octave-epstk: octave-epstk-2.4.ebuild ChangeLog
Date: Wed, 06 Jun 2012 21:37:11
Message-Id: 20120606213659.BDE062004B@flycatcher.gentoo.org
1 bicatali 12/06/06 21:36:59
2
3 Modified: ChangeLog
4 Added: octave-epstk-2.4.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.10.63/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 sci-mathematics/octave-epstk/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave-epstk/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave-epstk/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave-epstk/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/octave-epstk/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 9 Mar 2011 17:57:46 -0000 1.1
24 +++ ChangeLog 6 Jun 2012 21:36:59 -0000 1.2
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sci-mathematics/octave-epstk
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave-epstk/ChangeLog,v 1.1 2011/03/09 17:57:46 bicatali Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave-epstk/ChangeLog,v 1.2 2012/06/06 21:36:59 bicatali Exp $
31 +
32 +*octave-epstk-2.4 (06 Jun 2012)
33 +
34 + 06 Jun 2012; Sébastien Fabbro <bicatali@g.o>
35 + +octave-epstk-2.4.ebuild:
36 + Version bump
37
38 *octave-epstk-2.3 (09 Mar 2011)
39
40
41
42
43 1.1 sci-mathematics/octave-epstk/octave-epstk-2.4.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave-epstk/octave-epstk-2.4.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave-epstk/octave-epstk-2.4.ebuild?rev=1.1&content-type=text/plain
47
48 Index: octave-epstk-2.4.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave-epstk/octave-epstk-2.4.ebuild,v 1.1 2012/06/06 21:36:59 bicatali Exp $
53
54 EAPI=4
55 inherit eutils
56
57 DEB_PR=1
58 DESCRIPTION="Graphical output functions for Matlab and Octave"
59 HOMEPAGE="http://www.epstk.de/"
60 SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}.orig.tar.bz2
61 mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}-${DEB_PR}.debian.tar.gz"
62
63 LICENSE="GPL-2"
64 KEYWORDS="~x86 ~amd64"
65 SLOT="0"
66 IUSE="doc"
67
68 RDEPEND="sci-mathematics/octave
69 app-text/ghostscript-gpl"
70 DEPEND=""
71
72 S="${WORKDIR}"
73
74 src_prepare() {
75 local p
76 cd eps*
77 for p in $(cat "${WORKDIR}"/debian/patches/series); do
78 epatch "${WORKDIR}"/debian/patches/${p}
79 done
80 }
81
82 src_install () {
83 insinto /usr/share/octave/site/m/${PN}
84 doins eps*/m/*
85 use doc && dohtml -r eps*/doc/*
86 insinto /etc
87 doins debian/epstk.conf
88 dodoc debian/README.Debian debian/changelog
89 }