diff options
author | Michael Hanselmann <hansmi@gentoo.org> | 2007-08-06 08:37:11 +0000 |
---|---|---|
committer | Michael Hanselmann <hansmi@gentoo.org> | 2007-08-06 08:37:11 +0000 |
commit | c76752e60d123a396f0bc1debe256a417914ea00 (patch) | |
tree | 52fd98799a7a6a8442f8279d10c2c30ef68529d1 /net-irc | |
parent | Remove old. Fix tests, bug 187836 (diff) | |
download | gentoo-2-c76752e60d123a396f0bc1debe256a417914ea00.tar.gz gentoo-2-c76752e60d123a396f0bc1debe256a417914ea00.tar.bz2 gentoo-2-c76752e60d123a396f0bc1debe256a417914ea00.zip |
Version bump (bug 181243).
(Portage version: 2.1.2.11)
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/inspircd/ChangeLog | 8 | ||||
-rw-r--r-- | net-irc/inspircd/files/digest-inspircd-1.1.11 | 3 | ||||
-rw-r--r-- | net-irc/inspircd/inspircd-1.1.11.ebuild | 83 |
3 files changed, 93 insertions, 1 deletions
diff --git a/net-irc/inspircd/ChangeLog b/net-irc/inspircd/ChangeLog index 1fb62f8d2bf4..314cab9d05ea 100644 --- a/net-irc/inspircd/ChangeLog +++ b/net-irc/inspircd/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-irc/inspircd # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/ChangeLog,v 1.14 2007/07/11 18:20:32 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/ChangeLog,v 1.15 2007/08/06 08:37:11 hansmi Exp $ + +*inspircd-1.1.11 (06 Aug 2007) + + 06 Aug 2007; Michael Hanselmann <hansmi@gentoo.org> + +inspircd-1.1.11.ebuild: + Version bump (bug 181243). *inspircd-1.1.9 (11 Jul 2007) diff --git a/net-irc/inspircd/files/digest-inspircd-1.1.11 b/net-irc/inspircd/files/digest-inspircd-1.1.11 new file mode 100644 index 000000000000..3194929b0a83 --- /dev/null +++ b/net-irc/inspircd/files/digest-inspircd-1.1.11 @@ -0,0 +1,3 @@ +MD5 7b749447a99d6b8be103c2126b28114b InspIRCd-1.1.11.tar.bz2 509770 +RMD160 f1ab256ab44cdaf959ab9cfa7ab17d6f5e3c089a InspIRCd-1.1.11.tar.bz2 509770 +SHA256 e1afdf9ee5ebffd341a3e3a8aa59c30b2ffd630467d98859f9d034c4a3d70ca5 InspIRCd-1.1.11.tar.bz2 509770 diff --git a/net-irc/inspircd/inspircd-1.1.11.ebuild b/net-irc/inspircd/inspircd-1.1.11.ebuild new file mode 100644 index 000000000000..c5ad7bb317b9 --- /dev/null +++ b/net-irc/inspircd/inspircd-1.1.11.ebuild @@ -0,0 +1,83 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/inspircd-1.1.11.ebuild,v 1.1 2007/08/06 08:37:11 hansmi Exp $ + +inherit eutils toolchain-funcs multilib # subversion + +IUSE="openssl gnutls ipv6 kernel_linux" + +DESCRIPTION="InspIRCd - The Modular C++ IRC Daemon" +HOMEPAGE="http://www.inspircd.org" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +RDEPEND=" + >=sys-devel/gcc-3.3.0 + >=dev-lang/perl-5.8 + openssl? ( >=dev-libs/openssl-0.9.7d ) + gnutls? ( >=net-libs/gnutls-1.3.0 )" +DEPEND="${RDEPEND}" +SRC_URI="mirror://sourceforge/${PN}/InspIRCd-${PV}.tar.bz2" +#ESVN_REPO_URI="http://svn.inspircd.org/repository/trunk/inspircd" +#ESVN_PROJECT="inspircd" + +S="${WORKDIR}/inspircd" + +pkg_setup() { + enewgroup inspircd + enewuser inspircd -1 -1 -1 inspircd +} + +src_compile() { + local myconf="" + + # Write a configuration file + # we don't use econf. + USE_SSL="$(use_enable openssl)" + use gnutls && USE_SSL="$(use_enable gnutls)" + USE_SOCKET_ENGINE="--enable-epoll" + ./configure $(use_enable ipv6) --enable-remote-ipv6 ${USE_SSL} \ + ${USE_SOCKET_ENGINE} \ + --prefix="/usr/$(get_libdir)/inspircd" \ + --config-dir="/etc/inspircd" --bin-dir="/usr/bin" \ + --library-dir="/usr/$(get_libdir)/inspircd" \ + --module-dir="/usr/$(get_libdir)/inspircd/modules" \ + || die "configure failed" + + emake || die "emake failed" +} + +src_install() { + # the inspircd buildsystem does not create these, it's configure script + # does. so, we have to at this point to make sure they are there. + dodir /usr/$(get_libdir)/inspircd + dodir /usr/$(get_libdir)/inspircd/modules + dodir /etc/inspircd + dodir /var/log/inspircd + dodir /usr/include/inspircd + + emake install \ + LIBPATH="${D}/usr/$(get_libdir)/inspircd/" \ + MODPATH="${D}/usr/$(get_libdir)/inspircd/modules/" \ + CONPATH="${D}/etc/inspircd" \ + BINPATH="${D}/usr/bin" \ + BASE="${D}/usr/$(get_libdir)/inspircd/inspircd.launcher" + + insinto /usr/include/inspircd/ + doins "${S}"/include/* + + newinitd "${FILESDIR}"/init.d_inspircd inspircd +} + +pkg_postinst() { + chown -R inspircd:inspircd "${ROOT}"/etc/inspircd + chmod 700 "${ROOT}"/etc/inspircd + + chmod 750 "${ROOT}"/var/log/inspircd + chown -R inspircd:inspircd "${ROOT}"/var/log/inspircd + + chown -R inspircd:inspircd "${ROOT}"/usr/$(get_libdir)/inspircd + chmod -R 755 "${ROOT}"/usr/$(get_libdir)/inspircd + + chmod -R 755 "${ROOT}"/usr/bin/inspircd +} |