Mercurial > hg > portage
changeset 133:e3983612de33
bump zeromq to 0.6.1; add some USE flags
author | holger |
---|---|
date | Sat, 30 May 2009 13:26:15 +0200 |
parents | fdf0c737a687 |
children | 73a8ea80bb30 |
files | net-misc/zmq/Manifest net-misc/zmq/zmq-0.6.1.ebuild net-misc/zmq/zmq-0.6.ebuild |
diffstat | 3 files changed, 40 insertions(+), 36 deletions(-) [+] |
line wrap: on
line diff
--- a/net-misc/zmq/Manifest Fri May 22 23:45:17 2009 +0200 +++ b/net-misc/zmq/Manifest Sat May 30 13:26:15 2009 +0200 @@ -1,2 +1,2 @@ -DIST zmq-0.6.tar.gz 695669 RMD160 22d7c7873b80a971c438d942d339ec08a64a2f2e SHA1 e3d0427a936a3641846b5f080739f1279e393e6b SHA256 e497c80f31d260afa8d39d8eed9704dc99ea848f8f7c47c023c7065bb81d87fb -EBUILD zmq-0.6.ebuild 1042 RMD160 f9eae30c1f712baa77a8849fad3069692a33f00b SHA1 ddedbd9c7c2c46c0945ce6d88f6b77f69b9e14ca SHA256 353f16d6e58d6e183ee3b13861636db89b916e4cd7ebb6974542af14878dfdb0 +DIST zmq-0.6.1.tar.gz 700331 RMD160 2de62f6ea0c38eb133157d39d13273ea988d5ca4 SHA1 b0f1edf1ea33adde5751c4b24359e9ebce40e554 SHA256 382f478e9806ac4d7b94244f6f7fc3697e53a17d779cc9db4e3f57dd41d6eab5 +EBUILD zmq-0.6.1.ebuild 1083 RMD160 e2289a32e90db7832116834999fd3ba2621bbec5 SHA1 8854d35583d81f38f935ff52e1cfbc243e39332a SHA256 97a1caf1389ff457cd60f909dd4cf7cd44973d992938764bd7b55be08d03cc02
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/net-misc/zmq/zmq-0.6.1.ebuild Sat May 30 13:26:15 2009 +0200 @@ -0,0 +1,38 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit eutils flag-o-matic + +DESCRIPTION="ZeroMQ is a brokerless messaging kernel with extremely high performance." +HOMEPAGE="http://www.zeromq.org/" +SRC_URI="http://www.zeromq.org/local--files/area:download/${P}.tar.gz" +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~x86" +IUSE="amqp c examples java profile python ruby" +#DEPEND="" +#RDEPEND="${DEPEND}" + +src_compile() { + +# TODO: +# --with-perf build performance tests [default=no] +# --with-butterfly build butterfly example [default=no] +# --with-camera build camera example [default=no] +# --with-exchange build exchange example [default=no] +# --with-chat build chatroom example [default=no] +# --with-ruby build Ruby language binding [default=no] + + econf \ + $(use_with amqp) \ + $(use_with c) \ + $(use_with java) \ + $(use_with python) + + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" +}
--- a/net-misc/zmq/zmq-0.6.ebuild Fri May 22 23:45:17 2009 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,34 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -inherit eutils - -DESCRIPTION="ZeroMQ is a brokerless messaging kernel with extremely high performance." -HOMEPAGE="http://www.zeromq.org/" -SRC_URI="http://www.zeromq.org/local--files/area:download/${P}.tar.gz" -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="~x86" -#IUSE="c examples java profile python" -#DEPEND="" -#RDEPEND="${DEPEND}" - -src_compile() { - -# TODO: -# --with-perf build performance tests [default=no] -# --with-camera build camera example [default=no] -# --with-exchange build exchange example [default=no] -# --with-chat build chatroom example [default=no] -# --with-c build c language binding [default=no] -# --with-python build Python language binding [default=no] -# --with-java build Java language binding [default=no] - - econf \ - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" -}