Mercurial > hg > portage
annotate net-misc/zmq/zmq-1.0.0.ebuild @ 168:46e9ed96ea3e
sync rabbitmq ebuild with portage
author | holger |
---|---|
date | Sun, 11 Oct 2009 20:19:34 +0200 |
parents | 0f0eee037856 |
children |
rev | line source |
---|---|
79 | 1 # Copyright 1999-2008 Gentoo Foundation |
2 # Distributed under the terms of the GNU General Public License v2 | |
3 # $Header: $ | |
4 | |
133 | 5 inherit eutils flag-o-matic |
79 | 6 |
7 DESCRIPTION="ZeroMQ is a brokerless messaging kernel with extremely high performance." | |
8 HOMEPAGE="http://www.zeromq.org/" | |
9 SRC_URI="http://www.zeromq.org/local--files/area:download/${P}.tar.gz" | |
10 LICENSE="LGPL-3" | |
11 SLOT="0" | |
12 KEYWORDS="~x86" | |
133 | 13 IUSE="amqp c examples java profile python ruby" |
80
6da0c8668e7e
add TODOs, verify that initial install works
holger@hoho.dyndns.org
parents:
79
diff
changeset
|
14 #DEPEND="" |
6da0c8668e7e
add TODOs, verify that initial install works
holger@hoho.dyndns.org
parents:
79
diff
changeset
|
15 #RDEPEND="${DEPEND}" |
79 | 16 |
17 src_compile() { | |
80
6da0c8668e7e
add TODOs, verify that initial install works
holger@hoho.dyndns.org
parents:
79
diff
changeset
|
18 |
6da0c8668e7e
add TODOs, verify that initial install works
holger@hoho.dyndns.org
parents:
79
diff
changeset
|
19 # TODO: |
6da0c8668e7e
add TODOs, verify that initial install works
holger@hoho.dyndns.org
parents:
79
diff
changeset
|
20 # --with-perf build performance tests [default=no] |
133 | 21 # --with-butterfly build butterfly example [default=no] |
80
6da0c8668e7e
add TODOs, verify that initial install works
holger@hoho.dyndns.org
parents:
79
diff
changeset
|
22 # --with-camera build camera example [default=no] |
6da0c8668e7e
add TODOs, verify that initial install works
holger@hoho.dyndns.org
parents:
79
diff
changeset
|
23 # --with-exchange build exchange example [default=no] |
6da0c8668e7e
add TODOs, verify that initial install works
holger@hoho.dyndns.org
parents:
79
diff
changeset
|
24 # --with-chat build chatroom example [default=no] |
133 | 25 # --with-ruby build Ruby language binding [default=no] |
80
6da0c8668e7e
add TODOs, verify that initial install works
holger@hoho.dyndns.org
parents:
79
diff
changeset
|
26 |
6da0c8668e7e
add TODOs, verify that initial install works
holger@hoho.dyndns.org
parents:
79
diff
changeset
|
27 econf \ |
133 | 28 $(use_with amqp) \ |
29 $(use_with c) \ | |
30 $(use_with java) \ | |
31 $(use_with python) | |
32 | |
79 | 33 emake || die "emake failed" |
34 } | |
35 | |
36 src_install() { | |
37 emake DESTDIR="${D}" install || die "emake install failed" | |
38 } |