summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Wegener <swegener@gentoo.org>2004-07-23 23:06:08 +0000
committerSven Wegener <swegener@gentoo.org>2004-07-23 23:06:08 +0000
commit330f1bf140e60267cc049a8f96323f050e13ca53 (patch)
tree3730f1b3df06a336a3d92c2b16aa64e312c28f49 /net-irc/nikibot
parentInitial import. (diff)
downloadhistorical-330f1bf140e60267cc049a8f96323f050e13ca53.tar.gz
historical-330f1bf140e60267cc049a8f96323f050e13ca53.tar.bz2
historical-330f1bf140e60267cc049a8f96323f050e13ca53.zip
Initial import, ebuild submitted by Jan-David Quesel <jdq@gmx.net> in bug #57605.
Diffstat (limited to 'net-irc/nikibot')
-rw-r--r--net-irc/nikibot/ChangeLog11
-rw-r--r--net-irc/nikibot/Manifest14
-rw-r--r--net-irc/nikibot/files/digest-nikibot-0.81
-rw-r--r--net-irc/nikibot/metadata.xml5
-rw-r--r--net-irc/nikibot/nikibot-0.8.ebuild30
5 files changed, 61 insertions, 0 deletions
diff --git a/net-irc/nikibot/ChangeLog b/net-irc/nikibot/ChangeLog
new file mode 100644
index 000000000000..6553c4f6e8eb
--- /dev/null
+++ b/net-irc/nikibot/ChangeLog
@@ -0,0 +1,11 @@
+# ChangeLog for net-irc/nikibot
+# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-irc/nikibot/ChangeLog,v 1.1 2004/07/23 23:06:08 swegener Exp $
+
+*nikibot-0.8 (24 Jul 2004)
+
+ 24 Jul 2004; Sven Wegener <swegener@gentoo.org> +metadata.xml,
+ +nikibot-0.8.ebuild:
+ Initial import, ebuild submitted by Jan-David Quesel <jdq@gmx.net> in bug
+ #57605.
+
diff --git a/net-irc/nikibot/Manifest b/net-irc/nikibot/Manifest
new file mode 100644
index 000000000000..b76a25c0c930
--- /dev/null
+++ b/net-irc/nikibot/Manifest
@@ -0,0 +1,14 @@
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+MD5 ec482ba6329492eee341280bd94e2cb7 nikibot-0.8.ebuild 717
+MD5 44c39c6ad372a8e5a5e7ee3311f703a7 metadata.xml 160
+MD5 80171349750a4c0a1b9914bdac986b67 ChangeLog 408
+MD5 09b16226667a32e820a6b039baad50e8 files/digest-nikibot-0.8 64
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.2.4 (GNU/Linux)
+
+iD8DBQFBAZo9AXomK8S72HoRAhg8AJ9PuaUBHZO1fzT/gG8AlLNcbIW2fQCfckyW
+1stYjVEophs2QYbbPNKKvho=
+=4FOR
+-----END PGP SIGNATURE-----
diff --git a/net-irc/nikibot/files/digest-nikibot-0.8 b/net-irc/nikibot/files/digest-nikibot-0.8
new file mode 100644
index 000000000000..ce8d69c72bbb
--- /dev/null
+++ b/net-irc/nikibot/files/digest-nikibot-0.8
@@ -0,0 +1 @@
+MD5 1b2bb6d25bbe2d5cd3487a99252713d3 nikibot-0.8.tar.bz2 201445
diff --git a/net-irc/nikibot/metadata.xml b/net-irc/nikibot/metadata.xml
new file mode 100644
index 000000000000..6ef15e900f17
--- /dev/null
+++ b/net-irc/nikibot/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>net-irc</herd>
+</pkgmetadata>
diff --git a/net-irc/nikibot/nikibot-0.8.ebuild b/net-irc/nikibot/nikibot-0.8.ebuild
new file mode 100644
index 000000000000..a1a721addef8
--- /dev/null
+++ b/net-irc/nikibot/nikibot-0.8.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-irc/nikibot/nikibot-0.8.ebuild,v 1.1 2004/07/23 23:06:08 swegener Exp $
+
+DESCRIPTION="An IRC-Bot with lua script interface"
+HOMEPAGE="http://sourceforge.net/projects/nikibot/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+RESTRICT="nomirror"
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+KEYWORDS="~x86"
+
+DEPEND="virtual/libc
+ >=dev-lang/lua-5.0"
+
+src_unpack() {
+ unpack ${A}
+
+ # Hack around wrong timestamps to avoid running automake
+ touch ${S}/src/Makefile.in
+}
+
+src_install() {
+ make DESTDIR=${D} install || die "make install failed"
+
+ dodoc README test.lua
+ dohtml html/*
+}