summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaúl Porcel <armin76@gentoo.org>2007-10-25 13:17:09 +0000
committerRaúl Porcel <armin76@gentoo.org>2007-10-25 13:17:09 +0000
commitddd8d69ceaf7c279c706a8e4ad7308d1df4323a3 (patch)
tree26d11b1fe649f41e7c14e628ab3f45405b090644 /net-irc
parentUpdate collision patch to take into account new names of bakefile presets. (diff)
downloadhistorical-ddd8d69ceaf7c279c706a8e4ad7308d1df4323a3.tar.gz
historical-ddd8d69ceaf7c279c706a8e4ad7308d1df4323a3.tar.bz2
historical-ddd8d69ceaf7c279c706a8e4ad7308d1df4323a3.zip
old
Package-Manager: portage-2.1.3.16
Diffstat (limited to 'net-irc')
-rw-r--r--net-irc/anope/ChangeLog5
-rw-r--r--net-irc/anope/anope-1.7.18.ebuild135
-rw-r--r--net-irc/anope/files/digest-anope-1.7.183
-rw-r--r--net-irc/eggdrop/ChangeLog5
-rw-r--r--net-irc/eggdrop/eggdrop-1.6.18-r2.ebuild111
-rw-r--r--net-irc/eggdrop/files/digest-eggdrop-1.6.18-r26
6 files changed, 8 insertions, 257 deletions
diff --git a/net-irc/anope/ChangeLog b/net-irc/anope/ChangeLog
index 8ccd43954350..1b04bd00ce19 100644
--- a/net-irc/anope/ChangeLog
+++ b/net-irc/anope/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-irc/anope
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/anope/ChangeLog,v 1.7 2007/09/06 13:16:41 jokey Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/anope/ChangeLog,v 1.8 2007/10/25 13:17:09 armin76 Exp $
+
+ 25 Oct 2007; Raúl Porcel <armin76@gentoo.org> -anope-1.7.18.ebuild:
+ old
*anope-1.7.19 (06 Sep 2007)
diff --git a/net-irc/anope/anope-1.7.18.ebuild b/net-irc/anope/anope-1.7.18.ebuild
deleted file mode 100644
index 20d970dd2e72..000000000000
--- a/net-irc/anope/anope-1.7.18.ebuild
+++ /dev/null
@@ -1,135 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/anope/anope-1.7.18.ebuild,v 1.3 2007/04/21 22:03:18 gurligebis Exp $
-
-inherit eutils
-
-DESCRIPTION="Anope IRC Services"
-HOMEPAGE="http://www.anope.org"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE="mysql"
-
-DEPEND="mysql? ( virtual/mysql )"
-
-INSTALL_DIR="/opt/anope"
-
-pkg_setup() {
- enewgroup anope
- enewuser anope -1 -1 ${INSTALL_DIR} anope
-}
-
-src_compile() {
- local myconf
- if ! use mysql; then
- myconf="${myconf} --without-mysql"
- fi
- #Threads cant be disabled currently
- #if ! use threads; then
- # myconf="${myconf} --without-threads"
- #fi
-
- epatch ${FILESDIR}/pid-patch.diff
-
- econf \
- ${myconf} \
- --bindir ${INSTALL_DIR} \
- --with-bindir=${INSTALL_DIR} \
- --with-datadir=${INSTALL_DIR}/data \
- --with-modules=${INSTALL_DIR}/modules \
- --with-encryption \
- --with-rungroup=anope \
- --with-permissions=077 \
- || die "Configuration failed."
-
- sed -i -e "/^build:/s:$: language:g" "${S}"/Makefile || die "sed failed"
-
- emake || die "Make failed."
-}
-
-src_install() {
- dodir ${INSTALL_DIR}
- dodir ${INSTALL_DIR}/data
- dodir ${INSTALL_DIR}/data/logs
- dodir ${INSTALL_DIR}/data/languages
- dodir ${INSTALL_DIR}/data/modules
- dodir ${INSTALL_DIR}/data/modules/runtime
- dodir ${INSTALL_DIR}/modules
-
- dodir /var/run/anope
- fowners anope:anope /var/run/anope
- keepdir /var/run/anope
-
- fowners anope:anope ${INSTALL_DIR}
- fowners anope:anope ${INSTALL_DIR}/data
- fowners anope:anope ${INSTALL_DIR}/data/logs
- fowners anope:anope ${INSTALL_DIR}/data/languages
- fowners anope:anope ${INSTALL_DIR}/data/modules
- fowners anope:anope ${INSTALL_DIR}/data/modules/runtime
- fowners anope:anope ${INSTALL_DIR}/modules
-
- exeinto ${INSTALL_DIR}
- doexe src/services
-#### insinto ${INSTALL_DIR}/data
-#### newins data/example.conf services.conf
-
- newinitd ${FILESDIR}/anope.initd anope
- newconfd ${FILESDIR}/anope.confd anope
-
- insinto ${INSTALL_DIR}/modules
- doins src/modules/*.so
-
- keepdir ${INSTALL_DIR}/data/logs
-
- insinto ${INSTALL_DIR}/data/languages
- doins lang/cat
- doins lang/de
- doins lang/en_us
- doins lang/es
- doins lang/fr
- doins lang/gr
- doins lang/hun
- doins lang/it
- doins lang/nl
- doins lang/pl
- doins lang/pt
- doins lang/ru
- doins lang/tr
-
- keepdir ${INSTALL_DIR}/data/modules/runtime
-
- insinto ${INSTALL_DIR}/data/modules
- doins src/protocol/*.so
- doins src/core/*.so
-
- fowners anope:anope ${INSTALL_DIR}/services
- fowners anope:anope ${INSTALL_DIR}/data/services.conf
- fowners anope:anope ${INSTALL_DIR}/data/languages/cat
- fowners anope:anope ${INSTALL_DIR}/data/languages/de
- fowners anope:anope ${INSTALL_DIR}/data/languages/en_us
- fowners anope:anope ${INSTALL_DIR}/data/languages/fr
- fowners anope:anope ${INSTALL_DIR}/data/languages/gr
- fowners anope:anope ${INSTALL_DIR}/data/languages/hun
- fowners anope:anope ${INSTALL_DIR}/data/languages/it
- fowners anope:anope ${INSTALL_DIR}/data/languages/nl
- fowners anope:anope ${INSTALL_DIR}/data/languages/pl
- fowners anope:anope ${INSTALL_DIR}/data/languages/pt
- fowners anope:anope ${INSTALL_DIR}/data/languages/ru
- fowners anope:anope ${INSTALL_DIR}/data/languages/tr
-
- dodoc Changes Changes.conf Changes.lang Changes.mysql docs/*
-}
-
-pkg_postinst() {
- echo
- ewarn "Anope won't run out of the box, you still have to configure it to match your IRCDs configuration."
- ewarn "Edit ${INSTALL_DIR}/data/services.conf to configure Anope."
- echo
- ewarn "!!! ATTENTION !!!"
- ewarn "If you had used 1.7.15 before, be sure to read Changes.mysql to update your MySQL"
- ewarn "tables or anope will break after restart"
- ewarn "!!! ATTENTION !!!"
-}
diff --git a/net-irc/anope/files/digest-anope-1.7.18 b/net-irc/anope/files/digest-anope-1.7.18
deleted file mode 100644
index adb2940e1be0..000000000000
--- a/net-irc/anope/files/digest-anope-1.7.18
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 87b9e7a6a6129a9e9c8d07b135da4a4f anope-1.7.18.tar.gz 1486562
-RMD160 b334fad432e865a780170d9eeba2f455d248be30 anope-1.7.18.tar.gz 1486562
-SHA256 f47c21d1a88bc45d225b225f2877f9ff63a56d8897d7bdd848800f67ed50afc8 anope-1.7.18.tar.gz 1486562
diff --git a/net-irc/eggdrop/ChangeLog b/net-irc/eggdrop/ChangeLog
index 1636e4b4dacd..5b8fbce37f5d 100644
--- a/net-irc/eggdrop/ChangeLog
+++ b/net-irc/eggdrop/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-irc/eggdrop
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/eggdrop/ChangeLog,v 1.75 2007/09/28 02:25:59 kumba Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/eggdrop/ChangeLog,v 1.76 2007/10/25 13:13:44 armin76 Exp $
+
+ 25 Oct 2007; Raúl Porcel <armin76@gentoo.org> -eggdrop-1.6.18-r2.ebuild:
+ old
28 Sep 2007; Joshua Kinard <kumba@gentoo.org> eggdrop-1.6.18-r3.ebuild:
Stable on mips, per #179354.
diff --git a/net-irc/eggdrop/eggdrop-1.6.18-r2.ebuild b/net-irc/eggdrop/eggdrop-1.6.18-r2.ebuild
deleted file mode 100644
index 8d9f353fab03..000000000000
--- a/net-irc/eggdrop/eggdrop-1.6.18-r2.ebuild
+++ /dev/null
@@ -1,111 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/eggdrop/eggdrop-1.6.18-r2.ebuild,v 1.7 2007/08/07 20:34:37 swegener Exp $
-
-inherit eutils
-
-MY_P="eggdrop${PV}"
-PATCHSET_V="1.2"
-
-DESCRIPTION="An IRC bot extensible with C or Tcl."
-HOMEPAGE="http://www.eggheads.org/"
-SRC_URI="ftp://ftp.eggheads.org/pub/eggdrop/source/1.6/${MY_P}.tar.bz2
- mirror://gentoo/${P}-patches-${PATCHSET_V}.tar.bz2"
-KEYWORDS="alpha amd64 ia64 mips ppc sparc x86"
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="debug static mysql postgres ssl vanilla"
-
-DEPEND="dev-lang/tcl
- !vanilla? (
- mysql? ( virtual/mysql )
- postgres? ( dev-db/postgresql )
- ssl? ( dev-libs/openssl )
- )"
-
-S="${WORKDIR}"/${MY_P}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- if use vanilla
- then
- elog "Excluding patches, that install additional modules. This effectively"
- elog "disables the mysql, postgres and ssl USE flags."
- echo
- rm -f "${WORKDIR}"/patch/[1-8]*.patch
- fi
-
- EPATCH_SUFFIX="patch" epatch || die "epatch failed"
-}
-
-src_compile() {
- local target=""
-
- use mysql || ( echo mysql ; echo mystats ) >>disabled_modules
- use postgres || echo pgstats >>disabled_modules
- use static && ( echo rijndael ; echo twofish ) >>disabled_modules
-
- econf $(use_with ssl) || die "econf failed"
-
- make config || die "module config failed"
-
- if use static && use debug
- then
- target="sdebug"
- elif use static
- then
- target="static"
- elif use debug
- then
- target="debug"
- fi
-
- emake -j1 ${target} || die "emake ${target} failed"
-}
-
-src_install() {
- local a b
- make DEST="${D}"/opt/eggdrop install || die "make install failed"
-
- for a in doc/*
- do
- [ -f ${a} ] && dodoc ${a}
- done
-
- cd "${S}"/src/mod
- for a in *.mod
- do
- for b in README UPDATES INSTALL TODO CONTENTS
- do
- [[ -f ${a}/${b} ]] && newdoc ${a}/${b} ${b}.${a}
- done
- done
-
- cd "${S}"
-
- dodoc text/motd.*
-
- use vanilla || dodoc \
- src/mod/botnetop.mod/botnetop.conf \
- src/mod/gseen.mod/gseen.conf \
- src/mod/mc_greet.mod/mc_greet.conf \
- src/mod/stats.mod/stats.conf \
- src/mod/away.mod/away.doc \
- src/mod/rcon.mod/matchbot.tcl \
- src/mod/mystats.mod/tools/mystats.{conf,sql} \
- src/mod/pgstats.mod/tools/{pgstats.conf,setup.sql}
-
- dohtml doc/html/*.html
-
- dobin "${FILESDIR}"/eggdrop-installer
- doman doc/man1/eggdrop.1
-}
-
-pkg_postinst() {
- elog
- elog "NOTE: IPV6 support has been dropped by upstream maintainers."
- elog "Please run /usr/bin/eggdrop-installer to install your eggdrop bot."
- elog
-}
diff --git a/net-irc/eggdrop/files/digest-eggdrop-1.6.18-r2 b/net-irc/eggdrop/files/digest-eggdrop-1.6.18-r2
deleted file mode 100644
index 8426a119de4f..000000000000
--- a/net-irc/eggdrop/files/digest-eggdrop-1.6.18-r2
+++ /dev/null
@@ -1,6 +0,0 @@
-MD5 2d95353f8209098f5bb24b8831e83e8c eggdrop-1.6.18-patches-1.2.tar.bz2 311643
-RMD160 f669a38087ac2753e02b3f247a1e0e38d0a39d9f eggdrop-1.6.18-patches-1.2.tar.bz2 311643
-SHA256 0d520b0e4c8fb2b5378a2708cb98e71d22b74be5ca6540e3994a33460fae02ca eggdrop-1.6.18-patches-1.2.tar.bz2 311643
-MD5 0cfc13dcc84cd4e9d4a23d23d9429ee7 eggdrop1.6.18.tar.bz2 783676
-RMD160 06480616c23bff2b1209e03b5e25b55818c4b195 eggdrop1.6.18.tar.bz2 783676
-SHA256 e5d0794ee7b819f8c12ff10f521e5cb453fc531ac990867c6bf228f018d38a9e eggdrop1.6.18.tar.bz2 783676