diff options
author | Marijn Schouten <hkbst@gentoo.org> | 2009-07-13 14:45:58 +0000 |
---|---|---|
committer | Marijn Schouten <hkbst@gentoo.org> | 2009-07-13 14:45:58 +0000 |
commit | 00e6c23bf706c29cacaa4e6a97f7c49ce6de9874 (patch) | |
tree | 5ef15b1002a4e8564c25ab180fbb61faa19827f3 /dev-scheme | |
parent | Fix linking issues, Bug #277656. (diff) | |
download | gentoo-2-00e6c23bf706c29cacaa4e6a97f7c49ce6de9874.tar.gz gentoo-2-00e6c23bf706c29cacaa4e6a97f7c49ce6de9874.tar.bz2 gentoo-2-00e6c23bf706c29cacaa4e6a97f7c49ce6de9874.zip |
bump
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'dev-scheme')
-rw-r--r-- | dev-scheme/hop/ChangeLog | 7 | ||||
-rw-r--r-- | dev-scheme/hop/hop-1.11.1.ebuild | 39 |
2 files changed, 45 insertions, 1 deletions
diff --git a/dev-scheme/hop/ChangeLog b/dev-scheme/hop/ChangeLog index 79ef6ff8f3bb..6b07f00accad 100644 --- a/dev-scheme/hop/ChangeLog +++ b/dev-scheme/hop/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-scheme/hop # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-scheme/hop/ChangeLog,v 1.8 2009/06/24 15:23:28 hkbst Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/hop/ChangeLog,v 1.9 2009/07/13 14:45:58 hkbst Exp $ + +*hop-1.11.1 (13 Jul 2009) + + 13 Jul 2009; Marijn Schouten <hkBst@gentoo.org> +hop-1.11.1.ebuild: + bump *hop-1.11.0 (24 Jun 2009) diff --git a/dev-scheme/hop/hop-1.11.1.ebuild b/dev-scheme/hop/hop-1.11.1.ebuild new file mode 100644 index 000000000000..e231c0bd3f8e --- /dev/null +++ b/dev-scheme/hop/hop-1.11.1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/hop/hop-1.11.1.ebuild,v 1.1 2009/07/13 14:45:58 hkbst Exp $ + +inherit multilib eutils + +MY_P=${P/_/-} + +DESCRIPTION="Hop is a higher-order language for programming interactive web applications." +HOMEPAGE="http://hop.inria.fr/" +SRC_URI="ftp://ftp-sop.inria.fr/mimosa/fp/Hop/${MY_P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" + +DEPEND=">=dev-scheme/bigloo-3.2b" +RDEPEND="" + +IUSE="ssl threads" + +S=${WORKDIR}/${MY_P} + +pkg_setup() { + enewgroup hop + enewuser hop -1 -1 /var/www hop +} + +src_compile() { + # Hop doesn't use autoconf and consequently a lot of options used by econf give errors + # Manuel Serrano says: "Please, dont talk to me about autoconf. I simply dont want to hear about it..." + ./configure --prefix=/usr --mandir=/usr/share/man --libdir=/usr/$(get_libdir) --etcdir=/etc/hop $(use_enable ssl) $(use_enable threads) || die "configure failed" + + emake || die "emake failed" +} + +src_install () { + emake DESTDIR="${D}" install || die "install failed" +} |