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/toluapp: toluapp-1.0.93.ebuild ChangeLog
Date: Thu, 02 Jul 2009 14:12:06
Message-Id: E1MMN1A-0000T5-Cp@stork.gentoo.org
1 ssuominen 09/07/02 14:12:04
2
3 Modified: ChangeLog
4 Added: toluapp-1.0.93.ebuild
5 Log:
6 Version bump. Use shared library wrt #193744.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.19 dev-lang/toluapp/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/toluapp/ChangeLog?rev=1.19&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/toluapp/ChangeLog?rev=1.19&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/toluapp/ChangeLog?r1=1.18&r2=1.19
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lang/toluapp/ChangeLog,v
19 retrieving revision 1.18
20 retrieving revision 1.19
21 diff -u -r1.18 -r1.19
22 --- ChangeLog 1 Jul 2009 21:17:47 -0000 1.18
23 +++ ChangeLog 2 Jul 2009 14:12:04 -0000 1.19
24 @@ -1,11 +1,17 @@
25 # ChangeLog for dev-lang/toluapp
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/toluapp/ChangeLog,v 1.18 2009/07/01 21:17:47 maekke Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/toluapp/ChangeLog,v 1.19 2009/07/02 14:12:04 ssuominen Exp $
29 +
30 +*toluapp-1.0.93 (02 Jul 2009)
31 +
32 + 02 Jul 2009; Samuli Suominen <ssuominen@g.o>
33 + +toluapp-1.0.93.ebuild:
34 + Version bump. Use shared library wrt #193744.
35
36 01 Jul 2009; Markus Meier <maekke@g.o> toluapp-1.0.92.ebuild:
37 amd64 stable, bug #255080
38
39 - 17 May 2008; Samuli Suominen <drac@g.o>
40 + 17 May 2008; Samuli Suominen <ssuominen@g.o>
41 -files/toluapp-1.0.2-gentoo.patch, -toluapp-1.0.2.ebuild,
42 -toluapp-1.0.7_p1.ebuild, toluapp-1.0.92.ebuild:
43 Move scons to DEPEND wrt #220441. Remove old versions and keyword ~amd64
44
45
46
47 1.1 dev-lang/toluapp/toluapp-1.0.93.ebuild
48
49 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/toluapp/toluapp-1.0.93.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/toluapp/toluapp-1.0.93.ebuild?rev=1.1&content-type=text/plain
51
52 Index: toluapp-1.0.93.ebuild
53 ===================================================================
54 # Copyright 1999-2009 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/dev-lang/toluapp/toluapp-1.0.93.ebuild,v 1.1 2009/07/02 14:12:04 ssuominen Exp $
57
58 inherit toolchain-funcs
59
60 MY_P=${PN/pp/++}-${PV}
61
62 DESCRIPTION="A tool to integrate C/C++ code with Lua."
63 HOMEPAGE="http://www.codenix.com/~tolua/"
64 SRC_URI="http://www.codenix.com/~tolua/${MY_P}.tar.bz2"
65
66 LICENSE="as-is"
67 SLOT="0"
68 KEYWORDS="~amd64 ~ppc ~x86"
69 IUSE=""
70
71 RDEPEND=">=dev-lang/lua-5.1.1"
72 DEPEND="${RDEPEND}
73 dev-util/scons"
74
75 S=${WORKDIR}/${MY_P}
76
77 src_compile() {
78 echo "## BEGIN gentoo.py
79
80 LIBS = ['lua', 'dl', 'm']
81
82 ## END gentoo.py" > ${S}/custom.py
83
84 scons \
85 CC="$(tc-getCC)" \
86 CCFLAGS="${CFLAGS} -ansi -Wall" \
87 CXX="$(tc-getCXX)" \
88 LINK="$(tc-getCC)" \
89 LINKFLAGS="${LDFLAGS}" \
90 shared=1 || die "scons failed"
91 }
92
93 src_install() {
94 dobin bin/tolua++ || die "dobin failed"
95 # dobin bin/tolua++_bootstrap || die "dobin failed"
96 # dolib.a lib/libtolua++_static.a || die "dolib.a failed"
97 dolib.so lib/libtolua++.so || die "dolib.so failed"
98 insinto /usr/include
99 doins include/tolua++.h || die "doins failed"
100 dodoc README
101 dohtml doc/*
102 }