Mercurial > hg > portage
annotate net-misc/zmq/zmq-0.4.ebuild @ 106:ee276ccfcc7b
bump subversion to 1.5.6
author | holger@hoho.dyndns.org |
---|---|
date | Sat, 28 Feb 2009 20:20:36 +0100 |
parents | 49f1b15fc148 |
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 | |
5 inherit eutils | |
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" | |
80
6da0c8668e7e
add TODOs, verify that initial install works
holger@hoho.dyndns.org
parents:
79
diff
changeset
|
13 #IUSE="c examples java profile python" |
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] |
6da0c8668e7e
add TODOs, verify that initial install works
holger@hoho.dyndns.org
parents:
79
diff
changeset
|
21 # --with-camera build camera example [default=no] |
6da0c8668e7e
add TODOs, verify that initial install works
holger@hoho.dyndns.org
parents:
79
diff
changeset
|
22 # --with-exchange build exchange example [default=no] |
6da0c8668e7e
add TODOs, verify that initial install works
holger@hoho.dyndns.org
parents:
79
diff
changeset
|
23 # --with-chat build chatroom example [default=no] |
6da0c8668e7e
add TODOs, verify that initial install works
holger@hoho.dyndns.org
parents:
79
diff
changeset
|
24 # --with-c build c language binding [default=no] |
6da0c8668e7e
add TODOs, verify that initial install works
holger@hoho.dyndns.org
parents:
79
diff
changeset
|
25 # --with-python build Python language binding [default=no] |
6da0c8668e7e
add TODOs, verify that initial install works
holger@hoho.dyndns.org
parents:
79
diff
changeset
|
26 # --with-java build Java language binding [default=no] |
6da0c8668e7e
add TODOs, verify that initial install works
holger@hoho.dyndns.org
parents:
79
diff
changeset
|
27 |
6da0c8668e7e
add TODOs, verify that initial install works
holger@hoho.dyndns.org
parents:
79
diff
changeset
|
28 econf \ |
79 | 29 emake || die "emake failed" |
30 } | |
31 | |
32 src_install() { | |
33 emake DESTDIR="${D}" install || die "emake install failed" | |
34 } |