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"
|
|
13 IUSE="c java python profile"
|
|
14
|
|
15 DEPEND=""
|
|
16 RDEPEND="${DEPEND}"
|
|
17
|
|
18 # Source directory; the dir where the sources can be found (automatically
|
|
19 # unpacked) inside ${WORKDIR}. The default value for S is ${WORKDIR}/${P}
|
|
20 # If you don't need to change it, leave the S= line out of the ebuild
|
|
21 # to keep it tidy.
|
|
22 #S="${WORKDIR}/${P}"
|
|
23
|
|
24 src_compile() {
|
|
25 econf || die "econf failed"
|
|
26 emake || die "emake failed"
|
|
27 }
|
|
28
|
|
29 src_install() {
|
|
30 emake DESTDIR="${D}" install || die "emake install failed"
|
|
31 }
|