Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/bas: bas-2.3.ebuild ChangeLog
Date: Wed, 30 Jan 2013 06:51:08
Message-Id: 20130130065104.607002171D@flycatcher.gentoo.org
1 patrick 13/01/30 06:51:04
2
3 Modified: ChangeLog
4 Added: bas-2.3.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.5 dev-lang/bas/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/bas/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/bas/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/bas/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-lang/bas/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 15 Dec 2011 22:46:21 -0000 1.4
24 +++ ChangeLog 30 Jan 2013 06:51:04 -0000 1.5
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-lang/bas
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/bas/ChangeLog,v 1.4 2011/12/15 22:46:21 pacho Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/bas/ChangeLog,v 1.5 2013/01/30 06:51:04 patrick Exp $
31 +
32 +*bas-2.3 (30 Jan 2013)
33 +
34 + 30 Jan 2013; Patrick Lauer <patrick@g.o> +bas-2.3.ebuild,
35 + +files/bas-2.3-configure.patch:
36 + Bump
37
38 15 Dec 2011; Pacho Ramos <pacho@g.o> -bas-2.1.ebuild, metadata.xml:
39 Drop maintainer due retirement, bug #353461; drop old.
40 @@ -18,4 +24,3 @@
41 02 Feb 2011; Samuli Suominen <ssuominen@g.o> +bas-2.1.ebuild,
42 +files/bas-2.1-configure.patch, +files/bas-2.1-makefile.patch:
43 Initial commit wrt #353356 by Kevin McCarthy.
44 -
45
46
47
48 1.1 dev-lang/bas/bas-2.3.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/bas/bas-2.3.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/bas/bas-2.3.ebuild?rev=1.1&content-type=text/plain
52
53 Index: bas-2.3.ebuild
54 ===================================================================
55 # Copyright 1999-2013 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/dev-lang/bas/bas-2.3.ebuild,v 1.1 2013/01/30 06:51:04 patrick Exp $
58
59 EAPI=4
60 inherit autotools eutils toolchain-funcs
61
62 DESCRIPTION="An interpreter for the classic dialect of the programming language BASIC"
63 HOMEPAGE="http://www.moria.de/~michael/bas/"
64 SRC_URI="http://www.moria.de/~michael/bas/${P}.tar.gz"
65
66 LICENSE="LGPL-2.1"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86"
69 IUSE="lr0"
70
71 RDEPEND="sys-libs/ncurses
72 virtual/libintl"
73 DEPEND="${RDEPEND}
74 sys-devel/gettext"
75
76 src_prepare() {
77 epatch \
78 "${FILESDIR}"/${P}-configure.patch \
79 "${FILESDIR}"/${PN}-2.1-makefile.patch
80
81 eautoconf
82 }
83
84 src_configure() {
85 tc-export AR
86 econf \
87 $(use_enable lr0)
88 }
89
90 src_install() {
91 emake DESTDIR="${D}" install
92 dodoc NEWS README
93 insinto /usr/share/doc/${PF}/pdf
94 doins bas.pdf
95 }