blob: e036d08737d7b0a1e662f57fddcd7e7d4fa0face (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/czmq/czmq-1.2.0-r1.ebuild,v 1.4 2014/04/24 12:58:26 jlec Exp $
EAPI=5
inherit autotools
DESCRIPTION=" High-level C Binding for ZeroMQ"
HOMEPAGE="http://czmq.zeromq.org"
SRC_URI="http://download.zeromq.org/${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm hppa ~x86"
IUSE="doc static-libs"
RDEPEND=""
DEPEND="doc? (
app-text/asciidoc
app-text/xmlto
)
>=net-libs/zeromq-2.1
<net-libs/zeromq-4"
DOCS=( NEWS README AUTHORS ChangeLog )
src_prepare() {
sed -i -e 's|-Werror||g' configure.in || die
eautoreconf
}
src_configure() {
econf $(use_enable static-libs static)
}
src_install() {
default
doman doc/*.[1-9]
# remove useless .la files
find "${D}" -name '*.la' -delete
# remove useless .a (only for non static compilation)
use static-libs || find "${D}" -name '*.a' -delete
}
|