From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1LidIt-0000lJ-Fy for garchives@archives.gentoo.org; Sat, 14 Mar 2009 23:30:07 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E0B83E0436; Sat, 14 Mar 2009 23:30:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id C16EEE0436 for ; Sat, 14 Mar 2009 23:30:06 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 623436463F for ; Sat, 14 Mar 2009 23:30:06 +0000 (UTC) Received: from yngwin by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1LidIr-0003O4-NR for gentoo-commits@lists.gentoo.org; Sat, 14 Mar 2009 23:30:06 +0000 From: "Ben de Groot (yngwin)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, yngwin@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: qt4.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: qt4.eclass X-VCS-Directories: eclass X-VCS-Committer: yngwin X-VCS-Committer-Name: Ben de Groot Content-Type: text/plain; charset=utf8 Message-Id: Sender: Ben de Groot Date: Sat, 14 Mar 2009 23:30:05 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 34c83b6d-fb38-4db1-86b5-c5ade9f4611b X-Archives-Hash: 8159e5879a2b606a336139c7e1cb84e1 yngwin 09/03/14 23:30:05 Modified: qt4.eclass Log: Reverting qt4.eclass additions of src_configure and src_compile, which = have wider implications then i realized on my previous commit. But qt4_sr= c_prepare stays, for autopatch functionality. And QT4_BUILT_WITH_USE stuf= f remains deprecated. Use EAPI=3D2 use deps pretty please! I also hope th= is commit message is verbose enough to satisfy Donnie ;-) Revision Changes Path 1.52 eclass/qt4.eclass file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/qt4.eclass?= rev=3D1.52&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/qt4.eclass?= rev=3D1.52&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/qt4.eclass?= r1=3D1.51&r2=3D1.52 Index: qt4.eclass =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/eclass/qt4.eclass,v retrieving revision 1.51 retrieving revision 1.52 diff -u -r1.51 -r1.52 --- qt4.eclass 14 Mar 2009 15:31:28 -0000 1.51 +++ qt4.eclass 14 Mar 2009 23:30:05 -0000 1.52 @@ -1,6 +1,6 @@ # Copyright 2005-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt4.eclass,v 1.51 2009/03/14 1= 5:31:28 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4.eclass,v 1.52 2009/03/14 2= 3:30:05 yngwin Exp $ =20 # @ECLASS: qt4.eclass # @MAINTAINER: @@ -191,29 +191,29 @@ # @DESCRIPTION: # Default src_configure function for packages that depend on qt4. If you= have to # override src_configure in your ebuild, call qt4_src_configure in it. -qt4_src_configure() { - debug-print-function $FUNCNAME "$@" - eqmake4 -} +#qt4_src_configure() { +# debug-print-function $FUNCNAME "$@" +# eqmake4 +#} =20 # @FUNCTION: qt4_src_compile # @DESCRIPTION: # Default src_compile function for packages that depend on qt4. If you h= ave to # override src_compile in your ebuild (probably you don't need to), call # qt4_src_compile in it. -qt4_src_compile() { - debug-print-function $FUNCNAME "$@" - case "${EAPI:-0}" in - 2) - emake || die "emake failed" - ;; - 0|1) - qt4_src_prepare - qt4_src_configure - emake || die "emake failed" - ;; - esac -} +#qt4_src_compile() { +# debug-print-function $FUNCNAME "$@" +# case "${EAPI:-0}" in +# 2) +# emake || die "emake failed" +# ;; +# 0|1) +# qt4_src_prepare +# qt4_src_configure +# emake || die "emake failed" +# ;; +# esac +#} =20 # @FUNCTION: eqmake4 # @USAGE: [.pro file] [additional parameters to qmake] @@ -285,9 +285,9 @@ =20 case ${EAPI:-0} in 2) - EXPORT_FUNCTIONS pkg_setup src_prepare src_configure src_compile + EXPORT_FUNCTIONS pkg_setup src_prepare ;; 0|1) - EXPORT_FUNCTIONS pkg_setup src_compile + EXPORT_FUNCTIONS pkg_setup ;; esac