Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/blassic: blassic-0.10.2.ebuild ChangeLog
Date: Fri, 04 Jul 2014 08:29:37
Message-Id: 20140704082933.844B42004E@flycatcher.gentoo.org
1 mr_bones_ 14/07/04 08:29:33
2
3 Modified: blassic-0.10.2.ebuild ChangeLog
4 Log:
5 EAPI=5; simplify
6
7 (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
8
9 Revision Changes Path
10 1.8 dev-lang/blassic/blassic-0.10.2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/blassic/blassic-0.10.2.ebuild?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/blassic/blassic-0.10.2.ebuild?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/blassic/blassic-0.10.2.ebuild?r1=1.7&r2=1.8
15
16 Index: blassic-0.10.2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lang/blassic/blassic-0.10.2.ebuild,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- blassic-0.10.2.ebuild 3 Nov 2012 13:25:30 -0000 1.7
23 +++ blassic-0.10.2.ebuild 4 Jul 2014 08:29:33 -0000 1.8
24 @@ -1,8 +1,8 @@
25 -# Copyright 1999-2012 Gentoo Foundation
26 +# Copyright 1999-2014 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/blassic/blassic-0.10.2.ebuild,v 1.7 2012/11/03 13:25:30 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/blassic/blassic-0.10.2.ebuild,v 1.8 2014/07/04 08:29:33 mr_bones_ Exp $
30
31 -EAPI=2
32 +EAPI=5
33 inherit eutils
34
35 DESCRIPTION="classic Basic interpreter"
36 @@ -12,22 +12,20 @@
37 LICENSE="GPL-2"
38 KEYWORDS="~amd64 hppa ppc x86 ~x86-linux ~ppc-macos ~x86-macos"
39 SLOT="0"
40 -IUSE="svga X"
41 +IUSE="X"
42
43 RDEPEND="sys-libs/ncurses
44 - X? ( x11-libs/libICE x11-libs/libX11 x11-libs/libSM )
45 - svga? ( media-libs/svgalib )"
46 + X? ( x11-libs/libICE x11-libs/libX11 x11-libs/libSM )"
47 DEPEND="${RDEPEND}
48 X? ( x11-proto/xproto )"
49
50 src_configure() {
51 econf \
52 - --disable-dependency-tracking \
53 - $(use_with X x) \
54 - $(use_enable svga svgalib)
55 + --disable-svgalib \
56 + $(use_with X x)
57 }
58
59 src_install() {
60 - emake DESTDIR="${D}" install || die "emake install failed"
61 + emake DESTDIR="${D}" install
62 dodoc AUTHORS NEWS README THANKS TODO
63 }
64
65
66
67 1.32 dev-lang/blassic/ChangeLog
68
69 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/blassic/ChangeLog?rev=1.32&view=markup
70 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/blassic/ChangeLog?rev=1.32&content-type=text/plain
71 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/blassic/ChangeLog?r1=1.31&r2=1.32
72
73 Index: ChangeLog
74 ===================================================================
75 RCS file: /var/cvsroot/gentoo-x86/dev-lang/blassic/ChangeLog,v
76 retrieving revision 1.31
77 retrieving revision 1.32
78 diff -u -r1.31 -r1.32
79 --- ChangeLog 3 Nov 2012 13:25:30 -0000 1.31
80 +++ ChangeLog 4 Jul 2014 08:29:33 -0000 1.32
81 @@ -1,6 +1,9 @@
82 # ChangeLog for dev-lang/blassic
83 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
84 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/blassic/ChangeLog,v 1.31 2012/11/03 13:25:30 ago Exp $
85 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
86 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/blassic/ChangeLog,v 1.32 2014/07/04 08:29:33 mr_bones_ Exp $
87 +
88 + 04 Jul 2014; Michael Sterrett <mr_bones_@g.o> blassic-0.10.2.ebuild:
89 + EAPI=5; simplify
90
91 03 Nov 2012; Agostino Sarubbo <ago@g.o> blassic-0.10.2.ebuild:
92 Add ~amd64, wrt bug #440676