diff options
author | Christoph Mende <angelos@gentoo.org> | 2007-10-30 22:04:44 +0000 |
---|---|---|
committer | Christoph Mende <angelos@gentoo.org> | 2007-10-30 22:04:44 +0000 |
commit | 73a14d68f4558a5d33848d164fec5e70ba3820b3 (patch) | |
tree | d233c3da3bd5d98c3331c831b429c6f1a8048f34 /net-irc | |
parent | version bump (diff) | |
download | gentoo-2-73a14d68f4558a5d33848d164fec5e70ba3820b3.tar.gz gentoo-2-73a14d68f4558a5d33848d164fec5e70ba3820b3.tar.bz2 gentoo-2-73a14d68f4558a5d33848d164fec5e70ba3820b3.zip |
Added ~amd64 and small fixes
(Portage version: 2.1.3.16)
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/mistbot/ChangeLog | 5 | ||||
-rw-r--r-- | net-irc/mistbot/mistbot-0.9.ebuild | 9 |
2 files changed, 10 insertions, 4 deletions
diff --git a/net-irc/mistbot/ChangeLog b/net-irc/mistbot/ChangeLog index 2e18a21a9788..19a4562a2cbd 100644 --- a/net-irc/mistbot/ChangeLog +++ b/net-irc/mistbot/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-irc/mistbot # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/mistbot/ChangeLog,v 1.3 2007/10/30 21:34:14 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/mistbot/ChangeLog,v 1.4 2007/10/30 22:04:44 angelos Exp $ + + 30 Oct 2007; Christoph Mende <angelos@gentoo.org> mistbot-0.9.ebuild: + Added ~amd64 and small fixes 30 Oct 2007; Markus Ullmann <jokey@gentoo.org> mistbot-0.9.ebuild: Keywording ~sparc diff --git a/net-irc/mistbot/mistbot-0.9.ebuild b/net-irc/mistbot/mistbot-0.9.ebuild index 929e9126284d..45760874ebe4 100644 --- a/net-irc/mistbot/mistbot-0.9.ebuild +++ b/net-irc/mistbot/mistbot-0.9.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/mistbot/mistbot-0.9.ebuild,v 1.4 2007/10/30 21:34:14 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/mistbot/mistbot-0.9.ebuild,v 1.5 2007/10/30 22:04:44 angelos Exp $ -inherit eutils toolchain-funcs +inherit eutils multilib toolchain-funcs DESCRIPTION="A modular IRC-Bot written in C++" HOMEPAGE="http://kuja.in/mistbot/" @@ -11,7 +11,7 @@ SRC_URI="http://znc.in/~psychon/mistbot/downloads/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~sparc ~x86" +KEYWORDS="~amd64 ~sparc ~x86" IUSE="doc xml nls debug ssl" RDEPEND="virtual/libc @@ -43,9 +43,11 @@ src_compile() { fi sed -e 's/^#ONCE\ =\ yes$/ONCE\ =\ yes/' -i build.conf || die "sed failed" + sed -re "/(PC|MOD|SCRIPT)DIR/s/lib/$(get_libdir)/" -i Makefile || die "sed failed" echo "CXXFLAGS=${CXXFLAGS}" >> build.conf echo "CXX=$(tc-getCXX)" >> build.conf + echo "LDFLAGS=${LDFLAGS}" >> build.conf echo "PREFIX=/usr" >> build.conf ebegin "compiling source" @@ -61,6 +63,7 @@ src_compile() { src_install() { emake DESTDIR="${D}" install dodoc AUTHORS mistbot.conf + dosym ${P} /usr/bin/${PN} if use doc; then dodoc doc/userdoc.html |