Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-tex/sketch: ChangeLog sketch-0.2.141.ebuild sketch-0.2.131.ebuild
Date: Sun, 26 Oct 2008 09:56:45
Message-Id: E1Ku2MT-0005Hk-OI@stork.gentoo.org
1 aballier 08/10/26 09:56:41
2
3 Modified: ChangeLog
4 Added: sketch-0.2.141.ebuild
5 Removed: sketch-0.2.131.ebuild
6 Log:
7 version bump, thanks to Dmitry Dzhus, bug #244387
8 (Portage version: 2.2_rc12/cvs/Linux 2.6.27.3 x86_64)
9
10 Revision Changes Path
11 1.4 dev-tex/sketch/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tex/sketch/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tex/sketch/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tex/sketch/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-tex/sketch/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 13 Aug 2008 12:41:04 -0000 1.3
24 +++ ChangeLog 26 Oct 2008 09:56:41 -0000 1.4
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-tex/sketch
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/sketch/ChangeLog,v 1.3 2008/08/13 12:41:04 aballier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-tex/sketch/ChangeLog,v 1.4 2008/10/26 09:56:41 aballier Exp $
30 +
31 +*sketch-0.2.141 (26 Oct 2008)
32 +
33 + 26 Oct 2008; Alexis Ballier <aballier@g.o> -sketch-0.2.131.ebuild,
34 + +sketch-0.2.141.ebuild:
35 + version bump, thanks to Dmitry Dzhus, bug #244387
36
37 13 Aug 2008; Alexis Ballier <aballier@g.o> metadata.xml:
38 Add Dmitry as proxy-maintainer
39
40
41
42 1.1 dev-tex/sketch/sketch-0.2.141.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tex/sketch/sketch-0.2.141.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tex/sketch/sketch-0.2.141.ebuild?rev=1.1&content-type=text/plain
46
47 Index: sketch-0.2.141.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-tex/sketch/sketch-0.2.141.ebuild,v 1.1 2008/10/26 09:56:41 aballier Exp $
52
53 inherit eutils toolchain-funcs
54
55 DESCRIPTION="Produces drawings of two- or three-dimensional solid objects and scenes for TeX"
56 HOMEPAGE="http://www.frontiernet.net/~eugene.ressler/"
57 SRC_URI="http://www.frontiernet.net/~eugene.ressler/${P}.tgz"
58 LICENSE="GPL-3"
59
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="doc examples"
63
64 DEPEND="dev-lang/perl"
65 RDEPEND=""
66
67 src_unpack() {
68 unpack ${A}
69
70 cd "${S}"
71 sed -i -e "s:\$(CC):\$(CC) \$(LDFLAGS):" makefile
72 }
73
74 src_compile() {
75 emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" || die "emake failed"
76 }
77
78 src_install() {
79 dobin sketch || die
80 edos2unix Doc/sketch.info
81 doinfo Doc/sketch.info || die
82 dohtml updates.htm || die
83 if use doc ; then
84 insinto /usr/share/doc/${PF}
85 doins Doc/sketch.pdf || die
86 dohtml Doc/sketch/* || die
87 fi
88 if use examples ; then
89 insinto /usr/share/doc/${PF}/examples
90 doins Data/* || die "Failed to install examples"
91 fi
92 }