ChangeLog

# ChangeLog for net-irc/miau
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/miau/ChangeLog,v 1.14 2007/12/13 21:34:15 armin76 Exp $

13 Dec 2007; Raúl Porcel -miau-0.6.4.ebuild,
miau-0.6.5.ebuild:
x86 stable, remove old

*miau-0.6.5 (10 Nov 2007)

10 Nov 2007; Raúl Porcel +miau-0.6.5.ebuild:
Version bump

28 May 2007; Raúl Porcel -miau-0.6.2.ebuild,
miau-0.6.4.ebuild:
x86 stable, remove old

06 May 2007; Marius Mauch miau-0.6.2.ebuild,
miau-0.6.4.ebuild:
Replacing einfo with elog

*miau-0.6.4 (11 Apr 2007)

11 Apr 2007; Raúl Porcel +miau-0.6.4.ebuild:
Version bump

*miau-0.6.2 (19 Feb 2007)

19 Feb 2007; Raúl Porcel -miau-0.5.4.ebuild,
-miau-0.6.0.2.ebuild, miau-0.6.1.ebuild, +miau-0.6.2.ebuild:
Version bump, stable x86, drop old

*miau-0.6.1 (27 Jun 2006)

27 Jun 2006; Markus Ullmann +miau-0.6.1.ebuild:
Version bump wrt bug #136246, thanks to Aidan Taniane

12 Jan 2006; Luis Medinas miau-0.6.0.2.ebuild:
Added ~amd64 keyword. Closes bug #118338.

*miau-0.6.0.2 (02 Jan 2006)

02 Jan 2006; Sven Wegener +miau-0.6.0.2.ebuild:
Version bump, bug #116851.

27 Aug 2005; Sven Wegener -miau-0.5.3.ebuild,
miau-0.5.4.ebuild:
Stable on x86.

08 Jul 2005; David Holm miau-0.5.4.ebuild:
Added to ~ppc.

*miau-0.5.4 (07 Jul 2005)

07 Jul 2005; Sven Wegener miau-0.5.3.ebuild,
+miau-0.5.4.ebuild:
Version bump, bug #93928.

17 Oct 2004; Sven Wegener miau-0.5.3.ebuild:
Fixed typo in HOMEPAGE.

*miau-0.5.3 (10 Oct 2004)

10 Oct 2004; Sven Wegener +metadata.xml,
+miau-0.5.3.ebuild:
Initial import. Closes bug #65696.

Manifest

DIST miau-0.6.5.tar.bz2 205401 RMD160 f47385cd5a75c90fa30a34ef795e40072cd131ba SHA1 789decd32eb5d607d937a68bbd221b4afc2ccec2 SHA256 deabee9db4884fcdf3142292cfb3c2e6d62bab0a2dbdda0e8ddf11d892a66a9a
EBUILD miau-0.6.5.ebuild 1799 RMD160 1d4e293a1e8783d89fab76d467733a4271825a10 SHA1 bed111563b257cf150c920a7d4fe94727034a4a9 SHA256 708860686c6befba5a62e0f18f5c3a621117a7b8fb8db9f6f3e9ccdf8aa10008
MISC ChangeLog 1975 RMD160 4897f9519e2cb3f30db948ceabf58662266acbfa SHA1 2349c47c2c7941174c43e12c8c9dda7fba6a4c89 SHA256 5bbeb6fa6e63ecf63b9dafc525a7e993532e6446a556e614f83ac5853fc66c7f
MISC metadata.xml 160 RMD160 279429d1df694561fc2b163cb81c09387b9d940c SHA1 97da1b72eecc5585c65717da08eaccc9bc1cf7cd SHA256 5e058419199e306612929b80a996e3d16c6b20de674a56bb60558d3d36524fe2

metadata.xml




net-irc

miau-0.6.5.ebuild

# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/miau/miau-0.6.5.ebuild,v 1.2 2007/12/13 21:34:15 armin76 Exp $

inherit eutils

DESCRIPTION="Persistent IRC bouncer with multi-client support - a fork of muh"
HOMEPAGE="http://miau.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE="debug ipv6"

DEPEND=""

pkg_setup() {
if use ipv6; then
echo
ewarn "Enabling the ipv6 useflag will disable ipv4 entirely. Press"
ewarn "Ctrl+C now if you don't want this."
echo
ebeep 5
fi
}

src_compile() {
# --disable-debug seems to actually enabled it, using if use rather than
# use_enable to get around it.
if use debug; then
myconf="--enable-debug"
fi
econf \
--enable-dccbounce \
--enable-automode \
--enable-releasenick \
--enable-ctcp-replies \
--enable-mkpasswd \
--enable-uptime \
--enable-chanlog \
--enable-privlog \
--enable-onconnect \
--enable-empty-awaymsg \
$(use_enable ipv6) \
${myconf} \
$(use_enable debug enduserdebug) \
$(use_enable debug pingstat) \
$(use_enable debug dumpstatus) \
|| die "econf failed."
emake || die "emake failed."
}

src_install() {
emake install DESTDIR="${D}" || die "emake install failed."
dodoc AUTHORS ChangeLog TODO README || die "dodoc failed."

mv "${D}/usr/share/doc/miau/examples/miaurc" \
"${D}/usr/share/doc/${PF}/miaurc.sample"
rm -rf "${D}/usr/share/doc/miau"
}

pkg_postinst() {
echo
elog "You'll need to configure miau before running it."
elog "Put your config in ~/.miau/miaurc"
elog "You can use the sample config is in /usr/share/doc/${PF}/miaurc.sample"
elog "For more information, see the documentation."
echo
}