diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2011-12-19 22:09:35 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2011-12-19 22:09:35 +0000 |
commit | 7b78f8b291f4231db8caf96e4d7216141ae899aa (patch) | |
tree | d0ba4bf89826f817342aef178d9202af88d2585a /games-arcade/stardork | |
parent | Version Bump, cleaned old (diff) | |
download | gentoo-2-7b78f8b291f4231db8caf96e4d7216141ae899aa.tar.gz gentoo-2-7b78f8b291f4231db8caf96e4d7216141ae899aa.tar.bz2 gentoo-2-7b78f8b291f4231db8caf96e4d7216141ae899aa.zip |
version bump (bug #394673)
(Portage version: 2.1.10.11/cvs/Linux i686)
Diffstat (limited to 'games-arcade/stardork')
-rw-r--r-- | games-arcade/stardork/ChangeLog | 9 | ||||
-rw-r--r-- | games-arcade/stardork/stardork-0.7.ebuild | 31 |
2 files changed, 38 insertions, 2 deletions
diff --git a/games-arcade/stardork/ChangeLog b/games-arcade/stardork/ChangeLog index 556c7b767e05..cbd33e6bf28d 100644 --- a/games-arcade/stardork/ChangeLog +++ b/games-arcade/stardork/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-arcade/stardork -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/stardork/ChangeLog,v 1.8 2008/05/05 20:20:05 nyhm Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/stardork/ChangeLog,v 1.9 2011/12/19 22:09:35 mr_bones_ Exp $ + +*stardork-0.7 (19 Dec 2011) + + 19 Dec 2011; Michael Sterrett <mr_bones_@gentoo.org> +stardork-0.7.ebuild: + version bump (bug #394673) 05 May 2008; Tristan Heaven <nyhm@gentoo.org> stardork-0.6.ebuild: Respect CFLAGS/LDFLAGS; add ~amd64 keyword diff --git a/games-arcade/stardork/stardork-0.7.ebuild b/games-arcade/stardork/stardork-0.7.ebuild new file mode 100644 index 000000000000..13873b11f3da --- /dev/null +++ b/games-arcade/stardork/stardork-0.7.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/stardork/stardork-0.7.ebuild,v 1.1 2011/12/19 22:09:35 mr_bones_ Exp $ + +EAPI=2 +inherit toolchain-funcs games + +DESCRIPTION="An ncurses-based space shooter" +HOMEPAGE="http://stardork.sourceforge.net/" +SRC_URI="mirror://sourceforge/stardork/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="" + +DEPEND="sys-libs/ncurses" + +src_prepare() { + rm -f Makefile +} + +src_compile() { + emake CC="$(tc-getCC)" LDLIBS=-lncurses ${PN} || die +} + +src_install() { + dogamesbin ${PN} || die + dodoc README + prepgamesdirs +} |