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 70333139694 for ; Sat, 11 Mar 2017 19:16:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BF400E0C21; Sat, 11 Mar 2017 19:15:58 +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 964F6E0C21 for ; Sat, 11 Mar 2017 19:15:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 563A63414C1 for ; Sat, 11 Mar 2017 19:15:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8802C64CB for ; Sat, 11 Mar 2017 19:15:55 +0000 (UTC) From: "Thomas Beierlein" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Beierlein" Message-ID: <1489259690.ecaf5311e2b81d5c41af19c86170c1ba958131f3.tomjbe@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/hamlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/hamlib/hamlib-3.1.ebuild X-VCS-Directories: media-libs/hamlib/ X-VCS-Committer: tomjbe X-VCS-Committer-Name: Thomas Beierlein X-VCS-Revision: ecaf5311e2b81d5c41af19c86170c1ba958131f3 X-VCS-Branch: master Date: Sat, 11 Mar 2017 19:15:55 +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: c3111c51-8c6c-4048-889a-99d4fd63b72c X-Archives-Hash: 0ac22a500bb77c5e65824c9dcce8ca43 commit: ecaf5311e2b81d5c41af19c86170c1ba958131f3 Author: Thomas Beierlein gentoo org> AuthorDate: Sat Mar 11 19:14:50 2017 +0000 Commit: Thomas Beierlein gentoo org> CommitDate: Sat Mar 11 19:14:50 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecaf5311 media-libs/hamlib: Fix installation for USE=perl (bug #611550). Thanks Toralf for reporting and Kent\n for pointing out how to fix. Package-Manager: Portage-2.3.4, Repoman-2.3.2 media-libs/hamlib/hamlib-3.1.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/media-libs/hamlib/hamlib-3.1.ebuild b/media-libs/hamlib/hamlib-3.1.ebuild index 2e02c1100b4..0b62f324895 100644 --- a/media-libs/hamlib/hamlib-3.1.ebuild +++ b/media-libs/hamlib/hamlib-3.1.ebuild @@ -46,6 +46,12 @@ src_prepare() { -e "s#fix}/include#fix}/include/hamlib#" \ hamlib.pc.in || die "sed failed" + # Correct install target to whatever INSTALLDIRS says and use vendor + # installdirs everywhere (bug #611550) + sed -i -e "s#install_site#install#" \ + -e 's#MAKEFILE="Hamlib-pl.mk"#MAKEFILE="Hamlib-pl.mk" INSTALLDIRS=vendor#' \ + bindings/Makefile.am || die "sed failed patching for perl" + # make building of documentation compatible with autotools-utils sed -i -e "s/doc:/html:/g" doc/Makefile.am || die "sed failed"