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 2D8AB138334 for ; Fri, 26 Jul 2019 13:00:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E4EAE082D; Fri, 26 Jul 2019 13:00:21 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 02541E082D for ; Fri, 26 Jul 2019 13:00:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 289EB348BBC for ; Fri, 26 Jul 2019 13:00:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C8A6D608 for ; Fri, 26 Jul 2019 13:00:13 +0000 (UTC) From: "Guilherme Amadio" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Guilherme Amadio" Message-ID: <1564145983.1c9d4d04419adae8b6e7db799abbe96b7dc74cdc.amadio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/povray/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/povray/povray-3.7.0.0-r1.ebuild X-VCS-Directories: media-gfx/povray/ X-VCS-Committer: amadio X-VCS-Committer-Name: Guilherme Amadio X-VCS-Revision: 1c9d4d04419adae8b6e7db799abbe96b7dc74cdc X-VCS-Branch: master Date: Fri, 26 Jul 2019 13:00:13 +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: ddecdc24-4abf-4eb3-88c9-f3b4447d7160 X-Archives-Hash: e2f88c3198df93cce5e1344d638e4c29 commit: 1c9d4d04419adae8b6e7db799abbe96b7dc74cdc Author: Guilherme Amadio gentoo org> AuthorDate: Fri Jul 26 12:20:27 2019 +0000 Commit: Guilherme Amadio gentoo org> CommitDate: Fri Jul 26 12:59:43 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c9d4d04 media-gfx/povray: use X11 headers and libraries from prefix The build system currently hard-codes the X11 include directory to /usr/include and the library directory to /usr/lib, so the fix is put unconditionally to fix libdir on non-prefix builds. Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Guilherme Amadio gentoo.org> media-gfx/povray/povray-3.7.0.0-r1.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/media-gfx/povray/povray-3.7.0.0-r1.ebuild b/media-gfx/povray/povray-3.7.0.0-r1.ebuild index 2b48c77734e..25d38e4a1bc 100644 --- a/media-gfx/povray/povray-3.7.0.0-r1.ebuild +++ b/media-gfx/povray/povray-3.7.0.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -67,12 +67,14 @@ src_prepare() { rm -rf libraries || die - # Change some destination directories that cannot be adjusted via configure + # Change some directories that cannot be adjusted via configure sed \ -e 's:${povsysconfdir}/$PACKAGE/$VERSION_BASE:${povsysconfdir}/'${PN}':g' \ -e 's:${povdatadir}/$PACKAGE-$VERSION_BASE:${povdatadir}/'${PN}':g' \ -e 's:${povdatadir}/doc/$PACKAGE-$VERSION_BASE:${povdatadir}/doc/'${PF}':g' \ -e 's:BOOST_THREAD_LIBS $LIBS:BOOST_THREAD_LIBS $LIBS -lboost_date_time:g' \ + -e 's:"/usr/include":"'${EPREFIX}'/usr/include":' \ + -e 's:"/usr/lib":"'${EPREFIX}'/usr/'$(get_libdir)'":' \ -i configure.ac || die sed \