diff options
author | Sven Wegener <swegener@gentoo.org> | 2004-07-23 23:06:08 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2004-07-23 23:06:08 +0000 |
commit | b941c7904cac1c1ec77d1f5c2069bb13f319bc49 (patch) | |
tree | 02c335b97db1d206f07be195086d0194747c6e52 /net-irc/nikibot/nikibot-0.8.ebuild | |
parent | Initial import. (Manifest recommit) (diff) | |
download | gentoo-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/nikibot-0.8.ebuild')
-rw-r--r-- | net-irc/nikibot/nikibot-0.8.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
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/* +} |