diff options
author | Sven Wegener <swegener@gentoo.org> | 2005-06-01 18:40:09 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2005-06-01 18:40:09 +0000 |
commit | ec18fc2da129c7d74e6ec58a5d2edced396e5719 (patch) | |
tree | 1cd92254f6ac491e3c4b4666e1975f5d8f775076 /net-irc/bobotpp/bobotpp-2.1.7.ebuild | |
parent | 0.3.6 and 0.3.7 stable on x86, amd64. Removed older ebuilds. (diff) | |
download | gentoo-2-ec18fc2da129c7d74e6ec58a5d2edced396e5719.tar.gz gentoo-2-ec18fc2da129c7d74e6ec58a5d2edced396e5719.tar.bz2 gentoo-2-ec18fc2da129c7d74e6ec58a5d2edced396e5719.zip |
Version bump.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'net-irc/bobotpp/bobotpp-2.1.7.ebuild')
-rw-r--r-- | net-irc/bobotpp/bobotpp-2.1.7.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/net-irc/bobotpp/bobotpp-2.1.7.ebuild b/net-irc/bobotpp/bobotpp-2.1.7.ebuild new file mode 100644 index 000000000000..60f3b3ac9d10 --- /dev/null +++ b/net-irc/bobotpp/bobotpp-2.1.7.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/bobotpp/bobotpp-2.1.7.ebuild,v 1.1 2005/06/01 18:40:09 swegener Exp $ + +inherit eutils + +DESCRIPTION="A flexible IRC bot scriptable in scheme" +HOMEPAGE="http://unknownlamer.org/code/bobot.html" +SRC_URI="http://savannah.nongnu.org/download/${PN}/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc" +IUSE="guile" + +DEPEND="guile? ( dev-util/guile )" + +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}"/${PV}-ifdef-scripts-fix.patch +} + +src_compile() { + econf $(use_enable guile scripting) || die "econf failed" + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "install failed" + + dosym bobot++.info /usr/share/info/bobotpp.info || die "dosym failed" + + dodoc AUTHORS ChangeLog NEWS README SCRIPTING TODO || die "dodoc failed" + dohtml doc/index.html || die "dohtml failed" + + docinto example-config + dodoc examples/{bot.*,scripts.load} || die "dodoc failed" + + docinto example-scripts + dodoc scripts/{boulet,country,eval,hello,log.scm,tamere,uname,uptime} || die "dodoc failed" +} + +pkg_postinst() { + einfo + einfo "You can find a sample configuration file set in" + einfo "/usr/share/doc/${PF}/example-config" + einfo +} |