Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/bas: bas-2.1.ebuild metadata.xml ChangeLog
Date: Wed, 02 Feb 2011 17:54:45
Message-Id: 20110202175435.9B65A20054@flycatcher.gentoo.org
1 ssuominen 11/02/02 17:54:35
2
3 Added: bas-2.1.ebuild metadata.xml ChangeLog
4 Log:
5 Initial commit wrt #353356 by Kevin McCarthy.
6
7 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-lang/bas/bas-2.1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/bas/bas-2.1.ebuild?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/bas/bas-2.1.ebuild?rev=1.1&content-type=text/plain
14
15 Index: bas-2.1.ebuild
16 ===================================================================
17 # Copyright 1999-2011 Gentoo Foundation
18 # Distributed under the terms of the GNU General Public License v2
19 # $Header: /var/cvsroot/gentoo-x86/dev-lang/bas/bas-2.1.ebuild,v 1.1 2011/02/02 17:54:35 ssuominen Exp $
20
21 EAPI=4
22 inherit autotools eutils toolchain-funcs
23
24 DESCRIPTION="An interpreter for the classic dialect of the programming language BASIC"
25 HOMEPAGE="http://www.moria.de/~michael/bas/"
26 SRC_URI="http://www.moria.de/~michael/bas/${P}.tar.gz"
27
28 LICENSE="LGPL-2.1"
29 SLOT="0"
30 KEYWORDS="~amd64 ~x86"
31 IUSE="lr0"
32
33 RDEPEND="sys-libs/ncurses
34 virtual/libintl"
35 DEPEND="${RDEPEND}
36 sys-devel/gettext"
37
38 src_prepare() {
39 epatch \
40 "${FILESDIR}"/${P}-configure.patch \
41 "${FILESDIR}"/${P}-makefile.patch
42
43 eautoconf
44 }
45
46 src_configure() {
47 tc-export AR
48 econf \
49 $(use_enable lr0)
50 }
51
52 src_install() {
53 emake DESTDIR="${D}" install
54 dodoc NEWS README
55 }
56
57
58
59 1.1 dev-lang/bas/metadata.xml
60
61 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/bas/metadata.xml?rev=1.1&view=markup
62 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/bas/metadata.xml?rev=1.1&content-type=text/plain
63
64 Index: metadata.xml
65 ===================================================================
66 <?xml version="1.0" encoding="UTF-8"?>
67 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
68 <pkgmetadata>
69 <herd>no-herd</herd>
70 <maintainer>
71 <email>signals42@×××××.com</email>
72 <name>Kevin McCarthy</name>
73 </maintainer>
74 <maintainer>
75 <email>ssuominen@g.o</email>
76 <name>Samuli Suominen</name>
77 </maintainer>
78 <maintainer>
79 <email>flameeyes@g.o</email>
80 <name>Diego Elio Pettenò</name>
81 </maintainer>
82 <use>
83 <flag name='lr0'>Use the LR0 parser instead of the recursive descending parser</flag>
84 </use>
85 </pkgmetadata>
86
87
88
89 1.1 dev-lang/bas/ChangeLog
90
91 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/bas/ChangeLog?rev=1.1&view=markup
92 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/bas/ChangeLog?rev=1.1&content-type=text/plain
93
94 Index: ChangeLog
95 ===================================================================
96 # ChangeLog for dev-lang/bas
97 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
98 # $Header: /var/cvsroot/gentoo-x86/dev-lang/bas/ChangeLog,v 1.1 2011/02/02 17:54:35 ssuominen Exp $
99
100 *bas-2.1 (02 Feb 2011)
101
102 02 Feb 2011; Samuli Suominen <ssuominen@g.o> +bas-2.1.ebuild,
103 +files/bas-2.1-configure.patch, +files/bas-2.1-makefile.patch:
104 Initial commit wrt #353356 by Kevin McCarthy.