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 BF047139695 for ; Sat, 29 Apr 2017 19:46:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C59D2E0D39; Sat, 29 Apr 2017 19:46:26 +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 9DF45E0D39 for ; Sat, 29 Apr 2017 19:46:26 +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 69929341301 for ; Sat, 29 Apr 2017 19:46:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C757E7443 for ; Sat, 29 Apr 2017 19:46:23 +0000 (UTC) From: "Davide Pesavento" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Davide Pesavento" Message-ID: <1493495101.f2b996694e4fd84d55a3f066eb30ca5e682a8720.pesa@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qt-creator/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qt-creator/qt-creator-4.3.0_beta1.ebuild X-VCS-Directories: dev-qt/qt-creator/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: f2b996694e4fd84d55a3f066eb30ca5e682a8720 X-VCS-Branch: master Date: Sat, 29 Apr 2017 19:46:23 +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: 8de4be9b-d341-48a6-8901-84b4dd7a9863 X-Archives-Hash: 472966aa39c6b797ca27e11064fd68c4 commit: f2b996694e4fd84d55a3f066eb30ca5e682a8720 Author: Davide Pesavento gentoo org> AuthorDate: Sat Apr 29 19:40:27 2017 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Sat Apr 29 19:45:01 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2b99669 dev-qt/qt-creator: fix path to some clang headers Gentoo-Bug: 614872 Package-Manager: Portage-2.3.5, Repoman-2.3.2 dev-qt/qt-creator/qt-creator-4.3.0_beta1.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-qt/qt-creator/qt-creator-4.3.0_beta1.ebuild b/dev-qt/qt-creator/qt-creator-4.3.0_beta1.ebuild index d265a06c6ee..7cfd8374e2d 100644 --- a/dev-qt/qt-creator/qt-creator-4.3.0_beta1.ebuild +++ b/dev-qt/qt-creator/qt-creator-4.3.0_beta1.ebuild @@ -139,9 +139,11 @@ src_prepare() { sed -i -e 's/\//' tests/auto/timeline/timeline.pro || die sed -i -e 's/\//' tests/auto/valgrind/valgrind.pro || die + # fix path to some clang headers + sed -i -e "/^CLANG_RESOURCE_DIR\s*=/ s:\$\${LLVM_LIBDIR}:${EPREFIX}/usr/lib:" src/shared/clang/clang_defines.pri || die + # fix translations - sed -i -e "/^LANGUAGES =/ s:=.*:= $(l10n_get_locales):" \ - share/qtcreator/translations/translations.pro || die + sed -i -e "/^LANGUAGES\s*=/ s:=.*:= $(l10n_get_locales):" share/qtcreator/translations/translations.pro || die # remove bundled qbs rm -rf src/shared/qbs || die