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
commitb941c7904cac1c1ec77d1f5c2069bb13f319bc49 (patch)
tree02c335b97db1d206f07be195086d0194747c6e52 /net-irc/nikibot
parentInitial import. (Manifest recommit) (diff)
downloadgentoo-2-b941c7904cac1c1ec77d1f5c2069bb13f319bc49.tar.gz
gentoo-2-b941c7904cac1c1ec77d1f5c2069bb13f319bc49.tar.bz2
gentoo-2-b941c7904cac1c1ec77d1f5c2069bb13f319bc49.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/Manifest2
-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, 49 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..8f16a879c04c
--- /dev/null
+++ b/net-irc/nikibot/Manifest
@@ -0,0 +1,2 @@
+MD5 b0941d8e22026e079084fe4498d1a189 nikibot-0.8.ebuild 506
+MD5 09b16226667a32e820a6b039baad50e8 files/digest-nikibot-0.8 64
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/*
+}