summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarijn Schouten <hkbst@gentoo.org>2008-01-03 13:47:33 +0000
committerMarijn Schouten <hkbst@gentoo.org>2008-01-03 13:47:33 +0000
commitf09e7eb0c73e8143a83048fc0dbeba38bcbf4d42 (patch)
tree7e74e3755a4217ce9b2382a3b506d16c5707f7d5 /dev-scheme/hop
parentRemove =net-dialup/ltmodem-8.31* mask since it was removed from the tree. (diff)
downloadgentoo-2-f09e7eb0c73e8143a83048fc0dbeba38bcbf4d42.tar.gz
gentoo-2-f09e7eb0c73e8143a83048fc0dbeba38bcbf4d42.tar.bz2
gentoo-2-f09e7eb0c73e8143a83048fc0dbeba38bcbf4d42.zip
minor bump
(Portage version: 2.1.4_rc14)
Diffstat (limited to 'dev-scheme/hop')
-rw-r--r--dev-scheme/hop/ChangeLog9
-rw-r--r--dev-scheme/hop/files/digest-hop-1.8.53
-rw-r--r--dev-scheme/hop/hop-1.8.5.ebuild29
3 files changed, 39 insertions, 2 deletions
diff --git a/dev-scheme/hop/ChangeLog b/dev-scheme/hop/ChangeLog
index acef08e12085..14af10d9317a 100644
--- a/dev-scheme/hop/ChangeLog
+++ b/dev-scheme/hop/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-scheme/hop
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-scheme/hop/ChangeLog,v 1.4 2007/12/05 10:58:27 hkbst Exp $
+# 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 $
+
+*hop-1.8.5 (03 Jan 2008)
+
+ 03 Jan 2008; Marijn Schouten <hkBst@gentoo.org> +hop-1.8.5.ebuild:
+ minor bump
*hop-1.8.1 (05 Dec 2007)
diff --git a/dev-scheme/hop/files/digest-hop-1.8.5 b/dev-scheme/hop/files/digest-hop-1.8.5
new file mode 100644
index 000000000000..0ab3e1a6cdac
--- /dev/null
+++ b/dev-scheme/hop/files/digest-hop-1.8.5
@@ -0,0 +1,3 @@
+MD5 0e62b87715df88d5402f05d17756a12d hop-1.8.5.tar.gz 1659402
+RMD160 2962042d61359bdee5a2b69c8c2a065b5bfe7cb4 hop-1.8.5.tar.gz 1659402
+SHA256 2193922b3e9f7b24e4881ebb3004846a2d7ffca842ee1c5576bfaa4eecffdaee hop-1.8.5.tar.gz 1659402
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"
+}