diff options
author | Pacho Ramos <pacho@gentoo.org> | 2018-04-29 13:02:51 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2018-04-29 13:26:09 +0200 |
commit | befc01d6639e191db151b7ebc49b17c674786696 (patch) | |
tree | 418e8b726e5637ef4574403c19c2381c063089bf /games-emulation/lxdream | |
parent | games-emulation/higan: Drop old (diff) | |
download | gentoo-befc01d6639e191db151b7ebc49b17c674786696.tar.gz gentoo-befc01d6639e191db151b7ebc49b17c674786696.tar.bz2 gentoo-befc01d6639e191db151b7ebc49b17c674786696.zip |
games-emulation/lxdream: Stop using games.eclass
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Diffstat (limited to 'games-emulation/lxdream')
-rw-r--r-- | games-emulation/lxdream/lxdream-0.9.1-r3.ebuild | 64 |
1 files changed, 64 insertions, 0 deletions
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 000000000000..b7f1520cfa36 --- /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 +} |