diff options
author | Austin English <wizardedit@gentoo.org> | 2016-09-14 12:55:48 -0500 |
---|---|---|
committer | Austin English <wizardedit@gentoo.org> | 2016-09-14 14:12:31 -0500 |
commit | df651bf9ed9576893ab94225e72bd407504ac2d5 (patch) | |
tree | 47da20c1ba618b1911e10ab0ecdc2b0dda512524 /games-roguelike/mazesofmonad | |
parent | media-libs/fdk-aac: Remove old ebuild (diff) | |
download | gentoo-df651bf9ed9576893ab94225e72bd407504ac2d5.tar.gz gentoo-df651bf9ed9576893ab94225e72bd407504ac2d5.tar.bz2 gentoo-df651bf9ed9576893ab94225e72bd407504ac2d5.zip |
games-roguelike/mazesofmonad: remove deprecated games eclass
Also update to EAPI 6
Gentoo-Bug: https://bugs.gentoo.org/574082
Package-Manager: portage-2.3.0
Diffstat (limited to 'games-roguelike/mazesofmonad')
-rw-r--r-- | games-roguelike/mazesofmonad/mazesofmonad-1.0.9-r3.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/games-roguelike/mazesofmonad/mazesofmonad-1.0.9-r3.ebuild b/games-roguelike/mazesofmonad/mazesofmonad-1.0.9-r3.ebuild new file mode 100644 index 000000000000..164afb214a38 --- /dev/null +++ b/games-roguelike/mazesofmonad/mazesofmonad-1.0.9-r3.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +CABAL_FEATURES="bin" +inherit eutils haskell-cabal + +MY_PN=MazesOfMonad +MY_P=${MY_PN}-${PV} + +DESCRIPTION="Console-based roguelike Role Playing Game similar to nethack" +HOMEPAGE="https://github.com/JPMoresmau/MazesOfMonad + http://hackage.haskell.org/package/MazesOfMonad" +SRC_URI="mirror://hackage/packages/archive/${MY_PN}/${PV}/${MY_P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-libs/gmp-5:0= + virtual/libffi:=" +DEPEND="${RDEPEND} + >=dev-lang/ghc-7.4.1 + >=dev-haskell/cabal-1.6 + dev-haskell/hunit + dev-haskell/mtl + dev-haskell/random + dev-haskell/regex-posix + dev-haskell/time-locale-compat +" + +S=${WORKDIR}/${MY_P} + +PATCHES=( + "${FILESDIR}"/${PN}-1.0.9-time-1.5.patch +) |