commit: 449714b8e70c2c99b682839b33ffc8ad285def01 Author: Austin English <wizardedit <AT> gentoo <DOT> org> AuthorDate: Wed Oct 26 22:41:34 2016 +0000 Commit: Austin English <wizardedit <AT> gentoo <DOT> org> CommitDate: Wed Oct 26 22:42:10 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=449714b8
games-engines/xzip: remove deprecated games eclass Also update to EAPI 6 Gentoo-Bug: https://bugs.gentoo.org/574082 Package-Manager: portage-2.3.2 games-engines/xzip/xzip-1.8.2-r3.ebuild | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/games-engines/xzip/xzip-1.8.2-r3.ebuild b/games-engines/xzip/xzip-1.8.2-r3.ebuild new file mode 100644 index 00000000..1de891d --- /dev/null +++ b/games-engines/xzip/xzip-1.8.2-r3.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="X interface to Z-code based text games" +HOMEPAGE="http://www.eblong.com/zarf/xzip.html" +SRC_URI="http://www.eblong.com/zarf/ftp/xzip182.tar.Z" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" +RESTRICT="test" + +DEPEND="x11-libs/libX11" +RDEPEND=${DEPEND} + +S="${WORKDIR}/xzip" + +src_compile() { + emake \ + CFLAGS="${CFLAGS} -DAUTO_END_MODE" \ + LDFLAGS="${LDFLAGS}" +} + +src_install() { + dobin xzip + dodoc README + doman xzip.1 +}
