blob: 843ac93656c2ce608eb37f9f5077fb6e85a80d16 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/supybot/supybot-0.83.1.ebuild,v 1.1 2005/11/05 16:13:02 liquidx Exp $
inherit distutils eutils
MY_P=${P/supybot/Supybot}
MY_P=${MY_P/_rc/rc}
DESCRIPTION="Python based extensible IRC infobot and channel bot"
HOMEPAGE="http://supybot.sf.net/"
SRC_URI="mirror://sourceforge/supybot/${MY_P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE="sqlite"
DEPEND=">=dev-lang/python-2.3
>=dev-python/twisted-1.2.0
sqlite? ( <dev-python/pysqlite-1.1 )"
S=${WORKDIR}/${MY_P}
PYTHON_MODNAME="supybot"
DOCS="ACKS BUGS DEVS README RELNOTES TODO"
src_install() {
distutils_src_install
doman docs/man/*
dodoc docs/*
}
pkg_postinst() {
einfo "Use supybot-wizard to create a configuration file"
use sqlite || \
einfo "Some plugins may require emerge with USE=\"sqlite\" to work."
}
|