diff options
author | Austin English <wizardedit@gentoo.org> | 2016-08-05 13:49:18 -0500 |
---|---|---|
committer | Austin English <wizardedit@gentoo.org> | 2016-08-05 14:43:17 -0500 |
commit | 89e172db0aa6b6d1d30e4c509286dd27647827e4 (patch) | |
tree | 2a8ab6fa9930dd4367ad5ab51d394c21df0f4b6b /games-mud/crystal/crystal-0.2.4-r1.ebuild | |
parent | sys-fs/multipath-tools: version bump (diff) | |
download | gentoo-89e172db0aa6b6d1d30e4c509286dd27647827e4.tar.gz gentoo-89e172db0aa6b6d1d30e4c509286dd27647827e4.tar.bz2 gentoo-89e172db0aa6b6d1d30e4c509286dd27647827e4.zip |
games-mud/crystal: 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-mud/crystal/crystal-0.2.4-r1.ebuild')
-rw-r--r-- | games-mud/crystal/crystal-0.2.4-r1.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/games-mud/crystal/crystal-0.2.4-r1.ebuild b/games-mud/crystal/crystal-0.2.4-r1.ebuild new file mode 100644 index 000000000000..0fa260d972f3 --- /dev/null +++ b/games-mud/crystal/crystal-0.2.4-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit autotools eutils + +DESCRIPTION="The crystal MUD client" +HOMEPAGE="http://www.evilmagic.org/crystal/" +SRC_URI="http://www.evilmagic.org/dist/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND=" + dev-libs/openssl:0= + sys-libs/ncurses:0= + sys-libs/zlib + virtual/libiconv" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}"/${P}-gcc43.patch + "${FILESDIR}"/${P}-build.patch +) + +src_prepare() { + default + + # avoid colliding with xscreensaver (bug #281191) + mv crystal.6 crystal-mud.6 || die + mv configure.in configure.ac || die + eautoreconf +} + +src_configure() { + econf --disable-scripting +} |