From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1JHeT9-0007Ah-1q for garchives@archives.gentoo.org; Wed, 23 Jan 2008 12:12:39 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EF617E048A; Wed, 23 Jan 2008 12:12:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id CD469E048A for ; Wed, 23 Jan 2008 12:12:37 +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 56E8D6588A for ; Wed, 23 Jan 2008 12:12:37 +0000 (UTC) Received: from caleb by stork.gentoo.org with local (Exim 4.68) (envelope-from ) id 1JHeT6-0001DF-1O for gentoo-commits@lists.gentoo.org; Wed, 23 Jan 2008 12:12:36 +0000 From: "Caleb Tennis (caleb)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, caleb@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/qt-gui: qt-gui-4.4.0_rc1.ebuild X-VCS-Repository: gentoo-x86 X-VCS-Files: qt-gui-4.4.0_rc1.ebuild X-VCS-Directories: x11-libs/qt-gui X-VCS-Committer: caleb X-VCS-Committer-Name: Caleb Tennis Content-Type: text/plain; charset=utf8 Message-Id: Sender: Caleb Tennis Date: Wed, 23 Jan 2008 12:12:36 +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: 75edf331-ff97-4a88-b055-1820d6215a5d X-Archives-Hash: c95472063a93130eb00663d3bdc53afc caleb 08/01/23 12:12:36 Modified: qt-gui-4.4.0_rc1.ebuild Log: Only compile the imageformats we support (Portage version: 2.1.4) Revision Changes Path 1.9 x11-libs/qt-gui/qt-gui-4.4.0_rc1.ebuild file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-gui/qt= -gui-4.4.0_rc1.ebuild?rev=3D1.9&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-gui/qt= -gui-4.4.0_rc1.ebuild?rev=3D1.9&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-gui/qt= -gui-4.4.0_rc1.ebuild?r1=3D1.8&r2=3D1.9 Index: qt-gui-4.4.0_rc1.ebuild =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/x11-libs/qt-gui/qt-gui-4.4.0_rc1.ebuild= ,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- qt-gui-4.4.0_rc1.ebuild 22 Jan 2008 14:37:23 -0000 1.8 +++ qt-gui-4.4.0_rc1.ebuild 23 Jan 2008 12:12:35 -0000 1.9 @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-gui/qt-gui-4.4.0_rc1.ebui= ld,v 1.8 2008/01/22 14:37:23 caleb Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-gui/qt-gui-4.4.0_rc1.ebui= ld,v 1.9 2008/01/23 12:12:35 caleb Exp $ =20 inherit eutils qt4-build =20 @@ -45,7 +45,7 @@ x11-proto/xextproto x11-proto/inputproto" =20 -QT4_TARGET_DIRECTORIES=3D"src/gui tools/designer tools/linguist src/plug= ins/imageformats src/plugins/designer" +QT4_TARGET_DIRECTORIES=3D"src/gui tools/designer tools/linguist src/plug= ins/imageformats/gif src/plugins/imageformats/ico src/plugins/imageformat= s/jpeg src/plugins/designer" =20 src_unpack() { qt4-build_src_unpack @@ -103,11 +103,17 @@ ./configure ${myconf} || die =20 use dbus && QT4_TARGET_DIRECTORIES=3D"${QT4_TARGET_DIRECTORIES} tools/q= dbus/qdbusviewer" + use mng && QT4_TARGET_DIRECTORIES=3D"${QT4_TARGET_DIRECTORIES} src/plug= ins/imageformats/mng" + use tiff && QT4_TARGET_DIRECTORIES=3D"${QT4_TARGET_DIRECTORIES} src/plu= gins/imageformats/tiff" + build_target_directories } =20 src_install() { use dbus && QT4_TARGET_DIRECTORIES=3D"${QT4_TARGET_DIRECTORIES} tools/q= dbus/qdbusviewer" + use mng && QT4_TARGET_DIRECTORIES=3D"${QT4_TARGET_DIRECTORIES} src/plug= ins/imageformats/mng" + use tiff && QT4_TARGET_DIRECTORIES=3D"${QT4_TARGET_DIRECTORIES} src/plu= gins/imageformats/tiff" + qt4-build_src_install =20 insinto /usr/share/applications --=20 gentoo-commits@lists.gentoo.org mailing list