From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2A607138239 for ; Tue, 18 Jun 2019 15:59:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6779CE098E; Tue, 18 Jun 2019 15:59:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4AEC0E098E for ; Tue, 18 Jun 2019 15:59:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4E9E9346436 for ; Tue, 18 Jun 2019 15:59:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 76578627 for ; Tue, 18 Jun 2019 15:59:30 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1560873547.69dbc608e2213a54b525bffaef0d6b04c5335088.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/cadaver/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/cadaver/cadaver-0.23.3.ebuild X-VCS-Directories: net-misc/cadaver/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 69dbc608e2213a54b525bffaef0d6b04c5335088 X-VCS-Branch: master Date: Tue, 18 Jun 2019 15:59: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e11fa6e0-f4fd-47bb-87da-bc73dace308f X-Archives-Hash: a976b04cc81db9106cefad0588fadfa0 commit: 69dbc608e2213a54b525bffaef0d6b04c5335088 Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Tue Jun 18 15:26:52 2019 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Tue Jun 18 15:59:07 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69dbc608 net-misc/cadaver: Fix eautoreconf with >=sys-devel/gettext-0.20. Fixes: https://bugs.gentoo.org/686152 Signed-off-by: Arfrever Frehtes Taifersar Arahesis Apache.Org> Signed-off-by: Mike Gilbert gentoo.org> net-misc/cadaver/cadaver-0.23.3.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/net-misc/cadaver/cadaver-0.23.3.ebuild b/net-misc/cadaver/cadaver-0.23.3.ebuild index edb1d0379d7..cbb8805aaa1 100644 --- a/net-misc/cadaver/cadaver-0.23.3.ebuild +++ b/net-misc/cadaver/cadaver-0.23.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 2003-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -26,8 +26,9 @@ src_prepare() { rm -r lib/{expat,intl,neon} || die "rm failed" sed \ - -e "/NE_REQUIRE_VERSIONS/s/29/& 30/" \ - -e "s:lib/neon/Makefile lib/intl/Makefile ::" \ + -e "/NE_REQUIRE_VERSIONS/s:29:& 30:" \ + -e "/AM_GNU_GETTEXT/s:no-libtool:external:" \ + -e "/AC_CONFIG_FILES/s: lib/neon/Makefile lib/intl/Makefile::" \ -i configure.ac || die "sed configure.ac failed" sed -e "s/^\(SUBDIRS.*=\).*/\1/" -i Makefile.in || die "sed Makefile.in failed" cp /usr/share/gettext/po/Makefile.in.in po || die "cp failed"