Gentoo Archives: gentoo-commits

From: "Andrey Grozin (grozin)" <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lisp/ecls: metadata.xml ChangeLog ecls-9.8.4.ebuild
Date: Sat, 22 Aug 2009 06:58:10
Message-Id: E1MekYC-0003Fb-9N@stork.gentoo.org
1 grozin 09/08/22 06:58:08
2
3 Modified: metadata.xml ChangeLog
4 Added: ecls-9.8.4.ebuild
5 Log:
6 Version bump (from the lisp overlay)
7 (Portage version: 2.2_rc38/cvs/Linux i686)
8
9 Revision Changes Path
10 1.4 dev-lisp/ecls/metadata.xml
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/metadata.xml?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/metadata.xml?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/metadata.xml?r1=1.3&r2=1.4
15
16 Index: metadata.xml
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lisp/ecls/metadata.xml,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- metadata.xml 28 Jul 2008 18:57:50 -0000 1.3
23 +++ metadata.xml 22 Aug 2009 06:58:07 -0000 1.4
24 @@ -10,5 +10,7 @@
25 </longdescription>
26 <use>
27 <flag name='c++'>Build ECL with a C++ compiler</flag>
28 +<flag name='threads'>Support for native threads</flag>
29 +<flag name='unicode'>Support for unicode</flag>
30 </use>
31 </pkgmetadata>
32
33
34
35 1.29 dev-lisp/ecls/ChangeLog
36
37 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/ChangeLog?rev=1.29&view=markup
38 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/ChangeLog?rev=1.29&content-type=text/plain
39 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/ChangeLog?r1=1.28&r2=1.29
40
41 Index: ChangeLog
42 ===================================================================
43 RCS file: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ChangeLog,v
44 retrieving revision 1.28
45 retrieving revision 1.29
46 diff -u -r1.28 -r1.29
47 --- ChangeLog 28 Jul 2008 18:57:50 -0000 1.28
48 +++ ChangeLog 22 Aug 2009 06:58:08 -0000 1.29
49 @@ -1,6 +1,12 @@
50 # ChangeLog for dev-lisp/ecls
51 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
52 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ChangeLog,v 1.28 2008/07/28 18:57:50 pchrist Exp $
53 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
54 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ChangeLog,v 1.29 2009/08/22 06:58:08 grozin Exp $
55 +
56 +*ecls-9.8.4 (22 Aug 2009)
57 +
58 + 22 Aug 2009; Andrey Grozin <grozin@g.o>
59 + +files/9.8.4-headers-gentoo.patch, +ecls-9.8.4.ebuild, metadata.xml:
60 + Version bump (from the lisp overlay)
61
62 28 Jul 2008; Panagiotis Christopoulos <pchrist@g.o> metadata.xml:
63 Update metadata.xml to include USE flag descriptions. Entries taken from
64
65
66
67 1.1 dev-lisp/ecls/ecls-9.8.4.ebuild
68
69 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/ecls-9.8.4.ebuild?rev=1.1&view=markup
70 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/ecls-9.8.4.ebuild?rev=1.1&content-type=text/plain
71
72 Index: ecls-9.8.4.ebuild
73 ===================================================================
74 # Copyright 1999-2009 Gentoo Foundation
75 # Distributed under the terms of the GNU General Public License v2
76 # $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ecls-9.8.4.ebuild,v 1.1 2009/08/22 06:58:08 grozin Exp $
77
78 EAPI=2
79 inherit eutils multilib
80
81 MY_P=ecl-${PV}
82
83 DESCRIPTION="ECL is an embeddable Common Lisp implementation."
84 HOMEPAGE="http://common-lisp.net/project/ecl/"
85 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tgz"
86 RESTRICT="mirror"
87
88 LICENSE="BSD LGPL-2"
89 SLOT="0"
90 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
91 IUSE="X c++ +threads +unicode"
92
93 RDEPEND="dev-libs/gmp
94 dev-libs/libffi
95 >=dev-libs/boehm-gc-7.1[threads?]
96 c++? ( dev-libs/boehm-gc[-nocxx] )"
97 DEPEND="${RDEPEND}
98 app-text/texi2html"
99 PDEPEND="dev-lisp/gentoo-init"
100
101 PROVIDE="virtual/commonlisp"
102
103 S="${WORKDIR}"/ecl-${PV}
104
105 src_prepare() {
106 epatch "${FILESDIR}"/${PV}-headers-gentoo.patch
107 }
108
109 src_configure() {
110 econf \
111 --with-system-gmp \
112 --enable-boehm=system \
113 --enable-gengc \
114 --enable-longdouble \
115 $(use_with c++ cxx) \
116 $(use_enable threads) \
117 $(use_with threads __thread) \
118 $(use_enable unicode) \
119 $(use_with X x) \
120 $(use_with X clx) \
121 || die "econf failed"
122 }
123
124 src_compile() {
125 #parallel fails
126 emake -j1 || die "make failed"
127 }
128
129 src_install () {
130 emake DESTDIR="${D}" install || die "Could not build ECL"
131
132 dohtml doc/*.html
133 dodoc ANNOUNCEMENT Copyright
134 dodoc "${FILESDIR}"/README.Gentoo
135 }