diff options
Diffstat (limited to 'dev-scheme/gambit/gambit-4.4.3.ebuild')
-rw-r--r-- | dev-scheme/gambit/gambit-4.4.3.ebuild | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/dev-scheme/gambit/gambit-4.4.3.ebuild b/dev-scheme/gambit/gambit-4.4.3.ebuild new file mode 100644 index 000000000000..67e39da4352d --- /dev/null +++ b/dev-scheme/gambit/gambit-4.4.3.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/gambit/gambit-4.4.3.ebuild,v 1.1 2009/04/24 09:48:43 hkbst Exp $ + +inherit elisp-common + +MY_PN=gambc +MY_PV=${PV//./_} +MY_P=${MY_PN}-v${MY_PV} + +DESCRIPTION="Gambit-C is a native Scheme to C compiler and interpreter." +HOMEPAGE="http://www.iro.umontreal.ca/~gambit/" +SRC_URI="http://www.iro.umontreal.ca/~gambit/download/gambit/v${PV%.*}/source/${MY_P}.tgz" + +LICENSE="|| ( Apache-2.0 LGPL-2.1 )" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~x86" + +#gsc is now Gambit Scheme Compiler and not ghostscript. +#only app-text/ghostscript-gpl-8.64 has freed gsc yet. +DEPEND="emacs? ( virtual/emacs ) + !app-text/ghostscript-esp + !app-text/ghostscript-gnu + !<app-text/ghostscript-gpl-8.64" +RDEPEND="" + +SITEFILE="50gambit-gentoo.el" + +S=${WORKDIR}/${MY_P} #-devel + +IUSE="emacs static" + +src_compile() { + econf $(use_enable !static shared) --docdir=/usr/share/doc/${PF} --enable-single-host --disable-absolute-shared-libs + + emake bootstrap || die + + if use emacs; then + elisp-compile misc/*.el || die + fi +} + +src_install() { + emake DESTDIR="${D}" install || die +} + +pkg_postinst() { + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +} |