public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-lisp/ecls: ChangeLog ecls-9.12.3.ebuild
@ 2009-12-17 12:04 Andrey Grozin (grozin)
  0 siblings, 0 replies; 4+ messages in thread
From: Andrey Grozin (grozin) @ 2009-12-17 12:04 UTC (permalink / raw
  To: gentoo-commits

grozin      09/12/17 12:04:22

  Modified:             ChangeLog
  Added:                ecls-9.12.3.ebuild
  Log:
  Version bump (to improve maxima support), ebuild from the lisp overlay
  (Portage version: 2.2_rc60/cvs/Linux i686)

Revision  Changes    Path
1.30                 dev-lisp/ecls/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/ChangeLog?r1=1.29&r2=1.30

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	22 Aug 2009 06:58:08 -0000	1.29
+++ ChangeLog	17 Dec 2009 12:04:22 -0000	1.30
@@ -1,6 +1,12 @@
 # ChangeLog for dev-lisp/ecls
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ChangeLog,v 1.29 2009/08/22 06:58:08 grozin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ChangeLog,v 1.30 2009/12/17 12:04:22 grozin Exp $
+
+*ecls-9.12.3 (17 Dec 2009)
+
+  17 Dec 2009; Andrey Grozin <grozin@gentoo.org>
+  +files/9.12.3-headers-gentoo.patch, +ecls-9.12.3.ebuild:
+  Version bump (to improve maxima support), ebuild from the lisp overlay
 
 *ecls-9.8.4 (22 Aug 2009)
 



1.1                  dev-lisp/ecls/ecls-9.12.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/ecls-9.12.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/ecls-9.12.3.ebuild?rev=1.1&content-type=text/plain

Index: ecls-9.12.3.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ecls-9.12.3.ebuild,v 1.1 2009/12/17 12:04:22 grozin Exp $

EAPI=2
inherit eutils multilib

MY_P=ecl-${PV}

DESCRIPTION="ECL is an embeddable Common Lisp implementation."
HOMEPAGE="http://common-lisp.net/project/ecl/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tgz"
RESTRICT="mirror"

LICENSE="BSD LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="X debug +threads +unicode"

RDEPEND="dev-libs/gmp
		dev-libs/libffi
		>=dev-libs/boehm-gc-7.1[threads?]"
		# cxx? ( dev-libs/boehm-gc[-nocxx] )"
DEPEND="${RDEPEND}
		app-text/texi2html"
PDEPEND="dev-lisp/gentoo-init"

PROVIDE="virtual/commonlisp"

S="${WORKDIR}"/ecl-${PV}

src_prepare() {
	epatch "${FILESDIR}"/${PV}-headers-gentoo.patch
}

src_configure() {
	# $(use_with cxx)
	econf \
		--with-system-gmp \
		--enable-boehm=system \
		--enable-gengc \
		--enable-longdouble \
		$(use_enable debug) \
		$(use_enable threads) \
		$(use_with threads __thread) \
		$(use_enable unicode) \
		$(use_with X x) \
		$(use_with X clx) \
		|| die "econf failed"
}

src_compile() {
	#parallel fails
	emake -j1 || die "make failed"
}

src_install () {
	emake DESTDIR="${D}" install || die "Could not build ECL"

	dohtml doc/*.html
	dodoc ANNOUNCEMENT Copyright
	dodoc "${FILESDIR}"/README.Gentoo
}






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-lisp/ecls: ChangeLog ecls-9.12.3.ebuild
@ 2010-02-06 10:53 Andrey Grozin (grozin)
  0 siblings, 0 replies; 4+ messages in thread
From: Andrey Grozin (grozin) @ 2010-02-06 10:53 UTC (permalink / raw
  To: gentoo-commits

grozin      10/02/06 10:53:24

  Modified:             ChangeLog ecls-9.12.3.ebuild
  Log:
  Ebuild cleanup, closing bug #299417
  (Portage version: 2.2_rc62/cvs/Linux i686)

Revision  Changes    Path
1.32                 dev-lisp/ecls/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/ChangeLog?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/ChangeLog?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/ChangeLog?r1=1.31&r2=1.32

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	31 Jan 2010 17:33:18 -0000	1.31
+++ ChangeLog	6 Feb 2010 10:53:24 -0000	1.32
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lisp/ecls
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ChangeLog,v 1.31 2010/01/31 17:33:18 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ChangeLog,v 1.32 2010/02/06 10:53:24 grozin Exp $
+
+  06 Feb 2010; Andrey Grozin <grozin@gentoo.org> ecls-9.12.3.ebuild:
+  Ebuild cleanup, closing bug #299417
 
   31 Jan 2010; Samuli Suominen <ssuominen@gentoo.org> ecls-9.8.4.ebuild,
   ecls-9.12.3.ebuild:



1.3                  dev-lisp/ecls/ecls-9.12.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/ecls-9.12.3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/ecls-9.12.3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/ecls-9.12.3.ebuild?r1=1.2&r2=1.3

Index: ecls-9.12.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ecls-9.12.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ecls-9.12.3.ebuild	31 Jan 2010 17:33:18 -0000	1.2
+++ ecls-9.12.3.ebuild	6 Feb 2010 10:53:24 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ecls-9.12.3.ebuild,v 1.2 2010/01/31 17:33:18 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ecls-9.12.3.ebuild,v 1.3 2010/02/06 10:53:24 grozin Exp $
 
 EAPI=2
 inherit eutils multilib
@@ -10,54 +10,59 @@
 DESCRIPTION="ECL is an embeddable Common Lisp implementation."
 HOMEPAGE="http://common-lisp.net/project/ecl/"
 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tgz"
-RESTRICT="mirror"
 
 LICENSE="BSD LGPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE="X debug +threads +unicode"
+IUSE="X doc +threads +unicode"
 
 RDEPEND="dev-libs/gmp
 		virtual/libffi
 		>=dev-libs/boehm-gc-7.1[threads?]"
-		# cxx? ( dev-libs/boehm-gc[-nocxx] )"
 DEPEND="${RDEPEND}
 		app-text/texi2html"
 PDEPEND="dev-lisp/gentoo-init"
 
 PROVIDE="virtual/commonlisp"
 
-S="${WORKDIR}"/ecl-${PV}
+S="${WORKDIR}"/${MY_P}
 
 src_prepare() {
 	epatch "${FILESDIR}"/${PV}-headers-gentoo.patch
 }
 
 src_configure() {
-	# $(use_with cxx)
 	econf \
 		--with-system-gmp \
 		--enable-boehm=system \
 		--enable-gengc \
 		--enable-longdouble \
-		$(use_enable debug) \
 		$(use_enable threads) \
 		$(use_with threads __thread) \
 		$(use_enable unicode) \
 		$(use_with X x) \
-		$(use_with X clx) \
-		|| die "econf failed"
+		$(use_with X clx)
 }
 
 src_compile() {
 	#parallel fails
-	emake -j1 || die "make failed"
+	emake -j1 || die "emake failed"
+	if use doc; then
+		pushd build/doc
+		emake || die "emake doc failed"
+		popd
+	fi
 }
 
 src_install () {
-	emake DESTDIR="${D}" install || die "Could not build ECL"
-
-	dohtml doc/*.html
+	emake DESTDIR="${D}" install || die "emake install failed"
 	dodoc ANNOUNCEMENT Copyright
 	dodoc "${FILESDIR}"/README.Gentoo
+	pushd build/doc
+	newman ecl.man ecl.1
+	newman ecl-config.man ecl-config.1
+	if use doc; then
+		doinfo *.info || die "doinfo failed"
+	fi
+	popd
 }






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-lisp/ecls: ChangeLog ecls-9.12.3.ebuild
@ 2010-02-16 22:27 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 4+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-02-16 22:27 UTC (permalink / raw
  To: gentoo-commits

fauli       10/02/16 22:27:21

  Modified:             ChangeLog ecls-9.12.3.ebuild
  Log:
  stable x86, bug 303699
  (Portage version: 2.1.7.17/cvs/Linux i686)

Revision  Changes    Path
1.33                 dev-lisp/ecls/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/ChangeLog?rev=1.33&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/ChangeLog?rev=1.33&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/ChangeLog?r1=1.32&r2=1.33

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	6 Feb 2010 10:53:24 -0000	1.32
+++ ChangeLog	16 Feb 2010 22:27:20 -0000	1.33
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lisp/ecls
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ChangeLog,v 1.32 2010/02/06 10:53:24 grozin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ChangeLog,v 1.33 2010/02/16 22:27:20 fauli Exp $
+
+  16 Feb 2010; Christian Faulhammer <fauli@gentoo.org> ecls-9.12.3.ebuild:
+  stable x86, bug 303699
 
   06 Feb 2010; Andrey Grozin <grozin@gentoo.org> ecls-9.12.3.ebuild:
   Ebuild cleanup, closing bug #299417



1.4                  dev-lisp/ecls/ecls-9.12.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/ecls-9.12.3.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/ecls-9.12.3.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/ecls/ecls-9.12.3.ebuild?r1=1.3&r2=1.4

Index: ecls-9.12.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ecls-9.12.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ecls-9.12.3.ebuild	6 Feb 2010 10:53:24 -0000	1.3
+++ ecls-9.12.3.ebuild	16 Feb 2010 22:27:20 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ecls-9.12.3.ebuild,v 1.3 2010/02/06 10:53:24 grozin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ecls-9.12.3.ebuild,v 1.4 2010/02/16 22:27:20 fauli Exp $
 
 EAPI=2
 inherit eutils multilib
@@ -13,7 +13,7 @@
 
 LICENSE="BSD LGPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ~ppc ~sparc x86"
 IUSE="X doc +threads +unicode"
 
 RDEPEND="dev-libs/gmp






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-lisp/ecls: ChangeLog ecls-9.12.3.ebuild
@ 2010-05-22 15:21 Pacho Ramos (pacho)
  0 siblings, 0 replies; 4+ messages in thread
From: Pacho Ramos (pacho) @ 2010-05-22 15:21 UTC (permalink / raw
  To: gentoo-commits

pacho       10/05/22 15:21:17

  Modified:             ChangeLog ecls-9.12.3.ebuild
  Log:
  stable amd64, bug 303699
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.36                 dev-lisp/ecls/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/ecls/ChangeLog?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/ecls/ChangeLog?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/ecls/ChangeLog?r1=1.35&r2=1.36

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog	12 Apr 2010 11:53:52 -0000	1.35
+++ ChangeLog	22 May 2010 15:21:17 -0000	1.36
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lisp/ecls
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ChangeLog,v 1.35 2010/04/12 11:53:52 grozin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ChangeLog,v 1.36 2010/05/22 15:21:17 pacho Exp $
+
+  22 May 2010; Pacho Ramos <pacho@gentoo.org> ecls-9.12.3.ebuild:
+  stable amd64, bug 303699
 
 *ecls-10.4.1 (12 Apr 2010)
 



1.6                  dev-lisp/ecls/ecls-9.12.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/ecls/ecls-9.12.3.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/ecls/ecls-9.12.3.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/ecls/ecls-9.12.3.ebuild?r1=1.5&r2=1.6

Index: ecls-9.12.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ecls-9.12.3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ecls-9.12.3.ebuild	19 Feb 2010 16:36:18 -0000	1.5
+++ ecls-9.12.3.ebuild	22 May 2010 15:21:17 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ecls-9.12.3.ebuild,v 1.5 2010/02/19 16:36:18 grozin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lisp/ecls/ecls-9.12.3.ebuild,v 1.6 2010/05/22 15:21:17 pacho Exp $
 
 EAPI=2
 inherit eutils multilib
@@ -13,7 +13,7 @@
 
 LICENSE="BSD LGPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc x86"
+KEYWORDS="amd64 ~ppc ~sparc x86"
 IUSE="X doc +threads +unicode"
 
 RDEPEND="dev-libs/gmp






^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-05-22 15:21 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-06 10:53 [gentoo-commits] gentoo-x86 commit in dev-lisp/ecls: ChangeLog ecls-9.12.3.ebuild Andrey Grozin (grozin)
  -- strict thread matches above, loose matches on Subject: below --
2010-05-22 15:21 Pacho Ramos (pacho)
2010-02-16 22:27 Christian Faulhammer (fauli)
2009-12-17 12:04 Andrey Grozin (grozin)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox