From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 2F6481385EE for ; Tue, 22 Jan 2013 09:20:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CB58BE05BE; Tue, 22 Jan 2013 09:20:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 63BD8E05BE for ; Tue, 22 Jan 2013 09:20:37 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1D9AF33D7CC for ; Tue, 22 Jan 2013 09:20:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 3690CE4073 for ; Tue, 22 Jan 2013 09:20:32 +0000 (UTC) From: "Tiziano Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tiziano Müller" Message-ID: <1358846420.fa29550f7c2e1c6ad06260f437252fbf2cc887df.dev-zero@gentoo> Subject: [gentoo-commits] dev/dev-zero:master commit in: net-libs/zmqpp/ X-VCS-Repository: dev/dev-zero X-VCS-Files: net-libs/zmqpp/Manifest net-libs/zmqpp/zmqpp-9999.ebuild X-VCS-Directories: net-libs/zmqpp/ X-VCS-Committer: dev-zero X-VCS-Committer-Name: Tiziano Müller X-VCS-Revision: fa29550f7c2e1c6ad06260f437252fbf2cc887df X-VCS-Branch: master Date: Tue, 22 Jan 2013 09:20:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a30b11c7-66f9-494b-9c5f-91e740ab4a46 X-Archives-Hash: 1c2482e877f5466520b03f707e37e86b commit: fa29550f7c2e1c6ad06260f437252fbf2cc887df Author: Tiziano Müller dev-zero ch> AuthorDate: Tue Jan 22 09:20:20 2013 +0000 Commit: Tiziano Müller gentoo org> CommitDate: Tue Jan 22 09:20:20 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/dev-zero.git;a=commit;h=fa29550f Initial commit of zmqpp ebuild. --- net-libs/zmqpp/Manifest | 1 + net-libs/zmqpp/zmqpp-9999.ebuild | 47 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+), 0 deletions(-) diff --git a/net-libs/zmqpp/Manifest b/net-libs/zmqpp/Manifest new file mode 100644 index 0000000..ec6598b --- /dev/null +++ b/net-libs/zmqpp/Manifest @@ -0,0 +1 @@ +EBUILD zmqpp-9999.ebuild 896 SHA256 25432165854135258bb67e5962763d9e29ef4ca5d3a31d79f9645e9cfe301e1e SHA512 d8a9799375ebfc1865da6ac25982bcb10cd90fa602f0fd14801cc8e4ccb595ef14c0d0cb117e9278c3c20139f2dafb7084752a9c7aef403fd697be6ac1003572 WHIRLPOOL 18e703cfd404af239d84aaa8518d9ca253f9745642017e4d2e9fb752fb4d4073f9887c5f977fe0b2358f954631c1358a2c283fc960df35e6473059e8d4cc35fc diff --git a/net-libs/zmqpp/zmqpp-9999.ebuild b/net-libs/zmqpp/zmqpp-9999.ebuild new file mode 100644 index 0000000..72bf7c8 --- /dev/null +++ b/net-libs/zmqpp/zmqpp-9999.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit git-2 multilib + +DESCRIPTION="High-level C++ bindings for ZeroMQ" +HOMEPAGE="https://github.com/benjamg/zmqpp" +EGIT_REPO_URI="https://github.com/benjamg/zmqpp.git" +EGIT_BRANCH="develop" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="client test" + +RDEPEND="net-libs/zeromq + client? ( dev-libs/boost )" +DEPEND="${RDEPEND} + test? ( dev-libs/boost )" + +src_configure() { + sed -i \ + -e '/^CONFIG/d' \ + -e '/^CPPFLAGS/d' \ + -e '/^CXXFLAGS/d' \ + -e '/^LDFLAGS/d' \ + -e '/^CXX/d' \ + -e 's|^PREFIX = .*|PREFIX = /usr|' \ + -e "s|/lib|/$(get_libdir)|" \ + Makefile || die "sed failed" +} + +src_compile() { + emake main + use client && emake client +} + +src_install() { + # work around primitive build system + dodir /usr/include/zmqpp + dodir /usr/$(get_libdir) + + default +}