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: ChangeLog ecls-11.1.1.ebuild
Date: Mon, 17 Jan 2011 15:53:43
Message-Id: 20110117155331.C254E20054@flycatcher.gentoo.org
1 grozin 11/01/17 15:53:31
2
3 Modified: ChangeLog
4 Added: ecls-11.1.1.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.0_alpha15/cvs/Linux i686)
9
10 Revision Changes Path
11 1.38 dev-lisp/ecls/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/ecls/ChangeLog?rev=1.38&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/ecls/ChangeLog?rev=1.38&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/ecls/ChangeLog?r1=1.37&r2=1.38
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ChangeLog,v
20 retrieving revision 1.37
21 retrieving revision 1.38
22 diff -u -r1.37 -r1.38
23 --- ChangeLog 17 Dec 2010 20:18:31 -0000 1.37
24 +++ ChangeLog 17 Jan 2011 15:53:31 -0000 1.38
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-lisp/ecls
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ChangeLog,v 1.37 2010/12/17 20:18:31 ulm Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ChangeLog,v 1.38 2011/01/17 15:53:31 grozin Exp $
31 +
32 +*ecls-11.1.1 (17 Jan 2011)
33 +
34 + 17 Jan 2011; Andrey Grozin <grozin@g.o>
35 + +files/11.1.1-headers-gentoo.patch, +ecls-11.1.1.ebuild:
36 + Version bump
37
38 17 Dec 2010; Ulrich Mueller <ulm@g.o> ecls-9.12.3.ebuild,
39 ecls-10.2.1.ebuild, ecls-10.4.1.ebuild:
40
41
42
43 1.1 dev-lisp/ecls/ecls-11.1.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/ecls/ecls-11.1.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/ecls/ecls-11.1.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: ecls-11.1.1.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ecls-11.1.1.ebuild,v 1.1 2011/01/17 15:53:31 grozin Exp $
53
54 EAPI=3
55 inherit eutils multilib
56
57 MY_P=ecl-${PV}
58
59 DESCRIPTION="ECL is an embeddable Common Lisp implementation."
60 HOMEPAGE="http://common-lisp.net/project/ecl/"
61 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
62
63 LICENSE="BSD LGPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
66 IUSE="debug gengc precisegc threads +unicode X"
67
68 RDEPEND="dev-libs/gmp
69 virtual/libffi
70 >=dev-libs/boehm-gc-7.1[threads?]"
71 DEPEND="${RDEPEND}
72 app-text/texi2html"
73 PDEPEND="dev-lisp/gentoo-init"
74
75 S="${WORKDIR}"/${MY_P}
76
77 pkg_setup() {
78 if use gengc || use precisegc; then
79 ewarn "USE flags gengc and precisegc are experimental"
80 ewarn "Don't use them if you want a stable ecl"
81 fi
82 }
83
84 src_prepare() {
85 epatch "${FILESDIR}"/${PV}-headers-gentoo.patch
86 }
87
88 src_configure() {
89 econf \
90 --with-system-gmp \
91 --enable-boehm=system \
92 --enable-longdouble \
93 $(use_enable gengc) \
94 $(use_enable precisegc) \
95 $(use_with debug debug-cflags) \
96 $(use_enable threads) \
97 $(use_with threads __thread) \
98 $(use_enable unicode) \
99 $(use_with X x) \
100 $(use_with X clx)
101 }
102
103 src_compile() {
104 #parallel fails
105 emake -j1 || die "Compilation failed"
106 }
107
108 src_install () {
109 emake DESTDIR="${D}" install || die "Installation failed"
110
111 dodoc ANNOUNCEMENT Copyright
112 dodoc "${FILESDIR}"/README.Gentoo
113 pushd build/doc
114 newman ecl.man ecl.1
115 newman ecl-config.man ecl-config.1
116 popd
117 }