summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-04-20 10:02:50 +0200
committerMichał Górny <mgorny@gentoo.org>2019-04-20 10:02:50 +0200
commit2729be439f22f737dc520f897705e3633da97889 (patch)
treefc4abe1d045f64e78c4015e2ec62aaa574e2a61a /net-irc
parentnet-irc/shadowircd: Remove last-rited pkg (diff)
downloadgentoo-2729be439f22f737dc520f897705e3633da97889.tar.gz
gentoo-2729be439f22f737dc520f897705e3633da97889.tar.bz2
gentoo-2729be439f22f737dc520f897705e3633da97889.zip
net-irc/epic4: Remove last-rited pkg
Closes: https://bugs.gentoo.org/677734 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'net-irc')
-rw-r--r--net-irc/epic4/Manifest3
-rw-r--r--net-irc/epic4/epic4-2.10.1.ebuild96
-rw-r--r--net-irc/epic4/files/epic-defaultserver.patch12
-rw-r--r--net-irc/epic4/files/epic4-2.10.1-make-recursion.patch10
-rw-r--r--net-irc/epic4/files/epic4-2.10.1-perl.patch54
-rw-r--r--net-irc/epic4/metadata.xml5
6 files changed, 0 insertions, 180 deletions
diff --git a/net-irc/epic4/Manifest b/net-irc/epic4/Manifest
deleted file mode 100644
index 1ebdc0be8fbc..000000000000
--- a/net-irc/epic4/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST epic4-2.10.1.tar.bz2 629722 BLAKE2B 9e28c053ce72eeeeb031c42cc2ebb838a8c5acf18764381d26906afa0ba4471c6241ff65b9f537b51054749698bf7ff9672d7f212cee1b19965a99bca47c29ef SHA512 382a0ad6d2778aba037ee1cf065ec7d2ea3827957010f9eea36072fbb8bf14cdba5baffa9a3ce7888305a2451ae61a4b5b5823336fc80b73997fe0d609918656
-DIST epic4-help-20050315.tar.gz 332502 BLAKE2B 6839c828883bf42545e0d54512377558ec031359a296c014152d8ee136063299d6dbf1e7143b8f32a1ee4d4250029206f6a8fdb3f07c295736cd83a3530e4886 SHA512 f59339d4f2c339cb4c3cbc0cce7db8fadbfe469884c16ab9add42e98eb318851e48ce8a04b4920d33c42afff8b39ec41186744eda0460af544c43fe14658e7e6
-DIST epic4-local.bz2 6530 BLAKE2B 3c4e32dc0f47e74ed750e0f12713b026f75137f8f0edfe28d05c2b527c3117edf834e604cb33f2e2569577c39a38c787437ab68ccc8d426e68b6637565ac78df SHA512 2f4bb0aee284ddedd95dd97b17bd1756fcc700ec07b2814d84f3185e215134600fdd0fadf7ecb1d490ebb449f5e9530fcb207ebfaec27cfce1f9570e73103cc1
diff --git a/net-irc/epic4/epic4-2.10.1.ebuild b/net-irc/epic4/epic4-2.10.1.ebuild
deleted file mode 100644
index fa6e98d50759..000000000000
--- a/net-irc/epic4/epic4-2.10.1.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit autotools eutils flag-o-matic toolchain-funcs
-
-HELP_V="20050315"
-
-DESCRIPTION="Epic4 IRC Client"
-HOMEPAGE="http://epicsol.org/"
-SRC_URI="
- ftp://ftp.epicsol.org/pub/epic/EPIC4-PRODUCTION/${P}.tar.bz2
- ftp://prbh.org/pub/epic/EPIC4-PRODUCTION/epic4-help-${HELP_V}.tar.gz
- mirror://gentoo/epic4-local.bz2"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="ipv6 perl ssl"
-
-DEPEND="
- >=sys-libs/ncurses-5.2
- perl? ( dev-lang/perl )
- ssl? ( >=dev-libs/openssl-0.9.5:0 )"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- epatch \
- "${FILESDIR}"/epic-defaultserver.patch \
- "${FILESDIR}"/${P}-make-recursion.patch \
- "${FILESDIR}"/${P}-perl.patch
-
- eautoconf
-
- rm -f "${WORKDIR}"/help/Makefile || die
- ecvs_clean
-}
-
-src_configure() {
- replace-flags "-O?" "-O"
-
- # copied from alt overlay
- [[ ${CHOST} == *-interix* ]] && export ac_cv_func_getpgrp_void=yes
-
- econf \
- --libexecdir="${EPREFIX}"/usr/libexec/${PN} \
- $(use_with ipv6) \
- $(use_with perl) \
- $(use_with ssl)
-}
-
-src_compile() {
- emake CC="$(tc-getCC)"
-}
-
-src_install () {
- einstall \
- sharedir="${ED}"/usr/share \
- libexecdir="${ED}"/usr/libexec/${PN}
-
- dodoc BUG_FORM README KNOWNBUGS VOTES
-
- cd "${S}"/doc || die
- docinto doc
- dodoc \
- *.txt colors EPIC* IRCII_VERSIONS local_vars missing new-load \
- nicknames outputhelp SILLINESS TS4
-
- insinto /usr/share/epic
- doins -r "${WORKDIR}"/help
-}
-
-pkg_postinst() {
- if [ ! -f "${EROOT}"/usr/share/epic/script/local ]; then
- elog "/usr/share/epic/script/local does not exist, I will now"
- elog "create it. If you do not like the look/feel of this file, or"
- elog "if you'd prefer to use your own script, simply remove this"
- elog "file. If you want to prevent this file from being installed"
- elog "in the future, simply create an empty file with this name."
- cp "${WORKDIR}"/epic4-local "${EROOT}"/usr/share/epic/script/local
- elog
- elog "This provided local startup script adds a number of nifty"
- elog "features to Epic including tab completion, a comprehensive set"
- elog "of aliases, and channel-by-channel logging. To prevent"
- elog "unintentional conflicts with your own scripting, if either the"
- elog "~/.ircrc or ~/.epicrc script files exist, then the local script"
- elog "is *not* run. If you like the script but want to make careful"
- elog "additions (such as selecting your usual servers or setting your"
- elog "nickname), simply copy /usr/share/epic/script/local to ~/.ircrc"
- elog "and then add your additions to the copy."
- fi
-
- # Fix for bug 59075
- chmod 755 "${EROOT}"/usr/share/epic/help
-}
diff --git a/net-irc/epic4/files/epic-defaultserver.patch b/net-irc/epic4/files/epic-defaultserver.patch
deleted file mode 100644
index 1dbc2087cce9..000000000000
--- a/net-irc/epic4/files/epic-defaultserver.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Naur epic4-1.1.14.orig/include/config.h epic4-1.1.14/include/config.h
---- epic4-1.1.14.orig/include/config.h 2003-10-28 05:53:57.000000000 +0000
-+++ epic4-1.1.14/include/config.h 2004-01-03 13:49:53.083473288 +0000
-@@ -42,7 +42,7 @@
- * the client will NOT compile and work properly! Use the default here if
- * you dont have other servers to use.
- */
--#define DEFAULT_SERVER "localhost irc.efnet.net irc.undernet.org irc.dal.net"
-+#define DEFAULT_SERVER "localhost irc.freenode.net irc.efnet.net irc.undernet.org irc.dal.net"
-
- /*
- * The left and right brace characters ('{', '}') are special characters in
diff --git a/net-irc/epic4/files/epic4-2.10.1-make-recursion.patch b/net-irc/epic4/files/epic4-2.10.1-make-recursion.patch
deleted file mode 100644
index 68d7e4c460b6..000000000000
--- a/net-irc/epic4/files/epic4-2.10.1-make-recursion.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -210,6 +210,6 @@
- $(RM) Makefile source/Makefile include/sig.inc config.status config.cache config.log include/defs.h source/info.c.sh
-
- depend:
-- (cd source;make depend)
-+ (cd source;$(MAKE) depend)
-
- # This is the end of the file.
diff --git a/net-irc/epic4/files/epic4-2.10.1-perl.patch b/net-irc/epic4/files/epic4-2.10.1-perl.patch
deleted file mode 100644
index ce41d153abc6..000000000000
--- a/net-irc/epic4/files/epic4-2.10.1-perl.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-From: Nathan Phillip Brink <binki@gentoo.org>
-Subject: Fix broken perl detection somewhat.
-
---- a/configure.in
-+++ b/configure.in
-@@ -636,25 +636,27 @@
- dnl
-
- AC_MSG_CHECKING(whether to support Perl)
--AC_ARG_WITH(perl,
--[ --with-perl[=PATH] Compile with perl support.],
--[ test -z "$withval" && withval=yes ],
--)
--test "xno" != "x$withval" && for base in $withval /usr/local /usr /
--do
-- FOUND=
-- for ext in so a dll ; do
-- test -r $base/lib/libperl.$ext && FOUND=1
-- test -r $base/libperl.$ext && FOUND=1
-- done
-- test -n "$FOUND" || continue
-- AC_MSG_RESULT(yes)
-- LIBS="$LIBS `perl -MExtUtils::Embed -e ldopts`"
-- PERLDOTOH="perl.o"
-- AC_DEFINE(PERL)
-- break
--done
--test -z "$PERLDOTOH" && AC_MSG_RESULT(no)
-+AC_ARG_WITH([perl],
-+ [AS_HELP_STRING([--with-perl[=PATH]], [Compile with perl support.])],
-+ [],
-+ [with_perl=maybe])
-+AS_IF([test "xno" != "x$with_perl"],
-+ [
-+ PERL_LIBS="`perl -MExtUtils::Embed -e ldopts`"
-+ AS_IF([test -n "$PERL_LIBS"],
-+ [
-+ AC_MSG_RESULT([yes])
-+ LIBS="$LIBS $PERL_LIBS"
-+ AC_DEFINE([PERL], [], [Define if perl support should be compiled])
-+ PERLDOTOH="perl.o"
-+ ],
-+ [
-+ AC_MSG_RESULT([no])
-+ AS_IF([test "x$with_perl" != "xmaybe"],
-+ [AC_MSG_ERROR([You specified --with-perl, but I was unable to find libperl])])
-+ ])
-+ ])
-+
- withval=''
-
- dnl ----------------------------------------------------------
-
-Diff finished. Thu Jun 30 22:15:26 2011
diff --git a/net-irc/epic4/metadata.xml b/net-irc/epic4/metadata.xml
deleted file mode 100644
index 6f49eba8f496..000000000000
--- a/net-irc/epic4/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
-</pkgmetadata>