diff options
author | Samuli Suominen <drac@gentoo.org> | 2007-08-26 09:19:23 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2007-08-26 09:19:23 +0000 |
commit | 874d321beb59700c23579d1a059960365efa1cba (patch) | |
tree | 5dc35eca321a4bac8b76b28f3ca3f6f154e0fd5f /media-sound/yconsole | |
parent | Punt unused version. (diff) | |
download | gentoo-2-874d321beb59700c23579d1a059960365efa1cba.tar.gz gentoo-2-874d321beb59700c23579d1a059960365efa1cba.tar.bz2 gentoo-2-874d321beb59700c23579d1a059960365efa1cba.zip |
Punt unused versions.
(Portage version: 2.1.3.6)
Diffstat (limited to 'media-sound/yconsole')
-rw-r--r-- | media-sound/yconsole/files/3.0.1-makefile-cflags.patch | 12 | ||||
-rw-r--r-- | media-sound/yconsole/files/3.0.5-makefile-cflags.patch | 12 | ||||
-rw-r--r-- | media-sound/yconsole/files/digest-yconsole-3.0.5 | 3 | ||||
-rw-r--r-- | media-sound/yconsole/files/digest-yconsole-3.0.8 | 3 | ||||
-rw-r--r-- | media-sound/yconsole/files/yconsole-3.0.8-gcc33.patch | 31 | ||||
-rw-r--r-- | media-sound/yconsole/yconsole-3.0.5.ebuild | 35 | ||||
-rw-r--r-- | media-sound/yconsole/yconsole-3.0.8.ebuild | 36 |
7 files changed, 0 insertions, 132 deletions
diff --git a/media-sound/yconsole/files/3.0.1-makefile-cflags.patch b/media-sound/yconsole/files/3.0.1-makefile-cflags.patch deleted file mode 100644 index 8271435dbd0f..000000000000 --- a/media-sound/yconsole/files/3.0.1-makefile-cflags.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- yconsole/Makefile.orig 2003-08-17 14:54:36.590310296 -0400 -+++ yconsole/Makefile 2003-08-17 14:54:59.716794536 -0400 -@@ -2,7 +2,8 @@ - # - PREFIX = /usr - --CFLAGS = -Wall -O2 -g \ -+CFLAGS = -Wall $(OPTFLAGS) -+CFLAGS += \ - `imlib-config --cflags` -DHAVE_IMLIB \ - `gtk-config --cflags` - diff --git a/media-sound/yconsole/files/3.0.5-makefile-cflags.patch b/media-sound/yconsole/files/3.0.5-makefile-cflags.patch deleted file mode 100644 index 8271435dbd0f..000000000000 --- a/media-sound/yconsole/files/3.0.5-makefile-cflags.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- yconsole/Makefile.orig 2003-08-17 14:54:36.590310296 -0400 -+++ yconsole/Makefile 2003-08-17 14:54:59.716794536 -0400 -@@ -2,7 +2,8 @@ - # - PREFIX = /usr - --CFLAGS = -Wall -O2 -g \ -+CFLAGS = -Wall $(OPTFLAGS) -+CFLAGS += \ - `imlib-config --cflags` -DHAVE_IMLIB \ - `gtk-config --cflags` - diff --git a/media-sound/yconsole/files/digest-yconsole-3.0.5 b/media-sound/yconsole/files/digest-yconsole-3.0.5 deleted file mode 100644 index 2cc50087034a..000000000000 --- a/media-sound/yconsole/files/digest-yconsole-3.0.5 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 d7af9c42c59d5c841468cddf0bc32d19 yconsole-3.0.5.tar.bz2 498018 -RMD160 648202bd25d6099f30a95328a6cdc28a62e867eb yconsole-3.0.5.tar.bz2 498018 -SHA256 a2a409cf8167721dd000255b7396e2e71a366dc0150c94d88148120249e97849 yconsole-3.0.5.tar.bz2 498018 diff --git a/media-sound/yconsole/files/digest-yconsole-3.0.8 b/media-sound/yconsole/files/digest-yconsole-3.0.8 deleted file mode 100644 index 98ce9709f5fd..000000000000 --- a/media-sound/yconsole/files/digest-yconsole-3.0.8 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 ed5164fb82da2946451b336ea5f7c408 yconsole-3.0.8.tar.bz2 498099 -RMD160 12627705a27e098bf9ea74d646a3412fdb5c7f28 yconsole-3.0.8.tar.bz2 498099 -SHA256 4c7866fbd149984b2c7005e23c5f859ff8efc5559cf09dcc9ef56dd41b677763 yconsole-3.0.8.tar.bz2 498099 diff --git a/media-sound/yconsole/files/yconsole-3.0.8-gcc33.patch b/media-sound/yconsole/files/yconsole-3.0.8-gcc33.patch deleted file mode 100644 index 16b296b86d66..000000000000 --- a/media-sound/yconsole/files/yconsole-3.0.8-gcc33.patch +++ /dev/null @@ -1,31 +0,0 @@ -Work around a gcc-3.3.x bug where redefining prototypes with different -__THROW / attribute(nonnull) markings throws an error: - -string.cpp:31: error: declaration of `char* strcasestr(const char*, const char*)' throws different exceptions -../include/string.h:46: error: than previous declaration `char* strcasestr(const char*, const char*) throw ()' - -basically we just use the glibc strcasestr() instead of the internal one. - -http://bugs.gentoo.org/show_bug.cgi?id=85780 - ---- yconsole/string.cpp -+++ yconsole/string.cpp -@@ -30,3 +30,5 @@ - #endif -+#ifndef _GNU_SOURCE - char *strcasestr(const char *haystack, const char *needle); -+#endif - int strpfx(const char *s, const char *pfx); -@@ -219,3 +221,4 @@ - */ -+#ifndef _GNU_SOURCE - char *strcasestr(const char *haystack, const char *needle) - { -@@ -274,6 +277,7 @@ - - return(NULL); - } -+#endif - - /* - * Checks if string pfx is a prefix of string s. diff --git a/media-sound/yconsole/yconsole-3.0.5.ebuild b/media-sound/yconsole/yconsole-3.0.5.ebuild deleted file mode 100644 index 12507e9ff578..000000000000 --- a/media-sound/yconsole/yconsole-3.0.5.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/yconsole/yconsole-3.0.5.ebuild,v 1.8 2004/07/14 04:22:31 vapier Exp $ - -inherit eutils - -DESCRIPTION="monitor and control the Y server" -HOMEPAGE="http://wolfpack.twu.net/YIFF/" -SRC_URI="ftp://wolfpack.twu.net/users/wolfpack/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 ppc sparc amd64" -IUSE="" - -DEPEND="=x11-libs/gtk+-1* - media-libs/imlib - media-libs/yiff" - -src_unpack() { - unpack ${A} - cd ${S} - epatch ${FILESDIR}/${PV}-makefile-cflags.patch -} - -src_compile() { - cd yconsole - make OPTFLAGS="${CFLAGS}" || die -} - -src_install() { - cd yconsole - make install PREFIX=${D}/usr || die - dodoc AUTHORS README -} diff --git a/media-sound/yconsole/yconsole-3.0.8.ebuild b/media-sound/yconsole/yconsole-3.0.8.ebuild deleted file mode 100644 index f2bea711b903..000000000000 --- a/media-sound/yconsole/yconsole-3.0.8.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/yconsole/yconsole-3.0.8.ebuild,v 1.2 2007/03/16 19:01:29 gustavoz Exp $ - -inherit eutils - -DESCRIPTION="monitor and control the Y server" -HOMEPAGE="http://wolfpack.twu.net/YIFF/" -SRC_URI="ftp://wolfpack.twu.net/users/wolfpack/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc sparc ~x86" -IUSE="" - -DEPEND="=x11-libs/gtk+-1* - media-libs/imlib - media-libs/yiff" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/3.0.5-makefile-cflags.patch - epatch "${FILESDIR}"/${P}-gcc33.patch -} - -src_compile() { - cd yconsole - make OPTFLAGS="${CFLAGS}" || die -} - -src_install() { - cd yconsole - make install PREFIX="${D}"/usr || die - dodoc AUTHORS README -} |