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 83D6E138010 for ; Tue, 18 Sep 2012 23:38:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 41BE4E0539; Tue, 18 Sep 2012 23:38:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 096A5E0539 for ; Tue, 18 Sep 2012 23:38:16 +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 634FF33C600 for ; Tue, 18 Sep 2012 23:38:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 729EDE5444 for ; Tue, 18 Sep 2012 23:38:14 +0000 (UTC) From: "Chi-Thanh Christopher Nguyen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Chi-Thanh Christopher Nguyen" Message-ID: <1348011515.ab152210aa304e940302836bd5fe8acb5cc3d10d.chithead@gentoo> Subject: [gentoo-commits] proj/x11:master commit in: media-libs/glu/ X-VCS-Repository: proj/x11 X-VCS-Files: media-libs/glu/glu-9999.ebuild X-VCS-Directories: media-libs/glu/ X-VCS-Committer: chithead X-VCS-Committer-Name: Chi-Thanh Christopher Nguyen X-VCS-Revision: ab152210aa304e940302836bd5fe8acb5cc3d10d X-VCS-Branch: master Date: Tue, 18 Sep 2012 23:38:14 +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: 7894b6b3-a08c-4dad-a1c1-76b6752331db X-Archives-Hash: ecb88ccfc1b922a15387abac51972106 commit: ab152210aa304e940302836bd5fe8acb5cc3d10d Author: Chi-Thanh Christopher Nguyen gentoo org> AuthorDate: Tue Sep 18 23:38:35 2012 +0000 Commit: Chi-Thanh Christopher Nguyen cs tu-berlin de> CommitDate: Tue Sep 18 23:38:35 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=ab152210 media-libs/glu: needs libGL to build, add SRC_URI. --- media-libs/glu/glu-9999.ebuild | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/media-libs/glu/glu-9999.ebuild b/media-libs/glu/glu-9999.ebuild index f261111..43c68dd 100644 --- a/media-libs/glu/glu-9999.ebuild +++ b/media-libs/glu/glu-9999.ebuild @@ -15,14 +15,20 @@ inherit autotools-utils multilib ${GIT_ECLASS} DESCRIPTION="The OpenGL Utility Library" HOMEPAGE="http://cgit.freedesktop.org/mesa/glu/" -SRC_URI="" + +if [[ ${PV} = 9999* ]]; then + SRC_URI="" +else + SRC_URI="ftp://ftp.freedesktop.org/pub/mesa/${PN}/${P}.tar.bz2" +fi + LICENSE="SGI-B-2.0" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="multilib static-libs" -DEPEND="" +DEPEND="virtual/opengl" RDEPEND="${DEPEND} !<=media-libs/mesa-9_pre20120831 multilib? ( !app-emulation/emul-linux-x86-opengl )"