diff options
Diffstat (limited to 'dev-lang/orc/orc-0.4.13.ebuild')
-rw-r--r-- | dev-lang/orc/orc-0.4.13.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/dev-lang/orc/orc-0.4.13.ebuild b/dev-lang/orc/orc-0.4.13.ebuild new file mode 100644 index 000000000000..2af920b6ce1e --- /dev/null +++ b/dev-lang/orc/orc-0.4.13.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/orc-0.4.13.ebuild,v 1.1 2011/04/19 06:06:31 ford_prefect Exp $ + +EAPI=3 +inherit autotools flag-o-matic + +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 ~arm ~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() { + # any optimisation on PPC/Darwin yields in a complaint from the assembler + # Parameter error: r0 not allowed for parameter %lu (code as 0 not r0) + # the same for Intel/Darwin, although the error message there is different + # but along the same lines + [[ ${CHOST} == *-darwin* ]] && filter-flags -O* + 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 +} |