diff options
author | Marijn Schouten <hkbst@gentoo.org> | 2009-02-13 12:56:16 +0000 |
---|---|---|
committer | Marijn Schouten <hkbst@gentoo.org> | 2009-02-13 12:56:16 +0000 |
commit | 5644f196e3a67e142f2065aa968b53654ef88390 (patch) | |
tree | 5ad7cb50b5c8af7ea813532a824db5a3ece8820b /dev-scheme/gambit | |
parent | Correct Qt 4.4 blocker. (diff) | |
download | gentoo-2-5644f196e3a67e142f2065aa968b53654ef88390.tar.gz gentoo-2-5644f196e3a67e142f2065aa968b53654ef88390.tar.bz2 gentoo-2-5644f196e3a67e142f2065aa968b53654ef88390.zip |
bump
(Portage version: 2.1.6.7/cvs/Linux x86_64)
Diffstat (limited to 'dev-scheme/gambit')
-rw-r--r-- | dev-scheme/gambit/ChangeLog | 7 | ||||
-rw-r--r-- | dev-scheme/gambit/gambit-4.4.1.ebuild | 56 |
2 files changed, 62 insertions, 1 deletions
diff --git a/dev-scheme/gambit/ChangeLog b/dev-scheme/gambit/ChangeLog index 30145ebb4ddd..ebbaa683425a 100644 --- a/dev-scheme/gambit/ChangeLog +++ b/dev-scheme/gambit/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-scheme/gambit # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-scheme/gambit/ChangeLog,v 1.21 2009/01/28 16:46:59 hkbst Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/gambit/ChangeLog,v 1.22 2009/02/13 12:56:16 hkbst Exp $ + +*gambit-4.4.1 (13 Feb 2009) + + 13 Feb 2009; Marijn Schouten <hkBst@gentoo.org> +gambit-4.4.1.ebuild: + bump 28 Jan 2009; Marijn Schouten <hkBst@gentoo.org> -gambit-4.0_beta22.ebuild, -gambit-4.0.0.ebuild, -gambit-4.0.1.ebuild, -gambit-4.1.0.ebuild, diff --git a/dev-scheme/gambit/gambit-4.4.1.ebuild b/dev-scheme/gambit/gambit-4.4.1.ebuild new file mode 100644 index 000000000000..08bd15e7f6fb --- /dev/null +++ b/dev-scheme/gambit/gambit-4.4.1.ebuild @@ -0,0 +1,56 @@ +# 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.1.ebuild,v 1.1 2009/02/13 12:56:16 hkbst Exp $ + +inherit eutils elisp-common check-reqs multilib + +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 Compile 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) --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 + +# # rename the /usr/bin/gsc to avoid collision with gsc from ghostscript +# mv "${D}"/usr/bin/gsc "${D}"/usr/bin/gsc-gambit +} + +pkg_postinst() { + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +} |