Gentoo Archives: gentoo-commits

From: "Marijn Schouten (hkbst)" <hkbst@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-scheme/hop: hop-1.11.0.ebuild ChangeLog
Date: Wed, 24 Jun 2009 15:23:32
Message-Id: E1MJUJs-00073P-OQ@stork.gentoo.org
1 hkbst 09/06/24 15:23:28
2
3 Modified: ChangeLog
4 Added: hop-1.11.0.ebuild
5 Log:
6 bump
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.8 dev-scheme/hop/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/hop/ChangeLog?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/hop/ChangeLog?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/hop/ChangeLog?r1=1.7&r2=1.8
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-scheme/hop/ChangeLog,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- ChangeLog 14 Feb 2009 16:17:08 -0000 1.7
23 +++ ChangeLog 24 Jun 2009 15:23:28 -0000 1.8
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-scheme/hop
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-scheme/hop/ChangeLog,v 1.7 2009/02/14 16:17:08 hkbst Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/hop/ChangeLog,v 1.8 2009/06/24 15:23:28 hkbst Exp $
29 +
30 +*hop-1.11.0 (24 Jun 2009)
31 +
32 + 24 Jun 2009; Marijn Schouten <hkBst@g.o> +hop-1.11.0.ebuild:
33 + bump
34
35 14 Feb 2009; Marijn Schouten <hkBst@g.o> -hop-1.7.0.ebuild,
36 -hop-1.8.1.ebuild, -hop-1.8.5.ebuild:
37
38
39
40 1.1 dev-scheme/hop/hop-1.11.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/hop/hop-1.11.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/hop/hop-1.11.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: hop-1.11.0.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-scheme/hop/hop-1.11.0.ebuild,v 1.1 2009/06/24 15:23:28 hkbst Exp $
50
51 inherit multilib eutils
52
53 MY_P=${P/_/-}
54
55 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"
56 HOMEPAGE="http://hop.inria.fr/"
57 SRC_URI="ftp://ftp-sop.inria.fr/mimosa/fp/Hop/${MY_P}.tar.gz"
58
59 SLOT="0"
60 LICENSE="GPL-2"
61 KEYWORDS="~amd64 ~x86"
62
63 DEPEND=">=dev-scheme/bigloo-3.2b"
64 RDEPEND=""
65
66 IUSE="ssl threads"
67
68 S=${WORKDIR}/${MY_P}
69
70 pkg_setup() {
71 enewgroup hop
72 enewuser hop -1 -1 /var/www hop
73 }
74
75 src_compile() {
76 # Hop doesn't use autoconf and consequently a lot of options used by econf give errors
77 # Manuel Serrano says: "Please, dont talk to me about autoconf. I simply dont want to hear about it..."
78 ./configure --prefix=/usr --libdir=/usr/$(get_libdir) --etcdir=/etc/hop $(use_enable ssl) $(use_enable threads) || die "configure failed"
79
80 emake || die "emake failed"
81 }
82
83 src_install () {
84 emake DESTDIR="${D}" install || die "install failed"
85 }