diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-08-30 23:12:33 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-08-30 23:12:33 +0000 |
commit | b117c0291b5d427ac6e15e96cd65f7c1ea1df30c (patch) | |
tree | 243b1e3e56d4f394d5e5d2686666b8c38e77c750 | |
parent | Implement a variant of getfilevar that does not use Make to fetch the variabl... (diff) | |
download | gentoo-2-b117c0291b5d427ac6e15e96cd65f7c1ea1df30c.tar.gz gentoo-2-b117c0291b5d427ac6e15e96cd65f7c1ea1df30c.tar.bz2 gentoo-2-b117c0291b5d427ac6e15e96cd65f7c1ea1df30c.zip |
version bump
(Portage version: 2.1.6.13/cvs/Linux i686)
-rw-r--r-- | games-mud/tintin/ChangeLog | 10 | ||||
-rw-r--r-- | games-mud/tintin/tintin-1.99.7.ebuild | 35 |
2 files changed, 43 insertions, 2 deletions
diff --git a/games-mud/tintin/ChangeLog b/games-mud/tintin/ChangeLog index 541cde172682..093512897857 100644 --- a/games-mud/tintin/ChangeLog +++ b/games-mud/tintin/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-mud/tintin -# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-mud/tintin/ChangeLog,v 1.77 2009/06/22 23:09:36 mr_bones_ Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-mud/tintin/ChangeLog,v 1.78 2009/08/30 23:12:33 mr_bones_ Exp $ + +*tintin-1.99.7 (30 Aug 2009) + + 30 Aug 2009; Michael Sterrett <mr_bones_@gentoo.org> + +tintin-1.99.7.ebuild: + version bump *tintin-1.99.6 (22 Jun 2009) diff --git a/games-mud/tintin/tintin-1.99.7.ebuild b/games-mud/tintin/tintin-1.99.7.ebuild new file mode 100644 index 000000000000..9e4fdfdf8e1d --- /dev/null +++ b/games-mud/tintin/tintin-1.99.7.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-mud/tintin/tintin-1.99.7.ebuild,v 1.1 2009/08/30 23:12:33 mr_bones_ Exp $ + +inherit games + +DESCRIPTION="(T)he k(I)cki(N) (T)ickin d(I)kumud clie(N)t" +HOMEPAGE="http://tintin.sourceforge.net/" +SRC_URI="mirror://sourceforge/tintin/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +DEPEND="sys-libs/zlib + dev-libs/libpcre + sys-libs/readline + sys-libs/ncurses" + +S=${WORKDIR}/tt/src + +src_install () { + dogamesbin tt++ || die "dogamesbin failed" + dodoc ../{CREDITS,FAQ,README,SCRIPTS,TODO,docs/*} + prepgamesdirs +} + +pkg_postinst() { + games_pkg_postinst + echo + ewarn "**** OLD TINTIN SCRIPTS ARE NOT 100% COMPATIBLE WITH THIS VERSION ****" + ewarn "read the README for more details." + echo +} |