summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Sapp <nixphoeni@gentoo.org>2011-02-16 21:02:23 +0000
committerJoe Sapp <nixphoeni@gentoo.org>2011-02-16 21:02:23 +0000
commit3019eb6c13f60aeca993b70eccedf0f778a06cc9 (patch)
tree88c4fe5fecee54622c1e94ddde47eef1f6a03199 /media-sound/xwax
parentFix building with >=net-wireless/wireless-tools-30_pre9 (bug #352635). (diff)
downloadgentoo-2-3019eb6c13f60aeca993b70eccedf0f778a06cc9.tar.gz
gentoo-2-3019eb6c13f60aeca993b70eccedf0f778a06cc9.tar.bz2
gentoo-2-3019eb6c13f60aeca993b70eccedf0f778a06cc9.zip
Removed old patches
(Portage version: 2.1.9.39/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/xwax')
-rw-r--r--media-sound/xwax/ChangeLog6
-rw-r--r--media-sound/xwax/files/xwax-0.4-fonts.patch10
-rw-r--r--media-sound/xwax/files/xwax-0.6-execlp.patch34
3 files changed, 5 insertions, 45 deletions
diff --git a/media-sound/xwax/ChangeLog b/media-sound/xwax/ChangeLog
index 80dd3f002fa7..4d49d02ad23c 100644
--- a/media-sound/xwax/ChangeLog
+++ b/media-sound/xwax/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-sound/xwax
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/ChangeLog,v 1.26 2011/02/11 19:10:35 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/ChangeLog,v 1.27 2011/02/16 21:02:23 nixphoeni Exp $
+
+ 16 Feb 2011; Joe Sapp <nixphoeni@gentoo.org> -files/xwax-0.4-fonts.patch,
+ -files/xwax-0.6-execlp.patch:
+ Removed old patches
11 Feb 2011; Markos Chandras <hwoarang@gentoo.org> xwax-0.8.ebuild:
Stable on amd64 wrt bug #353961
diff --git a/media-sound/xwax/files/xwax-0.4-fonts.patch b/media-sound/xwax/files/xwax-0.4-fonts.patch
deleted file mode 100644
index c33760be169c..000000000000
--- a/media-sound/xwax/files/xwax-0.4-fonts.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- interface.c.orig 2008-05-07 18:19:11.000000000 -0400
-+++ interface.c 2008-09-06 20:08:45.000000000 -0400
-@@ -127,6 +127,7 @@
- char *font_dirs[] = {
- "/usr/X11R6/lib/X11/fonts/TTF",
- "/usr/share/fonts/truetype/ttf-bitstream-vera",
-+ "/usr/share/fonts/ttf-bitstream-vera",
- "/usr/share/fonts/TTF",
- NULL
- };
diff --git a/media-sound/xwax/files/xwax-0.6-execlp.patch b/media-sound/xwax/files/xwax-0.6-execlp.patch
deleted file mode 100644
index 14712f795bd1..000000000000
--- a/media-sound/xwax/files/xwax-0.6-execlp.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-diff --git a/library.c b/library.c
-index 6b6526e..649738c 100644
---- a/library.c
-+++ b/library.c
-@@ -315,8 +315,10 @@ int library_import(struct library_t *li, const char *scan, const char *path)
- }
-
- if(execl(scan, "scan", path, NULL) == -1) {
-- perror("execl");
-- exit(-1);
-+ if(execlp(scan, "scan", path, NULL) == -1) {
-+ perror("execl and execlp");
-+ exit(-1);
-+ }
- }
-
- abort(); /* execl() does not return */
-diff --git a/track.c b/track.c
-index 6d28943..38c3e9d 100644
---- a/track.c
-+++ b/track.c
-@@ -77,8 +77,10 @@ static int start_import(struct track_t *tr, const char *path)
- }
-
- if(execl(tr->importer, "import", path, NULL) == -1) {
-- perror("execl");
-- exit(-1);
-+ if(execlp(tr->importer, "import", path, NULL) == -1) {
-+ perror("execl and execlp");
-+ exit(-1);
-+ }
- }
-
- abort(); /* execl() never returns */