diff options
author | Pacho Ramos <pacho@gentoo.org> | 2018-04-29 13:03:03 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2018-04-29 13:26:11 +0200 |
commit | 1cd2b658c4a363450abe75be41eb0ad9b93b652c (patch) | |
tree | a6bf6659d90f94f39da99001036d9abaae561fac /games-emulation/lxdream | |
parent | games-emulation/lxdream: Stop using games.eclass (diff) | |
download | gentoo-1cd2b658c4a363450abe75be41eb0ad9b93b652c.tar.gz gentoo-1cd2b658c4a363450abe75be41eb0ad9b93b652c.tar.bz2 gentoo-1cd2b658c4a363450abe75be41eb0ad9b93b652c.zip |
games-emulation/lxdream: Drop old
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-r2.ebuild | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/games-emulation/lxdream/lxdream-0.9.1-r2.ebuild b/games-emulation/lxdream/lxdream-0.9.1-r2.ebuild deleted file mode 100644 index 38a59d36d6a5..000000000000 --- a/games-emulation/lxdream/lxdream-0.9.1-r2.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils flag-o-matic games - -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" -IUSE="debug lirc profile pulseaudio sdl" - -RDEPEND="lirc? ( 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() { - epatch "${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() { - egamesconf \ - --datadir="${GAMES_DATADIR_BASE}" \ - $(use_enable debug trace) \ - $(use_enable debug watch) \ - $(use_enable profile profiled) \ - $(use_with lirc) \ - $(use_with pulseaudio pulse) \ - $(use_with sdl) \ - --without-esd -} - -src_install() { - default - prepgamesdirs -} |