diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-06-02 23:26:54 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-06-02 23:26:54 +0000 |
commit | 68151ca07f7e6cfa24a2dff8d8e1bfece4bca0a4 (patch) | |
tree | 2bbe34a6804e2d7f75f4867fd83377dd7f762494 /games-misc | |
parent | new release for the dependance on gtk2-fu-0.08 (diff) | |
download | historical-68151ca07f7e6cfa24a2dff8d8e1bfece4bca0a4.tar.gz historical-68151ca07f7e6cfa24a2dff8d8e1bfece4bca0a4.tar.bz2 historical-68151ca07f7e6cfa24a2dff8d8e1bfece4bca0a4.zip |
version bump
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'games-misc')
-rw-r--r-- | games-misc/qlife/ChangeLog | 9 | ||||
-rw-r--r-- | games-misc/qlife/Manifest | 14 | ||||
-rw-r--r-- | games-misc/qlife/files/digest-qlife-0.8 | 1 | ||||
-rw-r--r-- | games-misc/qlife/qlife-0.8.ebuild | 27 |
4 files changed, 38 insertions, 13 deletions
diff --git a/games-misc/qlife/ChangeLog b/games-misc/qlife/ChangeLog index 14ce7903bdf0..2fe9b1a90670 100644 --- a/games-misc/qlife/ChangeLog +++ b/games-misc/qlife/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-misc/qlife -# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-misc/qlife/ChangeLog,v 1.2 2004/10/17 10:00:54 dholm Exp $ +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-misc/qlife/ChangeLog,v 1.3 2005/06/02 23:26:54 mr_bones_ Exp $ + +*qlife-0.8 (02 Jun 2005) + + 02 Jun 2005; Michael Sterrett <mr_bones_@gentoo.org> +qlife-0.8.ebuild: + version bump 17 Oct 2004; David Holm <dholm@gentoo.org> qlife-0.7.ebuild: Added to ~ppc. diff --git a/games-misc/qlife/Manifest b/games-misc/qlife/Manifest index 7884f07922e3..96ca61cefa69 100644 --- a/games-misc/qlife/Manifest +++ b/games-misc/qlife/Manifest @@ -1,14 +1,6 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 98f0e659ff319c2afd2db918c868e384 ChangeLog 459 MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 MD5 70ac27053bf628471758cdf733b1415d qlife-0.7.ebuild 739 +MD5 2cdce64fd10aebb31dc924d78e793591 qlife-0.8.ebuild 742 +MD5 7b0a6e03a7ad52d954ada4b71cc8b770 ChangeLog 579 +MD5 02ef237bfd4de0636d9d629fbd7c08ce files/digest-qlife-0.8 60 MD5 78d09783ef7c9a7a34dc99f083461e44 files/digest-qlife-0.7 60 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.9.10 (GNU/Linux) - -iD8DBQFB2Kv/roRuSHgZdywRAruoAJ4s7bmGJby0FBvf0lyO8+jhUz/oyACfZQCS -liV1Qmw5nvyFQtYyLfEMSkc= -=Qdgq ------END PGP SIGNATURE----- diff --git a/games-misc/qlife/files/digest-qlife-0.8 b/games-misc/qlife/files/digest-qlife-0.8 new file mode 100644 index 000000000000..a57489c65216 --- /dev/null +++ b/games-misc/qlife/files/digest-qlife-0.8 @@ -0,0 +1 @@ +MD5 e00be5aa4e8ab7f80b1c5fa083d6f33a qlife-0.8.tar.gz 34645 diff --git a/games-misc/qlife/qlife-0.8.ebuild b/games-misc/qlife/qlife-0.8.ebuild new file mode 100644 index 000000000000..569032f816df --- /dev/null +++ b/games-misc/qlife/qlife-0.8.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-misc/qlife/qlife-0.8.ebuild,v 1.1 2005/06/02 23:26:54 mr_bones_ Exp $ + +inherit kde +need-qt 3 + +DESCRIPTION="Simulates the classical Game of Life invented by John Conway" +HOMEPAGE="http://personal.inet.fi/koti/rkauppila/projects/life/" +SRC_URI="http://freshmeat.net/redir/qlife/50265/url_tgz/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ppc x86" +IUSE="" + +src_compile() { + qmake || die "qmake failed" + emake || die "emake failed" +} + +src_install() { + dobin qlife || die "dobin failed" + insinto /usr/share/qlife + doins patterns/* || die "doins failed" + dodoc README ChangeLog Todo About +} |