# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/games-mud/lyntin/lyntin-4.1.1.ebuild,v 1.10 2006/11/05 01:00:36 nyhm Exp $ inherit eutils games distutils DESCRIPTION="tintin mud client clone implemented in Python" HOMEPAGE="http://lyntin.sourceforge.net/" SRC_URI="mirror://sourceforge/lyntin/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="tk" DEPEND=">=dev-lang/python-2.2.3" DOCS="COMMANDS PKG-INFO HACKING README" pkg_setup() { games_pkg_setup if ! built_with_use dev-lang/python tk ; then eerror "You need to recompile python with Tkinter support." eerror "Example: USE='X -build tk' emerge python" echo die "missing tkinter support with installed python" fi } src_install() { distutils_src_install dogamesbin "${D}/usr/bin/runlyntin" || die "dogamesbin failed" rm -rf "${D}/usr/bin/" prepgamesdirs } pkg_postinst() { games_pkg_postinst if use tk ; then einfo "To start lyntin in GUI mode, create a config file" einfo "with this in it:" echo einfo "[Lyntin]" einfo "ui: tk" echo einfo "Then start lyntin like this:" einfo einfo "runlyntin -c /path/to/config_file\n" fi }