commit: befc01d6639e191db151b7ebc49b17c674786696 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org> AuthorDate: Sun Apr 29 11:02:51 2018 +0000 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org> CommitDate: Sun Apr 29 11:26:09 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=befc01d6
games-emulation/lxdream: Stop using games.eclass Package-Manager: Portage-2.3.31, Repoman-2.3.9 games-emulation/lxdream/lxdream-0.9.1-r3.ebuild | 64 +++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/games-emulation/lxdream/lxdream-0.9.1-r3.ebuild b/games-emulation/lxdream/lxdream-0.9.1-r3.ebuild new file mode 100644 index 00000000000..b7f1520cfa3 --- /dev/null +++ b/games-emulation/lxdream/lxdream-0.9.1-r3.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit autotools flag-o-matic + +DESCRIPTION="An emulator for the Sega Dreamcast system" +HOMEPAGE="http://www.lxdream.org/" +SRC_URI="http://www.lxdream.org/count.php?file=${P}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +# lirc configure option is not recogniced +IUSE="debug profile pulseaudio sdl" #lirc + +RDEPEND=" + app-misc/lirc + + media-libs/alsa-lib + media-libs/libpng:0= + pulseaudio? ( media-sound/pulseaudio ) + sdl? ( media-libs/libsdl[sound] ) + virtual/opengl + x11-libs/gtk+:2 +" +DEPEND="${RDEPEND} + virtual/pkgconfig + sys-devel/gettext + virtual/os-headers + !!gnustep-base/gnustep-gui" #377635 + +src_prepare() { + default + + eapply "${FILESDIR}/${PN}-0.9.1-glib-single-include.patch" + + # Make .desktop file pass desktop-file-validate + sed -i \ + -e '/Encoding/d' \ + -e '/FilePattern/d' \ + -e '/Categories/s|$|;|' \ + ${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 + append-libs -lX11 -lm +} + +src_configure() { + # lirc configure option is not recognized + # $(use_with lirc) \ + econf \ + --datadir="/usr/share" \ + $(use_enable debug trace) \ + $(use_enable debug watch) \ + $(use_enable profile profiled) \ + $(use_with pulseaudio pulse) \ + $(use_with sdl) \ + --without-esd +}
