diff options
author | Arun Raghavan <ford_prefect@gentoo.org> | 2010-10-15 10:05:50 +0000 |
---|---|---|
committer | Arun Raghavan <ford_prefect@gentoo.org> | 2010-10-15 10:05:50 +0000 |
commit | a566917b17307278cf30c91041ed50b4a8279694 (patch) | |
tree | 28da2b3777d172d0bcd9cfd8267ff94d627fde76 /dev-lang/orc | |
parent | add ChangeLog message (diff) | |
download | gentoo-2-a566917b17307278cf30c91041ed50b4a8279694.tar.gz gentoo-2-a566917b17307278cf30c91041ed50b4a8279694.tar.bz2 gentoo-2-a566917b17307278cf30c91041ed50b4a8279694.zip |
Bump to 0.4.11. Bunch of bug fixes. Still has some problems on armv6, etc.
(Portage version: 2.2_rc91/cvs/Linux x86_64)
Diffstat (limited to 'dev-lang/orc')
-rw-r--r-- | dev-lang/orc/ChangeLog | 7 | ||||
-rw-r--r-- | dev-lang/orc/orc-0.4.11.ebuild | 36 |
2 files changed, 42 insertions, 1 deletions
diff --git a/dev-lang/orc/ChangeLog b/dev-lang/orc/ChangeLog index f67ac0b58ad9..edc3d8950a2b 100644 --- a/dev-lang/orc/ChangeLog +++ b/dev-lang/orc/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-lang/orc # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v 1.8 2010/10/08 09:31:01 ford_prefect Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v 1.9 2010/10/15 10:05:50 ford_prefect Exp $ + +*orc-0.4.11 (15 Oct 2010) + + 15 Oct 2010; Arun Raghavan <ford_prefect@gentoo.org> +orc-0.4.11.ebuild: + Bump to 0.4.11. Bunch of bug fixes. Still has some problems on armv6, etc. *orc-0.4.10 (08 Oct 2010) diff --git a/dev-lang/orc/orc-0.4.11.ebuild b/dev-lang/orc/orc-0.4.11.ebuild new file mode 100644 index 000000000000..defb24945d25 --- /dev/null +++ b/dev-lang/orc/orc-0.4.11.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/orc-0.4.11.ebuild,v 1.1 2010/10/15 10:05:50 ford_prefect Exp $ + +EAPI=3 +inherit autotools + +DESCRIPTION="The Oil Runtime Compiler" +HOMEPAGE="http://code.entropywave.com/projects/orc/" +SRC_URI="http://code.entropywave.com/download/orc/${P}.tar.gz" + +LICENSE="BSD BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="static-libs examples" + +src_prepare() { + if ! use examples; then + sed -i -e '/SUBDIRS/s:examples::' Makefile.am || die + AT_M4DIR="m4" eautoreconf + fi +} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + --disable-dependency-tracking \ + --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc README TODO + + find "${ED}" -name '*.la' -delete +} |