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: ChangeLog blassic-0.10.2.ebuild
Date: Fri, 24 Apr 2009 18:27:02
Message-Id: E1LxQ71-0002yY-Rw@stork.gentoo.org
1 mr_bones_ 09/04/24 18:26:59
2
3 Modified: ChangeLog
4 Added: blassic-0.10.2.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.6.7/cvs/Linux i686)
8
9 Revision Changes Path
10 1.26 dev-lang/blassic/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/blassic/ChangeLog?rev=1.26&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/blassic/ChangeLog?rev=1.26&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/blassic/ChangeLog?r1=1.25&r2=1.26
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lang/blassic/ChangeLog,v
19 retrieving revision 1.25
20 retrieving revision 1.26
21 diff -u -r1.25 -r1.26
22 --- ChangeLog 17 Dec 2008 22:32:15 -0000 1.25
23 +++ ChangeLog 24 Apr 2009 18:26:59 -0000 1.26
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-lang/blassic
26 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/blassic/ChangeLog,v 1.25 2008/12/17 22:32:15 mr_bones_ Exp $
28 +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/blassic/ChangeLog,v 1.26 2009/04/24 18:26:59 mr_bones_ Exp $
30 +
31 +*blassic-0.10.2 (24 Apr 2009)
32 +
33 + 24 Apr 2009; Michael Sterrett <mr_bones_@g.o>
34 + +blassic-0.10.2.ebuild:
35 + version bump
36
37 17 Dec 2008; Michael Sterrett <mr_bones_@g.o>
38 +files/blassic-0.10.0-gcc43.patch, blassic-0.10.0.ebuild:
39
40
41
42 1.1 dev-lang/blassic/blassic-0.10.2.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/blassic/blassic-0.10.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/blassic/blassic-0.10.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: blassic-0.10.2.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-lang/blassic/blassic-0.10.2.ebuild,v 1.1 2009/04/24 18:26:59 mr_bones_ Exp $
52
53 EAPI=2
54 inherit eutils
55
56 DESCRIPTION="classic Basic interpreter"
57 HOMEPAGE="http://blassic.org"
58 SRC_URI="http://blassic.org/bin/${P}.tgz"
59
60 LICENSE="GPL-2"
61 KEYWORDS="~hppa ~ppc ~x86"
62 SLOT="0"
63 IUSE="svga X"
64
65 RDEPEND="sys-libs/ncurses
66 X? ( x11-libs/libICE x11-libs/libX11 x11-libs/libSM )
67 svga? ( media-libs/svgalib )"
68 DEPEND="${RDEPEND}
69 X? ( x11-proto/xproto )"
70
71 src_compile() {
72 econf \
73 --disable-dependency-tracking \
74 $(use_with X x) \
75 $(use_enable svga svgalib)
76 }
77
78 src_install() {
79 emake DESTDIR="${D}" install || die "emake install failed"
80 dodoc AUTHORS NEWS README THANKS TODO
81 }