diff options
author | 2011-07-19 11:57:50 +0000 | |
---|---|---|
committer | 2011-07-19 11:57:50 +0000 | |
commit | 5b96c0575899a9344c6192dce8c23ae817917201 (patch) | |
tree | acbeb85814e4cf03bb79b6b7cd2ad86410ba97dc /net-irc | |
parent | Version bump (diff) | |
download | gentoo-2-5b96c0575899a9344c6192dce8c23ae817917201.tar.gz gentoo-2-5b96c0575899a9344c6192dce8c23ae817917201.tar.bz2 gentoo-2-5b96c0575899a9344c6192dce8c23ae817917201.zip |
net-irc/inspircd: Version bump.
(Portage version: 2.2.0_alpha45/cvs/Linux x86_64)
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/inspircd/ChangeLog | 7 | ||||
-rw-r--r-- | net-irc/inspircd/inspircd-2.0.5.ebuild | 115 |
2 files changed, 121 insertions, 1 deletions
diff --git a/net-irc/inspircd/ChangeLog b/net-irc/inspircd/ChangeLog index 7ba5fa0ce392..b7eaffc4ec59 100644 --- a/net-irc/inspircd/ChangeLog +++ b/net-irc/inspircd/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-irc/inspircd # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/ChangeLog,v 1.38 2011/06/20 16:55:57 c1pher Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/ChangeLog,v 1.39 2011/07/19 11:57:50 c1pher Exp $ + +*inspircd-2.0.5 (19 Jul 2011) + + 19 Jul 2011; Dane Smith <c1pher@gentoo.org> +inspircd-2.0.5.ebuild: + Version bump. Thanks Chema Alonso. *inspircd-2.0.4 (20 Jun 2011) diff --git a/net-irc/inspircd/inspircd-2.0.5.ebuild b/net-irc/inspircd/inspircd-2.0.5.ebuild new file mode 100644 index 000000000000..99e7b2ad174c --- /dev/null +++ b/net-irc/inspircd/inspircd-2.0.5.ebuild @@ -0,0 +1,115 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/inspircd-2.0.5.ebuild,v 1.1 2011/07/19 11:57:50 c1pher Exp $ + +EAPI=4 +inherit eutils multilib flag-o-matic + +DESCRIPTION="Inspire IRCd - The Stable, High-Performance Modular IRCd" +HOMEPAGE="http://www.inspircd.org/" +SRC_URI="http://www.inspircd.org/downloads/InspIRCd-${PV}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="openssl gnutls ipv6 mysql postgres sqlite ldap" + +RDEPEND=" + dev-lang/perl + openssl? ( dev-libs/openssl ) + gnutls? ( net-libs/gnutls ) + ldap? ( net-nds/openldap ) + mysql? ( virtual/mysql ) + postgres? ( dev-db/postgresql-server ) + sqlite? ( >=dev-db/sqlite-3.0 )" +DEPEND="${RDEPEND}" + +S="${WORKDIR}/inspircd" + +pkg_setup() { + enewgroup inspircd + enewuser inspircd -1 -1 -1 inspircd +} + +src_prepare() { + # The makefile template defines variables (D and T) used by the + # ebuild system. Changing them to safe names. + local makefiletpl="${S}/make/template/main.mk" + + sed -i 's/IFNDEF D/IFNDEF DEBUGLEVEL/' ${makefiletpl} || die "sed failed" + sed -i 's/IFDEF T/IFDEF TGT/' ${makefiletpl} || die "sed failed" + sed -i 's/D=0/DEBUGLEVEL=0/' ${makefiletpl} || die "sed failed" + sed -i 's/\$(D)/\$(DEBUGLEVEL)/' ${makefiletpl} || die "sed failed" + sed -i 's/\$(T)/\$(TGT)/' ${makefiletpl} || die "sed failed" + + epatch "${FILESDIR}"/${PN}-fix-config.patch +} + +src_configure() { + local extras="" + local dipv6="--disable-ipv6" + + use openssl && extras="${extras}m_ssl_openssl.cpp," + use gnutls && extras="${extras}m_ssl_gnutls.cpp," + use ldap && extras="${extras}m_ldapauth.cpp," + use mysql && extras="${extras}m_mysql.cpp," + use postgres && extras="${extras}m_pgsql.cpp," + use sqlite && extras="${extras}m_sqlite3.cpp," + + use ipv6 && dipv6="" + + # allow inspircd to be built by root + touch .force-root-ok || die + + if [ -n "${extras}" ]; then + ./configure --disable-interactive \ + --enable-extras=${extras} || die "configure failed" + fi + + ./configure \ + $(use_enable openssl) \ + $(use_enable gnutls) \ + --disable-interactive \ + --prefix="/usr/$(get_libdir)/inspircd" \ + --config-dir="/etc/inspircd" \ + --binary-dir="/usr/bin" \ + --module-dir="/usr/$(get_libdir)/inspircd/modules" \ + ${dipv6} || die "configure failed" +} + +src_compile() { + append-flags -Iinclude -fPIC + emake LDFLAGS="${LDFLAGS}" CXXFLAGS="${CXXFLAGS}" +} + +src_install() { + emake INSTUID=inspircd \ + BINPATH="${D}/usr/bin" \ + BASE="${D}/usr/$(get_libdir)/inspircd/inspircd.launcher" \ + MODPATH="${D}/usr/$(get_libdir)/inspircd/modules/" \ + CONPATH="${D}/etc/inspircd" install + + insinto /etc/inspircd/modules + doins docs/modules/* + + insinto /etc/inspircd/aliases + doins docs/aliases/* + + insinto /usr/include/inspircd/ + doins include/* + + diropts -oinspircd -ginspircd + dodir "/var/run/inspircd" + + newinitd "${FILESDIR}"/${PN}-init.d inspircd + keepdir "/var/log/inspircd/" +} + +pkg_postinst() { + elog "Before starting inspircd the first time you should create" + elog "the /etc/inspircd/inspircd.conf file." + elog "You can find example configuration files under /etc/inspircd." + elog "Read the inspircd.conf.example file carefully before starting " + elog "the service." + elog +} |