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 D790513829C for ; Wed, 1 Jun 2016 13:36:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 33FE0234012; Wed, 1 Jun 2016 13:36:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D0067234012 for ; Wed, 1 Jun 2016 13:36:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B2794335DE6 for ; Wed, 1 Jun 2016 13:36:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9F84D963 for ; Wed, 1 Jun 2016 13:36:30 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1464788186.73560ea4b7571af8950c13564c2f110809491964.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/resolv_wrapper/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/resolv_wrapper/Manifest net-dns/resolv_wrapper/resolv_wrapper-1.1.4.ebuild X-VCS-Directories: net-dns/resolv_wrapper/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 73560ea4b7571af8950c13564c2f110809491964 X-VCS-Branch: master Date: Wed, 1 Jun 2016 13:36:30 +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: 70d7ce80-a47a-4dc4-a675-c42fa7f2a059 X-Archives-Hash: 4d80f7afb4c68c4ab053372087906911 commit: 73560ea4b7571af8950c13564c2f110809491964 Author: Lars Wendler gentoo org> AuthorDate: Wed Jun 1 13:36:13 2016 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Jun 1 13:36:26 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73560ea4 net-dns/resolv_wrapper: Bump to version 1.1.4 Package-Manager: portage-2.2.28 Signed-off-by: Lars Wendler gentoo.org> net-dns/resolv_wrapper/Manifest | 1 + net-dns/resolv_wrapper/resolv_wrapper-1.1.4.ebuild | 25 ++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/net-dns/resolv_wrapper/Manifest b/net-dns/resolv_wrapper/Manifest index 902939c..9bfaa03 100644 --- a/net-dns/resolv_wrapper/Manifest +++ b/net-dns/resolv_wrapper/Manifest @@ -1 +1,2 @@ DIST resolv_wrapper-1.1.3.tar.gz 31755 SHA256 4d796e84d128bcbf34c35a5ad85253856cf31cc00044ef3abea3557b4b09e6c0 SHA512 0961ddeb63026832ca91c8534966ddf8c8d6242a95ea77784f5d3fae034bab9ca29def34fc16e4f6636129bb3d13c7e37eac648c88dc16aabe2b71fda8677817 WHIRLPOOL dfeb0a31d33a86f183d9cbd20a3ab01963fb008fb48ed4f5a284125f93988dfcaa2461fc442bb667bfeda94c4f5b7cea19db1bbea59d0b5181ea9b9ebf6c28b6 +DIST resolv_wrapper-1.1.4.tar.gz 33288 SHA256 bc027585d54c9966fb4daaace617784b436d0fdcf4e371f0bc7460830605235d SHA512 da7eb897d3964015b2bb6f7c1ba6483020c70e2d64c5e13b6c095f9e57dccf5b035d04e41c38953fa0eb260e83d7e23f6af32c0d8186553bae8d7b741c46c5ba WHIRLPOOL acbbbd383ead9d7093c5d585a34df1a3b38c81279aab275c0af43a0f53954d0c883c14135ed71c35e534c172a13374e394a56663fbe9954080750e7d8ac27903 diff --git a/net-dns/resolv_wrapper/resolv_wrapper-1.1.4.ebuild b/net-dns/resolv_wrapper/resolv_wrapper-1.1.4.ebuild new file mode 100644 index 0000000..949d14d --- /dev/null +++ b/net-dns/resolv_wrapper/resolv_wrapper-1.1.4.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit cmake-multilib + +DESCRIPTION="A wrapper for DNS name resolving or DNS faking" +HOMEPAGE="https://cwrap.org/resolv_wrapper.html" +SRC_URI="https://ftp.samba.org/pub/cwrap/${P}.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND="" +RDEPEND="${DEPEND}" + +# Work around a problem with >=dev-util/cmake-3.3.0 (bug #558340) +# Because of this we cannot use cmake-multilib_src_configure() here. +multilib_src_configure() { + local mycmakeargs=( -DCMAKE_LIBRARY_PATH=/usr/$(get_libdir) ) + cmake-utils_src_configure +}