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 07D961381E0 for ; Tue, 16 Feb 2016 14:40:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7D85821C014; Tue, 16 Feb 2016 14:40:45 +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 1B3D121C015 for ; Tue, 16 Feb 2016 14:40:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 11821340B1C for ; Tue, 16 Feb 2016 14:40:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 82F66E5F for ; Tue, 16 Feb 2016 14:40:42 +0000 (UTC) From: "Michael Sterrett" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Sterrett" Message-ID: <1455633632.7a9bfb05e70781a6608dfa8a7aed0ca814eb7a84.mr_bones_@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/lxdream/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/lxdream/lxdream-0.9.1-r2.ebuild X-VCS-Directories: games-emulation/lxdream/ X-VCS-Committer: mr_bones_ X-VCS-Committer-Name: Michael Sterrett X-VCS-Revision: 7a9bfb05e70781a6608dfa8a7aed0ca814eb7a84 X-VCS-Branch: master Date: Tue, 16 Feb 2016 14:40:42 +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: fb4d0366-b978-45af-ad14-341f6c6f69b5 X-Archives-Hash: 4ccd819a9aa6e3b27d97685379591050 commit: 7a9bfb05e70781a6608dfa8a7aed0ca814eb7a84 Author: Michael Sterrett gentoo org> AuthorDate: Tue Feb 16 14:38:43 2016 +0000 Commit: Michael Sterrett gentoo org> CommitDate: Tue Feb 16 14:40:32 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a9bfb05 games-emulation/lxdream: EAPI=5; fix underlinking (bug #369323) Package-Manager: portage-2.2.26 games-emulation/lxdream/lxdream-0.9.1-r2.ebuild | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/games-emulation/lxdream/lxdream-0.9.1-r2.ebuild b/games-emulation/lxdream/lxdream-0.9.1-r2.ebuild index 4147ddf..aa25c24 100644 --- a/games-emulation/lxdream/lxdream-0.9.1-r2.ebuild +++ b/games-emulation/lxdream/lxdream-0.9.1-r2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=4 -inherit eutils games +EAPI=5 +inherit eutils flag-o-matic games DESCRIPTION="An emulator for the Sega Dreamcast system" HOMEPAGE="http://www.lxdream.org/" @@ -35,13 +35,14 @@ src_prepare() { -e '/Encoding/d' \ -e '/FilePattern/d' \ -e '/Categories/s|$|;|' \ - ${PN}.desktop || die "sed failed" + ${PN}.desktop || die # Do not override user-specified CFLAGS sed -i \ -e s/'CFLAGS=\"-g -fexceptions\"'/'CFLAGS=\"${CFLAGS} -g -fexceptions\"'/ \ -e '/CCOPT/d' \ -e '/OBJCOPT/d' \ - configure || die "sed failed" + configure || die + append-libs -lX11 -lm } src_configure() { @@ -57,7 +58,6 @@ src_configure() { } src_install() { - emake DESTDIR="${D}" install - dodoc ChangeLog NEWS README + default prepgamesdirs }