diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2015-10-01 14:51:46 -0400 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2015-10-01 14:52:07 -0400 |
commit | 5304a68725b2e96c53f4150ecc37e19bf6b040be (patch) | |
tree | f59841a13b2a9abb24cc8bdcb6ec1e3e0e81f261 /games-arcade/netris/netris-0.52-r1.ebuild | |
parent | dev-util/jenkins-bin: Version bump. Remove old (diff) | |
download | gentoo-5304a68725b2e96c53f4150ecc37e19bf6b040be.tar.gz gentoo-5304a68725b2e96c53f4150ecc37e19bf6b040be.tar.bz2 gentoo-5304a68725b2e96c53f4150ecc37e19bf6b040be.zip |
actually apply Debian patches (bug #561928)
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'games-arcade/netris/netris-0.52-r1.ebuild')
-rw-r--r-- | games-arcade/netris/netris-0.52-r1.ebuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/games-arcade/netris/netris-0.52-r1.ebuild b/games-arcade/netris/netris-0.52-r1.ebuild new file mode 100644 index 000000000000..dcc26a47dcbc --- /dev/null +++ b/games-arcade/netris/netris-0.52-r1.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils games + +DEB_VER=9 +DESCRIPTION='Classic networked version of T*tris' +HOMEPAGE='http://www.netris.org/' +SRC_URI="ftp://ftp.netris.org/pub/netris/${P}.tar.gz + mirror://debian/pool/main/n/netris/netris_${PV}-${DEB_VER}.diff.gz" + +LICENSE='GPL-2' +SLOT=0 +KEYWORDS='~amd64 ~mips ~ppc ~sparc ~x86 ~x86-fbsd' +IUSE='' + +DEPEND='sys-libs/ncurses:0=' +RDEPEND=${DEPEND} + +src_prepare() { + epatch "${WORKDIR}"/netris_${PV}-${DEB_VER}.diff + epatch netris-0.52/debian/patches/[01]* + # bug #185332 + sed -i \ + -e '/sys\/time/ i\ +#include <sys/types.h> \ +#include <time.h> +' \ + -e '/netint2/ s/short/int16_t/' \ + -e '/netint4/ s/long/int32_t/' \ + netris.h || die + sed -i \ + -e 's/volatile //g' \ + -e '/Be more forgiving/d' \ + -e 's/static myRandSeed/static int myRandSeed/' \ + util.c || die + sed -i \ + -e 's/\(long pauseTimeLeft\)/\1 = 0/' \ + game.c || die + sed -i \ + -e '/^CC/d' \ + -e '/^COPT/d' \ + -e '/^CFLAGS/d' \ + -e 's/(LFLAGS)/(LDFLAGS) $(LFLAGS)/' \ + Configure || die +} + +src_configure() { + bash ./Configure -O || die +} + +src_install() { + dogamesbin netris sr + dodoc FAQ README robot_desc + prepgamesdirs +} |