summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-04-29 20:20:08 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-04-29 20:20:08 +0000
commitcec44acd5159fa347bfbeab17726ce93de2aaa22 (patch)
tree48bcb5e7217e6b817a42b75e1480f5bda3b345f3 /net-irc
parentRemove old. (diff)
downloadgentoo-2-cec44acd5159fa347bfbeab17726ce93de2aaa22.tar.gz
gentoo-2-cec44acd5159fa347bfbeab17726ce93de2aaa22.tar.bz2
gentoo-2-cec44acd5159fa347bfbeab17726ce93de2aaa22.zip
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'net-irc')
-rw-r--r--net-irc/bobotpp/ChangeLog9
-rw-r--r--net-irc/bobotpp/bobotpp-2.2.2.ebuild50
-rw-r--r--net-irc/bobotpp/files/bobotpp-2.2.2-gcc43.patch121
3 files changed, 6 insertions, 174 deletions
diff --git a/net-irc/bobotpp/ChangeLog b/net-irc/bobotpp/ChangeLog
index 87322e8f9397..c62153e219fd 100644
--- a/net-irc/bobotpp/ChangeLog
+++ b/net-irc/bobotpp/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-irc/bobotpp
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/bobotpp/ChangeLog,v 1.26 2012/02/06 17:23:33 ranger Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-irc/bobotpp/ChangeLog,v 1.27 2015/04/29 20:20:08 mrueg Exp $
+
+ 29 Apr 2015; Manuel Rüger <mrueg@gentoo.org> -bobotpp-2.2.2.ebuild,
+ -files/bobotpp-2.2.2-gcc43.patch:
+ Remove old.
06 Feb 2012; Brent Baude <ranger@gentoo.org> bobotpp-2.2.3.ebuild:
Marking bobotpp-2.2.3 ppc for bug 397149
@@ -105,4 +109,3 @@
13 Jul 2004; Sven Wegener <swegener@gentoo.org> +metadata.xml,
+bobotpp-2.1.4.ebuild:
Initial import, ebuild written by me.
-
diff --git a/net-irc/bobotpp/bobotpp-2.2.2.ebuild b/net-irc/bobotpp/bobotpp-2.2.2.ebuild
deleted file mode 100644
index 2e1d383ace80..000000000000
--- a/net-irc/bobotpp/bobotpp-2.2.2.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/bobotpp/bobotpp-2.2.2.ebuild,v 1.7 2010/12/03 00:40:33 flameeyes Exp $
-
-inherit autotools eutils
-
-DESCRIPTION="A flexible IRC bot scriptable in scheme"
-HOMEPAGE="http://unknownlamer.org/code/bobot.html"
-SRC_URI="http://savannah.nongnu.org/download/${PN}/${P}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="ppc x86 ~amd64"
-IUSE="guile"
-
-DEPEND="guile? ( dev-scheme/guile )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/bobotpp-2.2.2-gcc43.patch \
- "${FILESDIR}"/${P}-asneeded.patch
- eautoreconf
-}
-
-src_compile() {
- econf $(use_enable guile scripting) || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "install failed"
-
- dosym bobot++.info /usr/share/info/bobotpp.info || die "dosym failed"
-
- dodoc AUTHORS ChangeLog NEWS README SCRIPTING TODO || die "dodoc failed"
- dohtml doc/index.html || die "dohtml failed"
-
- docinto example-config
- dodoc examples/{bot.*,scripts.load} || die "dodoc failed"
-
- docinto example-scripts
- dodoc scripts/{boulet,country,eval,hello,log.scm,tamere,uname,uptime} || die "dodoc failed"
-}
-
-pkg_postinst() {
- elog
- elog "You can find a sample configuration file set in"
- elog "/usr/share/doc/${PF}/example-config"
- elog
-}
diff --git a/net-irc/bobotpp/files/bobotpp-2.2.2-gcc43.patch b/net-irc/bobotpp/files/bobotpp-2.2.2-gcc43.patch
deleted file mode 100644
index 5627c9a6cb97..000000000000
--- a/net-irc/bobotpp/files/bobotpp-2.2.2-gcc43.patch
+++ /dev/null
@@ -1,121 +0,0 @@
-diff -NrU5 bobotpp-2.2.2.orig/source/Channel.C bobotpp-2.2.2/source/Channel.C
---- bobotpp-2.2.2.orig/source/Channel.C 2008-04-18 16:19:56.000000000 +0200
-+++ bobotpp-2.2.2/source/Channel.C 2008-04-18 16:31:08.000000000 +0200
-@@ -23,10 +23,11 @@
-
- #include "Macros.H"
- #include "Utils.H"
- #include "Channel.H"
- #include "StringTokenizer.H"
-+#include <cstdlib>
- #ifdef USESCRIPTS
- #include "Interp.H"
- #endif
-
- Channel::Channel(ServerConnection *c,
-diff -NrU5 bobotpp-2.2.2.orig/source/DCCManager.H bobotpp-2.2.2/source/DCCManager.H
---- bobotpp-2.2.2.orig/source/DCCManager.H 2008-04-18 16:19:56.000000000 +0200
-+++ bobotpp-2.2.2/source/DCCManager.H 2008-04-18 16:32:55.000000000 +0200
-@@ -22,10 +22,11 @@
- #include <list>
- #include "DCCPerson.H"
- #include "DCCConnection.H"
- #include "UserCommands.H"
- #include "String.H"
-+#include <sys/types.h>
-
- typedef std::map<String, DCCPerson*, std::less<String> > DCC_MAP;
-
- // Manages all active DCC connections and allows you to send a message
- // to each one using the string representation of the user's address
-diff -NrU5 bobotpp-2.2.2.orig/source/Parser.C bobotpp-2.2.2/source/Parser.C
---- bobotpp-2.2.2.orig/source/Parser.C 2008-04-18 16:19:56.000000000 +0200
-+++ bobotpp-2.2.2/source/Parser.C 2008-04-18 16:34:48.000000000 +0200
-@@ -21,10 +21,11 @@
- #include "config.h"
- #endif
-
- #include <sys/types.h>
- #include <netinet/in.h>
-+#include <cstdlib>
-
- #include "StringTokenizer.H"
- #include "Parser.H"
- #include "UserCommands.H"
- #include "Commands.H"
-diff -NrU5 bobotpp-2.2.2.orig/source/ServerQueue.C bobotpp-2.2.2/source/ServerQueue.C
---- bobotpp-2.2.2.orig/source/ServerQueue.C 2008-04-18 16:19:56.000000000 +0200
-+++ bobotpp-2.2.2/source/ServerQueue.C 2008-04-18 16:36:01.000000000 +0200
-@@ -19,11 +19,11 @@
-
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif
-
--//#include <limits>
-+#include <climits>
- #include "ServerQueue.H"
- #include "Utils.H"
-
- ServerQueue::ServerQueue(Socket * s, bool d)
- : Queue(s,d), penalty(0)
-diff -NrU5 bobotpp-2.2.2.orig/source/ShitList.C bobotpp-2.2.2/source/ShitList.C
---- bobotpp-2.2.2.orig/source/ShitList.C 2008-04-18 16:19:56.000000000 +0200
-+++ bobotpp-2.2.2/source/ShitList.C 2008-04-18 16:37:12.000000000 +0200
-@@ -24,10 +24,11 @@
- #include <fstream>
-
- #include "ShitList.H"
- #include "StringTokenizer.H"
- #include "Utils.H"
-+#include <cstdlib>
-
- ShitList::ShitList(String filename)
- : listFileName(filename)
- {
- #ifdef HAVE_STL_CLEAR
-diff -NrU5 bobotpp-2.2.2.orig/source/String.C bobotpp-2.2.2/source/String.C
---- bobotpp-2.2.2.orig/source/String.C 2008-04-18 16:19:56.000000000 +0200
-+++ bobotpp-2.2.2/source/String.C 2008-04-18 16:39:18.000000000 +0200
-@@ -21,10 +21,11 @@
-
- #include <cstring>
- #include <cctype>
- #include <sstream>
- #include <iostream>
-+#include <cstdlib>
-
- String::String()
- {
- }
-
-diff -NrU5 bobotpp-2.2.2.orig/source/UserCommands.C bobotpp-2.2.2/source/UserCommands.C
---- bobotpp-2.2.2.orig/source/UserCommands.C 2008-04-18 16:19:56.000000000 +0200
-+++ bobotpp-2.2.2/source/UserCommands.C 2008-04-18 16:40:39.000000000 +0200
-@@ -30,10 +30,11 @@
- #include <sys/socket.h>
- #include <netinet/in.h>
- #include <arpa/inet.h>
- #include <netdb.h>
- #include <cstdlib>
-+#include <cstring>
- #ifndef _X_OPEN_SOURCE
- #define _X_OPEN_SOURCE
- #endif
- #ifndef _X_OPEN_SOURCE_EXTENDED
- #define _X_OPEN_SOURCE_EXTENDED 1
-diff -NrU5 bobotpp-2.2.2.orig/source/UserList.C bobotpp-2.2.2/source/UserList.C
---- bobotpp-2.2.2.orig/source/UserList.C 2008-04-18 16:19:56.000000000 +0200
-+++ bobotpp-2.2.2/source/UserList.C 2008-04-18 16:41:08.000000000 +0200
-@@ -17,10 +17,11 @@
- // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- // 02110-1301, USA.
-
- #include <fstream>
- #include <iostream>
-+#include <cstdlib>
-
- #include "UserList.H"
- #include "StringTokenizer.H"
- #include "Utils.H"
-