diff options
author | Marijn Schouten <hkbst@gentoo.org> | 2008-01-03 13:47:33 +0000 |
---|---|---|
committer | Marijn Schouten <hkbst@gentoo.org> | 2008-01-03 13:47:33 +0000 |
commit | 9aa8de65e257d52f74a6584a8978c64bd5223573 (patch) | |
tree | 15bb27b799e7fd7291bd744c24412da1a17e52c1 /dev-scheme/hop/hop-1.8.5.ebuild | |
parent | Remove =net-dialup/ltmodem-8.31* mask since it was removed from the tree. (diff) | |
download | historical-9aa8de65e257d52f74a6584a8978c64bd5223573.tar.gz historical-9aa8de65e257d52f74a6584a8978c64bd5223573.tar.bz2 historical-9aa8de65e257d52f74a6584a8978c64bd5223573.zip |
minor bump
Package-Manager: portage-2.1.4_rc14
Diffstat (limited to 'dev-scheme/hop/hop-1.8.5.ebuild')
-rw-r--r-- | dev-scheme/hop/hop-1.8.5.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-scheme/hop/hop-1.8.5.ebuild b/dev-scheme/hop/hop-1.8.5.ebuild new file mode 100644 index 000000000000..e128e0800b7d --- /dev/null +++ b/dev-scheme/hop/hop-1.8.5.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/hop/hop-1.8.5.ebuild,v 1.1 2008/01/03 13:47:32 hkbst Exp $ + +inherit multilib + +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://www-sop.inria.fr/mimosa/fp/Bigloo/bigloo.html" +SRC_URI="ftp://ftp-sop.inria.fr/mimosa/fp/Hop/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" + +DEPEND=">=dev-scheme/bigloo-3.0b" + +IUSE="" + +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) || die "configure failed" + + emake -j1 || die "emake failed" +} + +src_install () { + emake DESTDIR="${D}" install || die "install failed" +} |