summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hanselmann <hansmi@gentoo.org>2007-01-28 22:02:47 +0000
committerMichael Hanselmann <hansmi@gentoo.org>2007-01-28 22:02:47 +0000
commit32c8ce55941ea83e5978320bc082b9200684085f (patch)
tree3f33a9c4627de2c7503e4f2dcabaed952b05d498 /net-irc/inspircd
parentNew import, bug 147669 (diff)
downloadgentoo-2-32c8ce55941ea83e5978320bc082b9200684085f.tar.gz
gentoo-2-32c8ce55941ea83e5978320bc082b9200684085f.tar.bz2
gentoo-2-32c8ce55941ea83e5978320bc082b9200684085f.zip
Remove old ebuilds.
(Portage version: 2.1.2-r4)
Diffstat (limited to 'net-irc/inspircd')
-rw-r--r--net-irc/inspircd/ChangeLog6
-rw-r--r--net-irc/inspircd/files/digest-inspircd-1.0.63
-rw-r--r--net-irc/inspircd/files/digest-inspircd-1.0.73
-rw-r--r--net-irc/inspircd/inspircd-1.0.6.ebuild135
-rw-r--r--net-irc/inspircd/inspircd-1.0.7.ebuild158
5 files changed, 5 insertions, 300 deletions
diff --git a/net-irc/inspircd/ChangeLog b/net-irc/inspircd/ChangeLog
index 385aee22f736..d2ec0e84ca73 100644
--- a/net-irc/inspircd/ChangeLog
+++ b/net-irc/inspircd/ChangeLog
@@ -1,6 +1,10 @@
# 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.8 2007/01/04 18:51:12 hansmi Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/ChangeLog,v 1.9 2007/01/28 22:02:47 hansmi Exp $
+
+ 28 Jan 2007; Michael Hanselmann <hansmi@gentoo.org>
+ -inspircd-1.0.6.ebuild, -inspircd-1.0.7.ebuild:
+ Remove old ebuilds.
04 Jan 2007; Michael Hanselmann <hansmi@gentoo.org>
inspircd-1.0.7-r1.ebuild:
diff --git a/net-irc/inspircd/files/digest-inspircd-1.0.6 b/net-irc/inspircd/files/digest-inspircd-1.0.6
deleted file mode 100644
index 8a94d1f4cdac..000000000000
--- a/net-irc/inspircd/files/digest-inspircd-1.0.6
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 982543b1e0e1592613307270f2a2088a InspIRCd-1.0.6.tar.bz2 334304
-RMD160 783c7351a0ad6ee609a41a50b18f404003358f89 InspIRCd-1.0.6.tar.bz2 334304
-SHA256 7f2f51c97f8fd7ac5e278a6266ffea408a0c4c25db04940b3ca59107f7b07a6d InspIRCd-1.0.6.tar.bz2 334304
diff --git a/net-irc/inspircd/files/digest-inspircd-1.0.7 b/net-irc/inspircd/files/digest-inspircd-1.0.7
deleted file mode 100644
index 701d53b28937..000000000000
--- a/net-irc/inspircd/files/digest-inspircd-1.0.7
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 64c98e5b0724d544904100df9e699c52 InspIRCd-1.0.7.tar.bz2 337187
-RMD160 a7387cf88f08f0e9487d25db79d88cde9e9c8283 InspIRCd-1.0.7.tar.bz2 337187
-SHA256 0ce029e92a0a1713de1d0665d1143295a054a8d925fa724795d709493a8b8d7f InspIRCd-1.0.7.tar.bz2 337187
diff --git a/net-irc/inspircd/inspircd-1.0.6.ebuild b/net-irc/inspircd/inspircd-1.0.6.ebuild
deleted file mode 100644
index d2b631b82888..000000000000
--- a/net-irc/inspircd/inspircd-1.0.6.ebuild
+++ /dev/null
@@ -1,135 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/inspircd-1.0.6.ebuild,v 1.2 2006/08/25 19:23:29 hansmi Exp $
-
-inherit eutils toolchain-funcs multilib
-
-IUSE="ssl"
-
-DESCRIPTION="InspIRCd - The Modular C++ IRC Daemon"
-HOMEPAGE="http://www.inspircd.org"
-SRC_URI="mirror://sourceforge/${PN}/InspIRCd-${PV}.tar.bz2"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ppc x86"
-DEPEND="ssl? ( >=dev-libs/openssl-0.9.7d )"
-RDEPEND=""
-
-S="${WORKDIR}/inspircd"
-
-pkg_setup() {
- enewgroup inspircd
- enewuser inspircd -1 -1 -1 inspircd
-}
-
-# ============================================================
-# inspircd_use_enable ()
-#
-# If something is in our USE flags, then append it to
-# my_conf in the valid format as used by inspircd's configure
-# script.
-#
-# $1 = pkg name
-# $2 = USE flag
-# $3 = inspircd variable
-# $4 = inspircd value if yes
-# $5 = inspircd value if no
-inspircd_use_enable() {
- if built_with_use $1 $2 ; then
- echo "$3=\"$4\"" >> .config.cache
- else
- echo "$3=\"$5\"" >> .config.cache
- fi
-}
-
-# Determines the appropriate value for the
-# GCC34= configuration option.
-inspircd-determine-gcc34() {
- if [[ $(gcc-major-version) -gt 3 ]] ; then
- echo "4"
- else
- if [[ $(gcc-minor-version) -lt 4 ]] ; then
- echo "3"
- else
- echo "4"
- fi
- fi
-}
-
-src_compile() {
- local myconf=""
-
- # Write a configuration file
- einfo "Building configuration parameters file."
- cat << _EOF_ > .config.cache
-CC="$(tc-getCXX)"
-MAKEPROG="make $MFLAGS"
-GCCVER="$(gcc-major-version)"
-GCC34="$(inspircd-determine-gcc34)"
-OPTIMISATI=""
-FLAGS="$CXXFLAGS"
-CONFIG_DIR="/etc/inspircd"
-MODULE_DIR="/usr/$(get_libdir)/inspircd/modules"
-BASE_DIR="/"
-LIBRARY_DIR="/usr/$(get_libdir)/inspircd"
-OSNAME="$(uname)"
-BINARY_DIR="/usr/bin"
-LDLIBS="-ldl -lstdc++"
-CHANGE_COMPILER="n"
-HAS_STRLCPY="false"
-MAKEORDER="ircd mods"
-
-# User defined parameters.
-MAX_KICK="${INSPIRCD_KICKLEN:-255}"
-MAX_IDENT="${INSPIRCD_IDENTLEN:-12}"
-MAX_GECOS="${INSPIRCD_GECOSLEN:-128}"
-MAX_CLIENT_T="${INSPIRCD_MAX_CLIENTS:-512}"
-MAXI_MODES="${INSPIRCD_MAX_MODES:-20}"
-MAX_CLIENT="${INSPIRCD_MAX_CLIENTS:-512}"
-MAX_CHANNE="${INSPIRCD_MAX_CHANNELS:-20}"
-NICK_LENGT="${INSPIRCD_NICKLEN:-31}"
-MAX_OPERCH="${INSPIRCD_MAX_OPERCHANS:-60}"
-MAX_AWAY="${INSPIRCD_AWAYLEN:-200}"
-MAX_TOPIC="${INSPIRCD_TOPICLEN:-307}"
-MAX_QUIT="${INSPIRCD_QUITLEN:-255}"
-_EOF_
-
- # for a rainy day: USE="ssl" could be gnutls too?
- inspircd_use_enable openssl ssl HAS_OPENSSL y n
-
- # build makefiles based on our configure params
- # Please note that it's not the autoconf configure script, thus
- # we don't use econf.
- ./configure -update || die "configure failed"
-
- emake DESTDIR="${D}" || 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 /usr/bin/ircd
-
- emake \
- LIBPATH="${D}/usr/$(get_libdir)/inspircd" \
- MODPATH="${D}/usr/$(get_libdir)/inspircd/modules" \
- CONPATH="${D}/etc/inspircd" \
- BINPATH="${D}/usr/bin" \
- BASE="${D}/usr/bin/inspircd.launcher" \
- install
-
- newinitd "${FILESDIR}"/init.d_inspircd inspircd
-}
-
-pkg_postinst() {
- chown -R inspircd:inspircd "${ROOT}"/etc/inspircd
- chmod 700 "${ROOT}"/etc/inspircd
-
- chown -R inspircd:inspircd "${ROOT}"/usr/$(get_libdir)/inspircd
- chmod -R 755 "${ROOT}"/usr/$(get_libdir)/inspircd
-
- chmod -R 755 /usr/bin/inspircd
-}
diff --git a/net-irc/inspircd/inspircd-1.0.7.ebuild b/net-irc/inspircd/inspircd-1.0.7.ebuild
deleted file mode 100644
index 2b518d615a9f..000000000000
--- a/net-irc/inspircd/inspircd-1.0.7.ebuild
+++ /dev/null
@@ -1,158 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/inspircd-1.0.7.ebuild,v 1.1 2006/10/22 19:34:56 hansmi Exp $
-
-inherit eutils toolchain-funcs multilib
-
-IUSE="openssl gnutls"
-
-DESCRIPTION="InspIRCd - The Modular C++ IRC Daemon"
-HOMEPAGE="http://www.inspircd.org"
-SRC_URI="mirror://sourceforge/${PN}/InspIRCd-${PV}.tar.bz2"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-RDEPEND="
- openssl? ( >=dev-libs/openssl-0.9.7d )
- gnutls? ( >=net-libs/gnutls-1.3.0 )"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/inspircd"
-
-pkg_setup() {
- enewgroup inspircd
- enewuser inspircd -1 -1 -1 inspircd
-}
-
-# ============================================================
-# inspircd_use_enable ()
-#
-# If something is in our USE flags, then append it to
-# my_conf in the valid format as used by inspircd's configure
-# script.
-#
-# $1 = pkg name
-# $2 = inspircd variable
-# $3 = inspircd value if yes
-# $4 = inspircd value if no
-inspircd_use_enable() {
- if use $1 ; then
- echo "$2=\"$3\"" >> .config.cache
- else
- echo "$2=\"$4\"" >> .config.cache
- fi
-}
-
-# Determines the appropriate value for the
-# GCC34= configuration option.
-inspircd-determine-gcc34() {
- if [[ $(gcc-major-version) -gt 3 ]] ; then
- echo "4"
- else
- if [[ $(gcc-minor-version) -lt 4 ]] ; then
- echo "3"
- else
- echo "4"
- fi
- fi
-}
-
-src_compile() {
- local myconf=""
-
- ewarn
- ewarn "Note that with InspIRCd 1.0.7 and later you can select"
- ewarn "which SSL engine you wish to use."
- ewarn
- ewarn "USE=ssl is no longer supported."
- ewarn
- ewarn "To select OpenSSL, put USE='openssl' in your useflags."
- ewarn "To select GnuTLS, put USE='gnutls' in your useflags."
- ewarn
- ewarn "You may compile in support for both SSL engines."
- ewarn "To do so, just do USE='openssl gnutls'."
- ewarn
-
- # Write a configuration file
- einfo "Building configuration parameters file."
-
- if use openssl; then
- einfo "Enabling OpenSSL SSL engine module."
- fi
-
- if use gnutls; then
- einfo "Enabling GnuTLS SSL engine module."
- fi
-
- cat << _EOF_ > .config.cache
-CC="$(tc-getCXX)"
-MAKEPROG="make $MFLAGS"
-GCCVER="$(gcc-major-version)"
-GCC34="$(inspircd-determine-gcc34)"
-OPTIMISATI=""
-FLAGS="$CXXFLAGS"
-CONFIG_DIR="/etc/inspircd"
-MODULE_DIR="/usr/$(get_libdir)/inspircd/modules"
-BASE_DIR="/"
-LIBRARY_DIR="/usr/$(get_libdir)/inspircd"
-OSNAME="$(uname)"
-BINARY_DIR="/usr/bin"
-LDLIBS="-ldl -lstdc++"
-CHANGE_COMPILER="n"
-HAS_STRLCPY="false"
-MAKEORDER="ircd mods"
-
-# User defined parameters.
-MAX_KICK="${INSPIRCD_KICKLEN:-255}"
-MAX_IDENT="${INSPIRCD_IDENTLEN:-12}"
-MAX_GECOS="${INSPIRCD_GECOSLEN:-128}"
-MAX_CLIENT_T="${INSPIRCD_MAX_CLIENTS:-512}"
-MAXI_MODES="${INSPIRCD_MAX_MODES:-20}"
-MAX_CLIENT="${INSPIRCD_MAX_CLIENTS:-512}"
-MAX_CHANNE="${INSPIRCD_MAX_CHANNELS:-20}"
-NICK_LENGT="${INSPIRCD_NICKLEN:-31}"
-MAX_OPERCH="${INSPIRCD_MAX_OPERCHANS:-60}"
-MAX_AWAY="${INSPIRCD_AWAYLEN:-200}"
-MAX_TOPIC="${INSPIRCD_TOPICLEN:-307}"
-MAX_QUIT="${INSPIRCD_QUITLEN:-255}"
-_EOF_
-
- inspircd_use_enable openssl HAS_OPENSSL y n
- inspircd_use_enable gnutls HAS_GNUTLS y n
-
- # build makefiles based on our configure params
- # Please note that it's not the autoconf configure script, thus
- # we don't use econf.
- ./configure -update || die "configure failed"
-
- emake DESTDIR="${D}" || 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 /usr/bin/ircd
-
- emake \
- LIBPATH="${D}/usr/$(get_libdir)/inspircd" \
- MODPATH="${D}/usr/$(get_libdir)/inspircd/modules" \
- CONPATH="${D}/etc/inspircd" \
- BINPATH="${D}/usr/bin" \
- BASE="${D}/usr/bin/inspircd.launcher" \
- install
-
- newinitd "${FILESDIR}"/init.d_inspircd inspircd
-}
-
-pkg_postinst() {
- chown -R inspircd:inspircd "${ROOT}"/etc/inspircd
- chmod 700 "${ROOT}"/etc/inspircd
-
- chown -R inspircd:inspircd "${ROOT}"/usr/$(get_libdir)/inspircd
- chmod -R 755 "${ROOT}"/usr/$(get_libdir)/inspircd
-
- chmod -R 755 /usr/bin/inspircd
-}