blob: 01b4a64ecba637e6266d537579c6d6768f6ae228 (
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-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/supybot/supybot-0.83.3.ebuild,v 1.2 2008/02/20 19:57:30 armin76 Exp $
NEED_PYTHON=2.3
inherit distutils
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="~amd64 ~ppc ~sparc x86 ~x86-fbsd"
IUSE="sqlite"
DEPEND=">=dev-python/twisted-1.2.0
sqlite? ( <dev-python/pysqlite-1.1 )"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}
DOCS="ACKS RELNOTES docs/*"
src_install() {
distutils_src_install
doman docs/man/*
}
pkg_postinst() {
distutils_pkg_postinst
elog "Use supybot-wizard to create a configuration file"
use sqlite || \
elog "Some plugins may require emerge with USE=\"sqlite\" to work."
}
|