Gentoo Archives: gentoo-commits

From: "Thomas Beierlein (tomjbe)" <tomjbe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-electronics/spice: spice-3.5.5-r1.ebuild ChangeLog
Date: Sun, 04 Jul 2010 06:32:22
Message-Id: 20100704063218.5D3512CE14@corvid.gentoo.org
1 tomjbe 10/07/04 06:32:18
2
3 Modified: spice-3.5.5-r1.ebuild ChangeLog
4 Log:
5 fix for default editor (see bug #294766)
6 (Portage version: 2.1.8.3/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 sci-electronics/spice/spice-3.5.5-r1.ebuild
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/spice/spice-3.5.5-r1.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/spice/spice-3.5.5-r1.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/spice/spice-3.5.5-r1.ebuild?r1=1.1&r2=1.2
14
15 Index: spice-3.5.5-r1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-electronics/spice/spice-3.5.5-r1.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- spice-3.5.5-r1.ebuild 7 Jun 2009 05:43:47 -0000 1.1
22 +++ spice-3.5.5-r1.ebuild 4 Jul 2010 06:32:18 -0000 1.2
23 @@ -1,6 +1,6 @@
24 -# Copyright 1999-2009 Gentoo Foundation
25 +# Copyright 1999-2010 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/spice/spice-3.5.5-r1.ebuild,v 1.1 2009/06/07 05:43:47 calchan Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/spice/spice-3.5.5-r1.ebuild,v 1.2 2010/07/04 06:32:18 tomjbe Exp $
29
30 inherit eutils flag-o-matic multilib
31
32 @@ -16,7 +16,8 @@
33 KEYWORDS="amd64 ~ppc x86"
34
35 RDEPEND="sys-libs/ncurses
36 - x11-libs/libXaw"
37 + x11-libs/libXaw
38 + app-editors/gentoo-editor"
39
40 DEPEND="${RDEPEND}
41 x11-proto/xproto"
42 @@ -32,9 +33,8 @@
43 # Avoid re-creating WORKDIR due to stupid mtime
44 touch ..
45
46 - [ -z $EDITOR ] || EDITOR="vim"
47 sed -i -e "s:termcap:ncurses:g" \
48 - -e "s:joe:${EDITOR}:g" \
49 + -e "s:joe:/usr/libexec/gentoo-editor:g" \
50 -e "s:-O2 -s:${CFLAGS}:g" \
51 -e "s:-lncurses -lm -s:-lncurses -lm ${LDFLAGS}:" \
52 -e "s:SPICE_DIR)/lib:SPICE_DIR)/$(get_libdir)/spice:g" \
53 @@ -53,13 +53,13 @@
54 src_install() {
55 # install binaries
56 dobin obj/bin/{spice3,nutmeg,sconvert,multidec,proc2mod} || die "failed to copy binaries"
57 - newbin obj/bin/help spice.help
58 - dosym /usr/bin/spice3 /usr/bin/spice
59 + newbin obj/bin/help spice.help || die
60 + dosym /usr/bin/spice3 /usr/bin/spice || die
61 # install runtime stuff
62 rm -f lib/make*
63 - dodir /usr/$(get_libdir)/spice
64 - cp -R lib/* "${D}"/usr/$(get_libdir)/spice/
65 + dodir /usr/$(get_libdir)/spice || die
66 + cp -R lib/* "${D}"/usr/$(get_libdir)/spice/ || die "failed to copy libraries"
67 # install docs
68 - doman man/man1/*.1
69 - dodoc readme readme.Linux notes/spice2
70 + doman man/man1/*.1 || die
71 + dodoc readme readme.Linux notes/spice2 || die
72 }
73
74
75
76 1.12 sci-electronics/spice/ChangeLog
77
78 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/spice/ChangeLog?rev=1.12&view=markup
79 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/spice/ChangeLog?rev=1.12&content-type=text/plain
80 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/spice/ChangeLog?r1=1.11&r2=1.12
81
82 Index: ChangeLog
83 ===================================================================
84 RCS file: /var/cvsroot/gentoo-x86/sci-electronics/spice/ChangeLog,v
85 retrieving revision 1.11
86 retrieving revision 1.12
87 diff -u -r1.11 -r1.12
88 --- ChangeLog 7 Jun 2009 05:43:47 -0000 1.11
89 +++ ChangeLog 4 Jul 2010 06:32:18 -0000 1.12
90 @@ -1,6 +1,9 @@
91 # ChangeLog for sci-electronics/spice
92 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
93 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/spice/ChangeLog,v 1.11 2009/06/07 05:43:47 calchan Exp $
94 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
95 +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/spice/ChangeLog,v 1.12 2010/07/04 06:32:18 tomjbe Exp $
96 +
97 + 04 Jul 2010; Thomas Beierlein <tomjbe@g.o> spice-3.5.5-r1.ebuild:
98 + fix for default editor (see bug #294766)
99
100 *spice-3.5.5-r1 (07 Jun 2009)