summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAgostino Sarubbo <ago@gentoo.org>2012-10-28 12:02:33 +0000
committerAgostino Sarubbo <ago@gentoo.org>2012-10-28 12:02:33 +0000
commit1e600796b86a0732e81edc0a94959f9d3fb254d4 (patch)
tree4103b028fa4493b5a76c8a9a86780ae886e05fa4 /net-irc/irssi-xmpp
parentia64/sparc stable wrt #426668 (diff)
downloadgentoo-2-1e600796b86a0732e81edc0a94959f9d3fb254d4.tar.gz
gentoo-2-1e600796b86a0732e81edc0a94959f9d3fb254d4.tar.bz2
gentoo-2-1e600796b86a0732e81edc0a94959f9d3fb254d4.zip
Remove old
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Diffstat (limited to 'net-irc/irssi-xmpp')
-rw-r--r--net-irc/irssi-xmpp/ChangeLog8
-rw-r--r--net-irc/irssi-xmpp/files/irssi-xmpp-0.51-build_system.patch61
-rw-r--r--net-irc/irssi-xmpp/files/irssi-xmpp-0.51-implicit_conversion.patch11
-rw-r--r--net-irc/irssi-xmpp/irssi-xmpp-0.51.ebuild36
4 files changed, 6 insertions, 110 deletions
diff --git a/net-irc/irssi-xmpp/ChangeLog b/net-irc/irssi-xmpp/ChangeLog
index 0486f51651e1..74e83ef04d32 100644
--- a/net-irc/irssi-xmpp/ChangeLog
+++ b/net-irc/irssi-xmpp/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-irc/irssi-xmpp
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/irssi-xmpp/ChangeLog,v 1.6 2012/03/12 13:24:27 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/irssi-xmpp/ChangeLog,v 1.7 2012/10/28 12:02:33 ago Exp $
+
+ 28 Oct 2012; Agostino Sarubbo <ago@gentoo.org>
+ -files/irssi-xmpp-0.51-build_system.patch,
+ -files/irssi-xmpp-0.51-implicit_conversion.patch, -irssi-xmpp-0.51.ebuild:
+ Remove old
*irssi-xmpp-0.52 (12 Mar 2012)
@@ -34,4 +39,3 @@
03 Nov 2009; Tobias Scherbaum <dertobi123@gentoo.org>
+irssi-xmpp-0.50.ebuild, +metadata.xml:
Initial import, ebuild by Tim Weber (#291577)
-
diff --git a/net-irc/irssi-xmpp/files/irssi-xmpp-0.51-build_system.patch b/net-irc/irssi-xmpp/files/irssi-xmpp-0.51-build_system.patch
deleted file mode 100644
index 44ed819ab2fe..000000000000
--- a/net-irc/irssi-xmpp/files/irssi-xmpp-0.51-build_system.patch
+++ /dev/null
@@ -1,61 +0,0 @@
-* fix as-needed issues
-* fix parallel build
-
-http://bugs.gentoo.org/show_bug.cgi?id=334861
-
---- config.mk
-+++ config.mk
-@@ -22,11 +22,11 @@
- LIBS = ${LIB_LIBS}
-
- # flags
--CFLAGS += -fPIC -std=c99 -DUOFF_T_LONG ${INCS}
--LDFLAGS += -shared ${LIBS}
-+CFLAGS += -fPIC -std=c99 -DUOFF_T_LONG
-+LDFLAGS += -shared
-
- # debug
--CFLAGS += -W -ggdb -Wall -Wno-unused-parameter
-+#CFLAGS += -W -ggdb -Wall -Wno-unused-parameter
-
- # compiler and linker
- CC = cc
---- src/rules.mk
-+++ src/rules.mk
-@@ -4,25 +4,27 @@
-
- OBJS = ${SRCS:.c=.o}
-
--all: ${LIB}
-+LIBSO=lib${LIB}.so
-+
-+all: ${LIBSO}
-
- .c.o:
-- ${CC} ${CFLAGS} -o $@ -c $<
-+ ${CC} ${CFLAGS} ${INCS} -o $@ -c $<
-
--${LIB}: ${OBJS}
-- ${CC} ${LDFLAGS} -o lib$@.so ${OBJS}
-+${LIBSO}: ${OBJS}
-+ ${CC} ${LDFLAGS} -o $@ ${OBJS} ${LIBS}
-
- clean:
-- rm -f lib${LIB}.so ${OBJS}
-+ rm -f ${LIBSO} ${OBJS}
-
- install: all
-- @echo installing the module lib${LIB}.so to ${DESTDIR}${IRSSI_LIB}/modules
-+ @echo installing the module ${LIBSO} to ${DESTDIR}${IRSSI_LIB}/modules
- install -d ${DESTDIR}${IRSSI_LIB}/modules
-- install lib${LIB}.so ${DESTDIR}${IRSSI_LIB}/modules
-+ install ${LIBSO} ${DESTDIR}${IRSSI_LIB}/modules
-
- uninstall:
-- @echo deinstalling the module lib${LIB}.so from ${DESTDIR}${IRSSI_LIB}/modules
-- rm -f ${DESTDIR}${IRSSI_LIB}/modules/lib${LIB}.so
-+ @echo deinstalling the module ${LIBSO} from ${DESTDIR}${IRSSI_LIB}/modules
-+ rm -f ${DESTDIR}${IRSSI_LIB}/modules/${LIBSO}
-
- user-install:
- env DESTDIR= IRSSI_LIB=~/.irssi ${MAKE} install
diff --git a/net-irc/irssi-xmpp/files/irssi-xmpp-0.51-implicit_conversion.patch b/net-irc/irssi-xmpp/files/irssi-xmpp-0.51-implicit_conversion.patch
deleted file mode 100644
index 603bdd2be199..000000000000
--- a/net-irc/irssi-xmpp/files/irssi-xmpp-0.51-implicit_conversion.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-Function `strdup' implicitly converted to pointer at xmpp-servers.c:295
-
---- src/core/xmpp-servers.c
-+++ src/core/xmpp-servers.c
-@@ -18,5 +18,6 @@
- */
-
-+#define _GNU_SOURCE
- #include <sys/types.h>
- #include <sys/socket.h>
- #include <string.h>
diff --git a/net-irc/irssi-xmpp/irssi-xmpp-0.51.ebuild b/net-irc/irssi-xmpp/irssi-xmpp-0.51.ebuild
deleted file mode 100644
index 05fb18a4e9ce..000000000000
--- a/net-irc/irssi-xmpp/irssi-xmpp-0.51.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/irssi-xmpp/irssi-xmpp-0.51.ebuild,v 1.2 2011/12/04 16:19:51 xarthisius Exp $
-
-EAPI="2"
-
-inherit eutils toolchain-funcs multilib
-
-DESCRIPTION="An irssi plugin providing Jabber/XMPP support"
-HOMEPAGE="http://cybione.org/~irssi-xmpp/"
-SRC_URI="http://cybione.org/~${PN}/files/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="net-irc/irssi
- net-libs/loudmouth"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-build_system.patch \
- "${FILESDIR}"/${P}-implicit_conversion.patch
- sed -e "s/{MAKE} doc-install/{MAKE}/" \
- -i Makefile || die #322355
-}
-
-src_compile() {
- emake PREFIX="/usr" CC="$(tc-getCC)" || die
-}
-
-src_install() {
- emake DESTDIR="${D}" PREFIX="/usr" IRSSI_LIB="/usr/$(get_libdir)/irssi" install || die
- dodoc README NEWS TODO docs/* || die #322355
-}