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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
79
7165b0bc5268 initial import of zeromq ebuild
holger@hoho.dyndns.org
parents:
diff changeset
1 # Copyright 1999-2008 Gentoo Foundation
7165b0bc5268 initial import of zeromq ebuild
holger@hoho.dyndns.org
parents:
diff changeset
2 # Distributed under the terms of the GNU General Public License v2
7165b0bc5268 initial import of zeromq ebuild
holger@hoho.dyndns.org
parents:
diff changeset
3 # $Header: $
7165b0bc5268 initial import of zeromq ebuild
holger@hoho.dyndns.org
parents:
diff changeset
4
7165b0bc5268 initial import of zeromq ebuild
holger@hoho.dyndns.org
parents:
diff changeset
5 inherit eutils
7165b0bc5268 initial import of zeromq ebuild
holger@hoho.dyndns.org
parents:
diff changeset
6
7165b0bc5268 initial import of zeromq ebuild
holger@hoho.dyndns.org
parents:
diff changeset
7 DESCRIPTION="ZeroMQ is a brokerless messaging kernel with extremely high performance."
7165b0bc5268 initial import of zeromq ebuild
holger@hoho.dyndns.org
parents:
diff changeset
8 HOMEPAGE="http://www.zeromq.org/"
7165b0bc5268 initial import of zeromq ebuild
holger@hoho.dyndns.org
parents:
diff changeset
9 SRC_URI="http://www.zeromq.org/local--files/area:download/${P}.tar.gz"
7165b0bc5268 initial import of zeromq ebuild
holger@hoho.dyndns.org
parents:
diff changeset
10 LICENSE="LGPL-3"
7165b0bc5268 initial import of zeromq ebuild
holger@hoho.dyndns.org
parents:
diff changeset
11 SLOT="0"
7165b0bc5268 initial import of zeromq ebuild
holger@hoho.dyndns.org
parents:
diff changeset
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
7165b0bc5268 initial import of zeromq ebuild
holger@hoho.dyndns.org
parents:
diff changeset
16
7165b0bc5268 initial import of zeromq ebuild
holger@hoho.dyndns.org
parents:
diff changeset
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
7165b0bc5268 initial import of zeromq ebuild
holger@hoho.dyndns.org
parents:
diff changeset
29 emake || die "emake failed"
7165b0bc5268 initial import of zeromq ebuild
holger@hoho.dyndns.org
parents:
diff changeset
30 }
7165b0bc5268 initial import of zeromq ebuild
holger@hoho.dyndns.org
parents:
diff changeset
31
7165b0bc5268 initial import of zeromq ebuild
holger@hoho.dyndns.org
parents:
diff changeset
32 src_install() {
7165b0bc5268 initial import of zeromq ebuild
holger@hoho.dyndns.org
parents:
diff changeset
33 emake DESTDIR="${D}" install || die "emake install failed"
7165b0bc5268 initial import of zeromq ebuild
holger@hoho.dyndns.org
parents:
diff changeset
34 }