diff options
author | Emanuele Giaquinta <exg@gentoo.org> | 2006-10-15 15:36:57 +0000 |
---|---|---|
committer | Emanuele Giaquinta <exg@gentoo.org> | 2006-10-15 15:36:57 +0000 |
commit | c57bd5874fdb60412e4577eab4f59da0a93af760 (patch) | |
tree | 554b65415189a9d54b5ae6500f535c34413bea1b /net-irc | |
parent | Add patch to fix timeouts on cups connection. THanks to Jochen Trumpf for rep... (diff) | |
download | gentoo-2-c57bd5874fdb60412e4577eab4f59da0a93af760.tar.gz gentoo-2-c57bd5874fdb60412e4577eab4f59da0a93af760.tar.bz2 gentoo-2-c57bd5874fdb60412e4577eab4f59da0a93af760.zip |
Bootstrap with eautoreconf to be able to actually build it.
(Portage version: 2.1.2_pre3-r1)
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/nikibot/ChangeLog | 7 | ||||
-rw-r--r-- | net-irc/nikibot/files/digest-nikibot-0.8 | 2 | ||||
-rw-r--r-- | net-irc/nikibot/nikibot-0.8.ebuild | 17 |
3 files changed, 16 insertions, 10 deletions
diff --git a/net-irc/nikibot/ChangeLog b/net-irc/nikibot/ChangeLog index 2f85e9556ae1..b8ce10786551 100644 --- a/net-irc/nikibot/ChangeLog +++ b/net-irc/nikibot/ChangeLog @@ -1,6 +1,9 @@ # 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.2 2004/11/14 17:22:13 swegener Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/nikibot/ChangeLog,v 1.3 2006/10/15 15:36:57 exg Exp $ + + 15 Oct 2006; Emanuele Giaquinta <exg@gentoo.org> nikibot-0.8.ebuild: + Bootstrap with eautoreconf to be able to actually build it. 14 Nov 2004; Sven Wegener <swegener@gentoo.org> nikibot-0.8.ebuild: Fixed digest. diff --git a/net-irc/nikibot/files/digest-nikibot-0.8 b/net-irc/nikibot/files/digest-nikibot-0.8 index b1d59afd7025..9a7fad7bcdc5 100644 --- a/net-irc/nikibot/files/digest-nikibot-0.8 +++ b/net-irc/nikibot/files/digest-nikibot-0.8 @@ -1 +1,3 @@ MD5 16a1e33c27cddee21446f85862a470db nikibot-0.8.tar.bz2 201651 +RMD160 abdd638032656b30a4f9ab5713ebc41d860c50e5 nikibot-0.8.tar.bz2 201651 +SHA256 9866a739cc43152dc0d5aa128b4d212eecdc26b953cb6c8f7e28e620281dc750 nikibot-0.8.tar.bz2 201651 diff --git a/net-irc/nikibot/nikibot-0.8.ebuild b/net-irc/nikibot/nikibot-0.8.ebuild index 83bb80f3ed6d..507b2ad5586b 100644 --- a/net-irc/nikibot/nikibot-0.8.ebuild +++ b/net-irc/nikibot/nikibot-0.8.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2006 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.2 2004/11/14 17:22:13 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/nikibot/nikibot-0.8.ebuild,v 1.3 2006/10/15 15:36:57 exg Exp $ + +inherit autotools DESCRIPTION="An IRC-Bot with lua script interface" HOMEPAGE="http://sourceforge.net/projects/nikibot/" @@ -12,18 +14,17 @@ IUSE="" KEYWORDS="~x86" -DEPEND="virtual/libc - >=dev-lang/lua-5.0" +RDEPEND=">=dev-lang/lua-5.0" +DEPEND="${RDEPEND}" src_unpack() { unpack ${A} - - # Hack around wrong timestamps to avoid running automake - touch ${S}/src/Makefile.in + cd "${S}" + eautoreconf } src_install() { - make DESTDIR=${D} install || die "make install failed" + make DESTDIR="${D}" install || die "make install failed" dodoc README test.lua || die "dodoc failed" dohtml html/* || die "dohtml failed" |