public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Jeroen Roovers (jer)" <jer@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in games-puzzle/seatris: seatris-0.0.14.ebuild ChangeLog
Date: Thu, 30 Oct 2014 22:18:33 +0000 (UTC)	[thread overview]
Message-ID: <20141030221833.566039199@oystercatcher.gentoo.org> (raw)

jer         14/10/30 22:18:33

  Modified:             seatris-0.0.14.ebuild ChangeLog
  Log:
  Fix building against sys-libs/ncurses[tinfo] (bug #526582).
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.11                 games-puzzle/seatris/seatris-0.0.14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/seatris/seatris-0.0.14.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/seatris/seatris-0.0.14.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/seatris/seatris-0.0.14.ebuild?r1=1.10&r2=1.11

Index: seatris-0.0.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-puzzle/seatris/seatris-0.0.14.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- seatris-0.0.14.ebuild	10 Feb 2009 11:55:04 -0000	1.10
+++ seatris-0.0.14.ebuild	30 Oct 2014 22:18:33 -0000	1.11
@@ -1,9 +1,9 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-puzzle/seatris/seatris-0.0.14.ebuild,v 1.10 2009/02/10 11:55:04 tupone Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-puzzle/seatris/seatris-0.0.14.ebuild,v 1.11 2014/10/30 22:18:33 jer Exp $
 
-EAPI=2
-inherit eutils games
+EAPI=5
+inherit eutils games toolchain-funcs
 
 DESCRIPTION="A color ncurses tetris clone"
 HOMEPAGE="http://www.earth.li/projectpurple/progs/seatris.html"
@@ -12,20 +12,24 @@
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="amd64 ~ppc ppc64 x86"
-IUSE=""
 
-DEPEND="sys-libs/ncurses"
+RDEPEND="sys-libs/ncurses"
+DEPEND="${DEPEND}"
 
 src_prepare() {
 	sed -i \
 		-e "s:/var/lib/games:${GAMES_STATEDIR}:" \
-		scoring.h seatris.6 \
-		|| die "sed failed"
+		scoring.h seatris.6 || die
+
 	epatch "${FILESDIR}"/${P}-as-needed.patch
 }
 
+src_compile() {
+	emake LIBS="$( $(tc-getPKG_CONFIG) --libs ncurses )"
+}
+
 src_install () {
-	dogamesbin seatris || die "dogamesbin failed"
+	dogamesbin seatris || die
 	doman seatris.6
 	dodoc ACKNOWLEDGEMENTS HISTORY README TODO example.seatrisrc
 	dodir "${GAMES_STATEDIR}"



1.9                  games-puzzle/seatris/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/seatris/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/seatris/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/seatris/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-puzzle/seatris/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	10 Feb 2009 11:55:04 -0000	1.8
+++ ChangeLog	30 Oct 2014 22:18:33 -0000	1.9
@@ -1,6 +1,10 @@
 # ChangeLog for games-puzzle/seatris
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-puzzle/seatris/ChangeLog,v 1.8 2009/02/10 11:55:04 tupone Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-puzzle/seatris/ChangeLog,v 1.9 2014/10/30 22:18:33 jer Exp $
+
+  30 Oct 2014; Jeroen Roovers <jer@gentoo.org>
+  files/seatris-0.0.14-as-needed.patch, seatris-0.0.14.ebuild:
+  Fix building against sys-libs/ncurses[tinfo] (bug #526582).
 
   10 Feb 2009; Alfredo Tupone <tupone@gentoo.org>
   +files/seatris-0.0.14-as-needed.patch, seatris-0.0.14.ebuild:
@@ -30,4 +34,3 @@
   11 Dec 2004; Michael Sterrett <mr_bones_@gentoo.org> +metadata.xml,
   +seatris-0.0.14.ebuild:
   initial commit - in response to bug #54939
-





             reply	other threads:[~2014-10-30 22:18 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-30 22:18 Jeroen Roovers (jer) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2014-10-31  2:00 [gentoo-commits] gentoo-x86 commit in games-puzzle/seatris: seatris-0.0.14.ebuild ChangeLog Michael Sterrett (mr_bones_)
2014-10-30 22:20 Jeroen Roovers (jer)
2009-02-10 11:55 Alfredo Tupone (tupone)
2009-01-29  2:12 Michael Sterrett (mr_bones_)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20141030221833.566039199@oystercatcher.gentoo.org \
    --to=jer@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox