diff options
author | Justin Lecher <jlec@gentoo.org> | 2014-09-15 19:09:20 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2014-09-15 19:09:20 +0000 |
commit | 822d6656ef72ec534eb43faa8da388ebcb14d7de (patch) | |
tree | 881393afdfac0e8323e6801512f807d20f1b21f2 /net-libs | |
parent | net-libs/czmq: Avoid file collisions, #500476 (diff) | |
download | gentoo-2-822d6656ef72ec534eb43faa8da388ebcb14d7de.tar.gz gentoo-2-822d6656ef72ec534eb43faa8da388ebcb14d7de.tar.bz2 gentoo-2-822d6656ef72ec534eb43faa8da388ebcb14d7de.zip |
net-libs/czmq: Avoid file collisions, #500476
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/czmq/ChangeLog | 7 | ||||
-rw-r--r-- | net-libs/czmq/czmq-2.2.0-r2.ebuild | 45 |
2 files changed, 51 insertions, 1 deletions
diff --git a/net-libs/czmq/ChangeLog b/net-libs/czmq/ChangeLog index 984c14ba9e0b..d269a82088e5 100644 --- a/net-libs/czmq/ChangeLog +++ b/net-libs/czmq/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-libs/czmq # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/czmq/ChangeLog,v 1.16 2014/09/15 18:51:10 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/czmq/ChangeLog,v 1.17 2014/09/15 19:09:20 jlec Exp $ + +*czmq-2.2.0-r2 (15 Sep 2014) + + 15 Sep 2014; Justin Lecher <jlec@gentoo.org> +czmq-2.2.0-r2.ebuild: + Avoid file collisions, #500476 15 Sep 2014; Justin Lecher <jlec@gentoo.org> czmq-2.2.0-r1.ebuild: Avoid @preserved-rebuild usage, #521396 diff --git a/net-libs/czmq/czmq-2.2.0-r2.ebuild b/net-libs/czmq/czmq-2.2.0-r2.ebuild new file mode 100644 index 000000000000..0f6486ae2f3a --- /dev/null +++ b/net-libs/czmq/czmq-2.2.0-r2.ebuild @@ -0,0 +1,45 @@ +# 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-2.2.0-r2.ebuild,v 1.1 2014/09/15 19:09:20 jlec Exp $ + +EAPI=5 + +AUTOTOOLS_AUTORECONF=true + +inherit autotools-utils + +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=" + dev-libs/libsodium:= + sys-apps/util-linux + >=net-libs/zeromq-2.1 +" +DEPEND="${RDEPEND} + doc? ( + app-text/asciidoc + app-text/xmlto + )" + +DOCS=( NEWS AUTHORS ) + +src_prepare() { + sed -i -e 's|-Werror||g' configure.ac || die + autotools-utils_src_prepare +} + +src_install() { + autotools-utils_src_install + mv "${ED}"/usr/bin/makecert{,-czmq} || die +} + +pkg_postinst() { + elog "Due to file collisions we move the makecert tool to makecert-${PN}" +} |