blob: bab047de274ac7aab83567dce02c0bd9013a9be2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-mud/lyntin/lyntin-4.2.ebuild,v 1.4 2010/02/10 05:08:27 josejx Exp $
EAPI=2
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-3"
SLOT="0"
KEYWORDS="~amd64 ppc ~x86"
IUSE="tk"
DEPEND=">=dev-lang/python-2.2.3[tk?]"
DOCS="COMMANDS PKG-INFO HACKING README"
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
elog "To start lyntin in GUI mode, create a config file"
elog "with this in it:"
elog
elog "[Lyntin]"
elog "ui: tk"
elog
elog "Then start lyntin like this:"
elog
elog "runlyntin -c /path/to/config_file\n"
fi
}
|