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 C60B9138247 for ; Mon, 11 Nov 2013 19:32:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3ACD5E0BF8; Mon, 11 Nov 2013 19:32:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F1A85E0BC6 for ; Mon, 11 Nov 2013 19:32:11 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 136C233F148 for ; Mon, 11 Nov 2013 19:32:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 8EF95E530A for ; Mon, 11 Nov 2013 19:32:08 +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: <1384001332.a4a0b22604bc8e75e4b6b5153b0239419143cf06.pesa@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: eclass/ X-VCS-Repository: proj/qt X-VCS-Files: eclass/qt4-build.eclass X-VCS-Directories: eclass/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: a4a0b22604bc8e75e4b6b5153b0239419143cf06 X-VCS-Branch: master Date: Mon, 11 Nov 2013 19:32:08 +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: b2f78c09-82b4-4b7d-a09f-94ca35151945 X-Archives-Hash: b4f038c3c90ff6f7ce458fda71bed866 commit: a4a0b22604bc8e75e4b6b5153b0239419143cf06 Author: Elias Probst eliasprobst eu> AuthorDate: Sat Nov 9 12:48:52 2013 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Sat Nov 9 12:48:52 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=a4a0b226 [eclass/qt4-build] Set a custom $S only for release-builds. --- eclass/qt4-build.eclass | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/eclass/qt4-build.eclass b/eclass/qt4-build.eclass index 2c7c44b..ada7815 100644 --- a/eclass/qt4-build.eclass +++ b/eclass/qt4-build.eclass @@ -39,6 +39,7 @@ case ${QT4_BUILD_TYPE} in ;; release) SRC_URI="http://download.qt-project.org/official_releases/qt/${PV%.*}/${PV}/${MY_P}.tar.gz" + S=${WORKDIR}/${MY_P} ;; esac @@ -53,8 +54,6 @@ if [[ ${QT4_BUILD_TYPE} == live ]]; then DEPEND+=" dev-lang/perl" fi -S=${WORKDIR}/${MY_P} - # @FUNCTION: qt4-build_pkg_setup # @DESCRIPTION: # Sets up PATH and LD_LIBRARY_PATH.