summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2018-01-07 17:19:30 +0300
committerMikle Kolyada <zlogene@gentoo.org>2018-01-07 17:19:30 +0300
commit636d2a6548436df3e54bffdd19321d3273d6b74f (patch)
tree50f552c58b1d02d329fcd8150a4a90eb53501d49 /net-im/pork
parentmedia-gfx/dcraw: Test LINGUAS rather than linguas_* USE flags. (diff)
downloadgentoo-636d2a6548436df3e54bffdd19321d3273d6b74f.tar.gz
gentoo-636d2a6548436df3e54bffdd19321d3273d6b74f.tar.bz2
gentoo-636d2a6548436df3e54bffdd19321d3273d6b74f.zip
net-im/pork: remove last rited package
Diffstat (limited to 'net-im/pork')
-rw-r--r--net-im/pork/Manifest1
-rw-r--r--net-im/pork/files/pork-0.99.8.1-fix-buildsystem.patch101
-rw-r--r--net-im/pork/metadata.xml11
-rw-r--r--net-im/pork/pork-0.99.8.1-r1.ebuild42
4 files changed, 0 insertions, 155 deletions
diff --git a/net-im/pork/Manifest b/net-im/pork/Manifest
deleted file mode 100644
index c15241638dee..000000000000
--- a/net-im/pork/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pork-0.99.8.1.tar.gz 490425 BLAKE2B bf7576f83d35ad305894f5cd3f76687a737bb38011fcb3e007dbda51f59b1c618bdbdb2f358d1f859c0d06d658d131ce0cd625ad93bfea7c7c22c4710485aa57 SHA512 20efae37c847e4f4552280832c252341f3d541a08f94df21b780d130bb9dc61cf3464f99e119c01a540572a96340d84ed04e81458c0908357693b6af50d6e77f
diff --git a/net-im/pork/files/pork-0.99.8.1-fix-buildsystem.patch b/net-im/pork/files/pork-0.99.8.1-fix-buildsystem.patch
deleted file mode 100644
index cb63980ee70e..000000000000
--- a/net-im/pork/files/pork-0.99.8.1-fix-buildsystem.patch
+++ /dev/null
@@ -1,101 +0,0 @@
-Fix buildsystem to explicitly compile with -std=gnu89 to avoid
-differencs in inline semantics introduced in GCC5.
-https://bugs.gentoo.org/show_bug.cgi?id=570598
-
-Additionally, fix QA issues caused by implicit declarations, such as:
-* QA Notice: Package triggers severe warnings which indicate that it
-* may exhibit random runtime failures.
-* pork_inet.c:69:8: warning: implicit declaration of function ‘vasprintf’ [-Wimplicit-function-declaration]
-
---- pork-0.99.8.1/configure.ac
-+++ pork-0.99.8.1/configure.ac
-@@ -114,6 +114,8 @@
-
- AC_CHECK_LIB(ncurses, resizeterm, AC_DEFINE(HAVE_RESIZETERM, 1, [Define to 1 if you have the 'resizeterm' function in -lncurses.]))
-
-+AC_SEARCH_LIBS(stdscr, tinfo)
-+
- AC_CHECK_TYPE(u_int32_t, uint32_t)
- if test "$ac_cv_type_u_int32_t" = "no"; then
- AC_CHECK_TYPE(uint32_t, unsigned int)
---- pork-0.99.8.1/Makefile.am
-+++ pork-0.99.8.1/Makefile.am
-@@ -1,3 +1,5 @@
-+AM_CFLAGS = -std=gnu89
-+
- SUBDIRS = \
- src \
- doc \
---- pork-0.99.8.1/src/Makefile.am
-+++ pork-0.99.8.1/src/Makefile.am
-@@ -6,7 +6,7 @@
- endif
-
-
--AM_CFLAGS = -funsigned-char -Imissing -Wall -Iprotocols -fPIC
-+AM_CFLAGS = -funsigned-char -Imissing -Wall -Iprotocols -fPIC -std=gnu89
- AM_CFLAGS += -DHELP_PATH=\"$(pkgdatadir)/help\" -DSYSTEM_PORKRC=\"$(pkgdatadir)/porkrc\"
- AM_CFLAGS += $(PERL_CFLAGS) $(DEBUG_CFLAGS)
-
---- pork-0.99.8.1/src/missing/Makefile.am
-+++ pork-0.99.8.1/src/missing/Makefile.am
-@@ -1,5 +1,5 @@
- INCLUDES = -I../../src
--AM_CFLAGS = $(DEBUG_CFLAGS) $(PERL_CFLAGS)
-+AM_CFLAGS = $(DEBUG_CFLAGS) $(PERL_CFLAGS) -std=gnu89
-
- noinst_LIBRARIES = libmissing.a
-
---- pork-0.99.8.1/src/pork_inet.c
-+++ pork-0.99.8.1/src/pork_inet.c
-@@ -9,8 +9,9 @@
-
- #include <config.h>
-
--#include <unistd.h>
-+#define _GNU_SOURCE 1
- #include <stdio.h>
-+#include <unistd.h>
- #include <stdlib.h>
- #include <string.h>
- #include <errno.h>
---- pork-0.99.8.1/src/pork_screen_io.c
-+++ pork-0.99.8.1/src/pork_screen_io.c
-@@ -14,6 +14,8 @@
-
- #include <config.h>
-
-+#define _GNU_SOURCE 1
-+#include <stdio.h>
- #include <unistd.h>
- #include <ncurses.h>
- #include <stdlib.h>
---- pork-0.99.8.1/src/protocols/aim/Makefile.am
-+++ pork-0.99.8.1/src/protocols/aim/Makefile.am
-@@ -1,5 +1,5 @@
- INCLUDES = -I. -I.. -I../.. -I../../.. -I../../missing -Ilibfaim
--AM_CFLAGS = $(DEBUG_CFLAGS) $(PERL_CFLAGS)
-+AM_CFLAGS = $(DEBUG_CFLAGS) $(PERL_CFLAGS) -std=gnu89
-
- noinst_LIBRARIES = libaim.a
-
---- pork-0.99.8.1/src/protocols/irc/Makefile.am
-+++ pork-0.99.8.1/src/protocols/irc/Makefile.am
-@@ -1,6 +1,6 @@
- INCLUDES = -I. -I.. -I../.. -I../../.. -I../../missing
-
--AM_CFLAGS = $(DEBUG_CFLAGS) $(PERL_CFLAGS)
-+AM_CFLAGS = $(DEBUG_CFLAGS) $(PERL_CFLAGS) -std=gnu89
-
- noinst_LIBRARIES = libirc.a
-
---- pork-0.99.8.1/src/protocols/Makefile.am
-+++ pork-0.99.8.1/src/protocols/Makefile.am
-@@ -3,6 +3,6 @@
- endif
-
- INCLUDES = -I. -I.. -I../.. -I../missing
--AM_CFLAGS = $(DEBUG_CFLAGS) $(PERL_CFLAGS)
-+AM_CFLAGS = $(DEBUG_CFLAGS) $(PERL_CFLAGS) -std=gnu89
-
- SUBDIRS = $(irc_dir) aim
diff --git a/net-im/pork/metadata.xml b/net-im/pork/metadata.xml
deleted file mode 100644
index 7ad6912389e9..000000000000
--- a/net-im/pork/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <longdescription>
- Pork is an AIM client based on the GAIM libraries with an interface similar to IRCII.
-</longdescription>
- <upstream>
- <remote-id type="sourceforge">ojnk</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/net-im/pork/pork-0.99.8.1-r1.ebuild b/net-im/pork/pork-0.99.8.1-r1.ebuild
deleted file mode 100644
index 5da6c71b7297..000000000000
--- a/net-im/pork/pork-0.99.8.1-r1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools
-
-DESCRIPTION="Console based AIM client that looks like ircII"
-HOMEPAGE="http://dev.ojnk.net/"
-SRC_URI="mirror://sourceforge/ojnk/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ~mips ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE="perl"
-
-RDEPEND="
- perl? ( dev-lang/perl )
- sys-libs/ncurses:0=
-"
-DEPEND="${RDEPEND}"
-PATCHES=(
- "${FILESDIR}/${P}-fix-buildsystem.patch"
-)
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- econf $(use_enable perl)
-}
-
-src_install() {
- default
-
- doman doc/pork.1
- insinto /usr/share/pork/examples
- doins examples/blist.txt
-
- dodoc AUTHORS ChangeLog INSTALL NEWS README STYLE TODO QUICK_START
-}