diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2012-01-10 03:15:52 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2012-01-10 03:15:52 +0000 |
commit | c53c552316b8624c1c80a707bc73c3dd94e7615f (patch) | |
tree | b0a20c790932dedbea5c5bc6af47924fa86e6934 /games-mud | |
parent | initial commit. solving bug #285060. (diff) | |
download | gentoo-2-c53c552316b8624c1c80a707bc73c3dd94e7615f.tar.gz gentoo-2-c53c552316b8624c1c80a707bc73c3dd94e7615f.tar.bz2 gentoo-2-c53c552316b8624c1c80a707bc73c3dd94e7615f.zip |
version bump
(Portage version: 2.1.10.41/cvs/Linux i686)
Diffstat (limited to 'games-mud')
-rw-r--r-- | games-mud/tintin/ChangeLog | 8 | ||||
-rw-r--r-- | games-mud/tintin/files/tintin-2.00.8-ldpermission.patch | 11 | ||||
-rw-r--r-- | games-mud/tintin/tintin-2.00.8.ebuild | 37 |
3 files changed, 55 insertions, 1 deletions
diff --git a/games-mud/tintin/ChangeLog b/games-mud/tintin/ChangeLog index b78aae24c1e6..c7146afbfb5e 100644 --- a/games-mud/tintin/ChangeLog +++ b/games-mud/tintin/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-mud/tintin # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-mud/tintin/ChangeLog,v 1.117 2012/01/04 17:57:20 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-mud/tintin/ChangeLog,v 1.118 2012/01/10 03:15:52 mr_bones_ Exp $ + +*tintin-2.00.8 (10 Jan 2012) + + 10 Jan 2012; Michael Sterrett <mr_bones_@gentoo.org> +tintin-2.00.8.ebuild, + +files/tintin-2.00.8-ldpermission.patch: + version bump 04 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> tintin-2.00.7.ebuild: x86 stable wrt bug #395453 diff --git a/games-mud/tintin/files/tintin-2.00.8-ldpermission.patch b/games-mud/tintin/files/tintin-2.00.8-ldpermission.patch new file mode 100644 index 000000000000..3899ba008e91 --- /dev/null +++ b/games-mud/tintin/files/tintin-2.00.8-ldpermission.patch @@ -0,0 +1,11 @@ +--- Makefile.in.old 2011-06-24 13:41:36.874647127 +0200 ++++ Makefile.in 2011-06-24 13:44:40.024430170 +0200 +@@ -37,7 +37,7 @@ + + INCS = @MYINCLUDE@ + +-LIBS = @MYLIB@ @LIBS@ ++LIBS = @LIBS@ + + # If you prefer to be able to enter ISO latin-1 characters instead + # of being able to use the meta key for special emacs-like commands diff --git a/games-mud/tintin/tintin-2.00.8.ebuild b/games-mud/tintin/tintin-2.00.8.ebuild new file mode 100644 index 000000000000..8db3be81359e --- /dev/null +++ b/games-mud/tintin/tintin-2.00.8.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-mud/tintin/tintin-2.00.8.ebuild,v 1.1 2012/01/10 03:15:52 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 ~x86" +IUSE="" + +DEPEND="sys-libs/zlib + dev-libs/libpcre + sys-libs/readline + sys-libs/ncurses" + +S=${WORKDIR}/tt/src + +PATCHES=( "${FILESDIR}"/${P}-ldpermission.patch ) + +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 +} |