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 3A8FD1388BF for ; Wed, 13 Jan 2016 20:49:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B36A321C014; Wed, 13 Jan 2016 20:49:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 55AB621C014 for ; Wed, 13 Jan 2016 20:49:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3CEA5340A3D for ; Wed, 13 Jan 2016 20:49:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9BF9CA01 for ; Wed, 13 Jan 2016 20:49:25 +0000 (UTC) From: "Devan Franchini" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Devan Franchini" Message-ID: <1452718165.40cd1e1305bbc6dfe82c27ad3b78f4556527a2d0.twitch153@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/dolphin/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/dolphin/dolphin-9999.ebuild X-VCS-Directories: games-emulation/dolphin/ X-VCS-Committer: twitch153 X-VCS-Committer-Name: Devan Franchini X-VCS-Revision: 40cd1e1305bbc6dfe82c27ad3b78f4556527a2d0 X-VCS-Branch: master Date: Wed, 13 Jan 2016 20:49:25 +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: 3b1fc91f-205b-4bc3-a18f-db86a1f5105c X-Archives-Hash: 7d0c8d042dfc6b499e4675f2479a11f9 commit: 40cd1e1305bbc6dfe82c27ad3b78f4556527a2d0 Author: Devan Franchini gentoo org> AuthorDate: Wed Jan 13 20:48:57 2016 +0000 Commit: Devan Franchini gentoo org> CommitDate: Wed Jan 13 20:49:25 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40cd1e13 games-emulation/dolphin: Removes saving of GL external folder The GL external folder is no longer used and attempting to save it will cause a failure when running the ebuild. X-Gentoo-Bug: 571272 X-Gentoo-Bug-URL: https://bugs.gentoo.org/571272 Package-Manager: portage-2.2.24 games-emulation/dolphin/dolphin-9999.ebuild | 3 --- 1 file changed, 3 deletions(-) diff --git a/games-emulation/dolphin/dolphin-9999.ebuild b/games-emulation/dolphin/dolphin-9999.ebuild index c44022a..33a6bf8 100644 --- a/games-emulation/dolphin/dolphin-9999.ebuild +++ b/games-emulation/dolphin/dolphin-9999.ebuild @@ -119,18 +119,15 @@ src_prepare() { # Remove ALL the bundled libraries, aside from: # - SOIL: The sources are not public. # - Bochs-disasm: Don't know what it is. - # - GL: A custom gl.h file is used. # - gtest: Their build set up solely relies on the build in gtest. # - xxhash: Not on the tree. mv Externals/SOIL . || die mv Externals/Bochs_disasm . || die - mv Externals/GL . || die mv Externals/gtest . || die mv Externals/xxhash . || die rm -r Externals/* || die "Failed to delete Externals dir." mv Bochs_disasm Externals || die mv SOIL Externals || die - mv GL Externals || die mv gtest Externals || die mv xxhash Externals || die }