diff options
author | Dawid Węgliński <cla@gentoo.org> | 2008-01-20 05:12:27 +0000 |
---|---|---|
committer | Dawid Węgliński <cla@gentoo.org> | 2008-01-20 05:12:27 +0000 |
commit | 44bc7aa60a0f1709b2e8e07c59f69ab4fa408d0a (patch) | |
tree | 9552d8abacb7794a364124d8dff70492e59c2152 /net-irc/ngircd | |
parent | Prune old version (diff) | |
download | gentoo-2-44bc7aa60a0f1709b2e8e07c59f69ab4fa408d0a.tar.gz gentoo-2-44bc7aa60a0f1709b2e8e07c59f69ab4fa408d0a.tar.bz2 gentoo-2-44bc7aa60a0f1709b2e8e07c59f69ab4fa408d0a.zip |
Bump to 0.11.0
(Portage version: 2.1.3.19)
Diffstat (limited to 'net-irc/ngircd')
-rw-r--r-- | net-irc/ngircd/ChangeLog | 7 | ||||
-rw-r--r-- | net-irc/ngircd/files/digest-ngircd-0.11.0 | 3 | ||||
-rw-r--r-- | net-irc/ngircd/ngircd-0.11.0.ebuild | 54 |
3 files changed, 63 insertions, 1 deletions
diff --git a/net-irc/ngircd/ChangeLog b/net-irc/ngircd/ChangeLog index 861d7b3ffefd..37fee9a47f90 100644 --- a/net-irc/ngircd/ChangeLog +++ b/net-irc/ngircd/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-irc/ngircd # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/ngircd/ChangeLog,v 1.36 2008/01/11 19:42:58 dertobi123 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/ngircd/ChangeLog,v 1.37 2008/01/20 05:12:26 cla Exp $ + +*ngircd-0.11.0 (20 Jan 2008) + + 20 Jan 2008; Dawid Węgliński <cla@gentoo.org> +ngircd-0.11.0.ebuild: + Bump to 0.11.0 11 Jan 2008; Tobias Scherbaum <dertobi123@gentoo.org> ngircd-0.10.4.ebuild: diff --git a/net-irc/ngircd/files/digest-ngircd-0.11.0 b/net-irc/ngircd/files/digest-ngircd-0.11.0 new file mode 100644 index 000000000000..c93dcffb2bb8 --- /dev/null +++ b/net-irc/ngircd/files/digest-ngircd-0.11.0 @@ -0,0 +1,3 @@ +MD5 c322656b173ecec3d626355c0c3e875f ngircd-0.11.0.tar.gz 322352 +RMD160 1707fdd6d5d87243084d7461ed9106c7c16d1791 ngircd-0.11.0.tar.gz 322352 +SHA256 d2c40275a8e234f57eb4c76d1476c2fca73d66bdec2842fd91aa06b2b071ced4 ngircd-0.11.0.tar.gz 322352 diff --git a/net-irc/ngircd/ngircd-0.11.0.ebuild b/net-irc/ngircd/ngircd-0.11.0.ebuild new file mode 100644 index 000000000000..85033f6f4f8f --- /dev/null +++ b/net-irc/ngircd/ngircd-0.11.0.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/ngircd/ngircd-0.11.0.ebuild,v 1.1 2008/01/20 05:12:26 cla Exp $ + +inherit eutils + +DESCRIPTION="A IRC server written from scratch." +HOMEPAGE="http://ngircd.barton.de/" +SRC_URI="ftp://ftp.berlios.de/${PN}/${P}.tar.gz + ftp://ngircd.barton.de/pub//${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="zlib tcpd debug ident" +RESTRICT="test" + +DEPEND="virtual/libc + zlib? ( sys-libs/zlib ) + ident? ( net-libs/libident ) + tcpd? ( sys-apps/tcp-wrappers ) + >=sys-apps/sed-4" + +src_compile() { + econf \ + --sysconfdir=/etc/ngircd \ + $(use_with zlib) \ + $(use_with tcpd tcp-wrappers) \ + $(use_with ident ) \ + $(use_enable debug) \ + $(use_enable debug sniffer) \ + || die "econf failed" + emake || die "emake failed" +} + +src_install() { + sed -i \ + -e "s:/usr/local/etc/ngircd.motd:/etc/ngircd/ngircd.motd:" \ + -e "s:;ServerUID = 65534:ServerUID = ngircd:" \ + -e "s:;ServerGID = 65534:ServerGID = nogroup:" \ + doc/sample-ngircd.conf + + make \ + DESTDIR="${D}" \ + docdir=/usr/share/doc/${PF} \ + install || die "make install failed" + + newinitd "${FILESDIR}"/ngircd.init.d ngircd +} + +pkg_postinst() { + enewuser ngircd + chown ngircd "${ROOT}"/etc/ngircd/ngircd.conf +} |