diff options
author | Marijn Schouten <hkbst@gentoo.org> | 2009-02-14 16:14:53 +0000 |
---|---|---|
committer | Marijn Schouten <hkbst@gentoo.org> | 2009-02-14 16:14:53 +0000 |
commit | 769e8c25207849bd371e544c77652b5790df9dfc (patch) | |
tree | 8faf65e6caba7d00cad61e9fd2590b66e37a60d1 /dev-scheme/hop | |
parent | ia64 stable wrt #252148 (diff) | |
download | gentoo-2-769e8c25207849bd371e544c77652b5790df9dfc.tar.gz gentoo-2-769e8c25207849bd371e544c77652b5790df9dfc.tar.bz2 gentoo-2-769e8c25207849bd371e544c77652b5790df9dfc.zip |
bump
(Portage version: 2.1.6.7/cvs/Linux x86_64)
Diffstat (limited to 'dev-scheme/hop')
-rw-r--r-- | dev-scheme/hop/ChangeLog | 9 | ||||
-rw-r--r-- | dev-scheme/hop/hop-1.10.2.ebuild | 39 |
2 files changed, 46 insertions, 2 deletions
diff --git a/dev-scheme/hop/ChangeLog b/dev-scheme/hop/ChangeLog index 14af10d9317a..2eed338a01c1 100644 --- a/dev-scheme/hop/ChangeLog +++ b/dev-scheme/hop/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-scheme/hop -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-scheme/hop/ChangeLog,v 1.5 2008/01/03 13:47:32 hkbst Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/hop/ChangeLog,v 1.6 2009/02/14 16:14:53 hkbst Exp $ + +*hop-1.10.2 (14 Feb 2009) + + 14 Feb 2009; Marijn Schouten <hkBst@gentoo.org> +hop-1.10.2.ebuild: + bump *hop-1.8.5 (03 Jan 2008) diff --git a/dev-scheme/hop/hop-1.10.2.ebuild b/dev-scheme/hop/hop-1.10.2.ebuild new file mode 100644 index 000000000000..a7706bcd42c5 --- /dev/null +++ b/dev-scheme/hop/hop-1.10.2.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.10.2.ebuild,v 1.1 2009/02/14 16:14:53 hkbst Exp $ + +inherit multilib eutils + +MY_P=${P/_/-} + +DESCRIPTION="Hop is a higher-order language for programming interactive web applications such as web agendas, web galleries, music players, etc. that is implemented as a Web broker" +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.1b" +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 --libdir=/usr/$(get_libdir) --etcdir=/etc/${PN} $(use_enable ssl) $(use_enable threads) || die "configure failed" + + emake || die "emake failed" +} + +src_install () { + emake DESTDIR="${D}" install || die "install failed" +} |