summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2012-01-27 14:53:15 +0000
committerJeremy Olexa <darkside@gentoo.org>2012-01-27 14:53:15 +0000
commitb523102cc1600d92b282bf26804595e9dab02906 (patch)
tree96b99e133d2b85ecddba0bdc5219f7bc6c72bdcf /media-radio/svxlink/files
parentmasked for 9 months, removing. bug 227815 (diff)
downloadhistorical-b523102cc1600d92b282bf26804595e9dab02906.tar.gz
historical-b523102cc1600d92b282bf26804595e9dab02906.tar.bz2
historical-b523102cc1600d92b282bf26804595e9dab02906.zip
masked for 7 months, removing
Diffstat (limited to 'media-radio/svxlink/files')
-rw-r--r--media-radio/svxlink/files/svxlink-080730--as-needed.patch13
-rw-r--r--media-radio/svxlink/files/svxlink-090426-gcc44.patch110
-rw-r--r--media-radio/svxlink/files/svxlink-090426-noqt.patch52
3 files changed, 0 insertions, 175 deletions
diff --git a/media-radio/svxlink/files/svxlink-080730--as-needed.patch b/media-radio/svxlink/files/svxlink-080730--as-needed.patch
deleted file mode 100644
index c6ca9d9c4fc5..000000000000
--- a/media-radio/svxlink/files/svxlink-080730--as-needed.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-=== modified file 'async/demo/Makefile.default'
---- async/demo/Makefile.default 2008-11-30 12:25:03 +0000
-+++ async/demo/Makefile.default 2008-11-30 12:34:18 +0000
-@@ -62,7 +62,7 @@
- PRGSRC =
-
- # Libraries compiled in the project (in $(LIB)).
--PROJLIBS = -lasynccpp -lasyncaudio
-+PROJLIBS = -lasynccpp -lasyncaudio -lasynccore
- ifdef QT_BIN
- PROJLIBS += -lasyncqt
- endif
-
diff --git a/media-radio/svxlink/files/svxlink-090426-gcc44.patch b/media-radio/svxlink/files/svxlink-090426-gcc44.patch
deleted file mode 100644
index 9fbae631b2fc..000000000000
--- a/media-radio/svxlink/files/svxlink-090426-gcc44.patch
+++ /dev/null
@@ -1,110 +0,0 @@
-diff -urN svxlink-090426.orig/async/audio/AsyncAudioDecoderS16.cpp svxlink-090426/async/audio/AsyncAudioDecoderS16.cpp
---- svxlink-090426.orig/async/audio/AsyncAudioDecoderS16.cpp 2009-07-18 12:07:53.000000000 +0000
-+++ svxlink-090426/async/audio/AsyncAudioDecoderS16.cpp 2009-07-18 12:07:31.000000000 +0000
-@@ -48,6 +48,7 @@
- *
- ****************************************************************************/
-
-+#include <stdint.h>
- #include "AsyncAudioDecoderS16.h"
-
-
-diff -urN svxlink-090426.orig/async/audio/AsyncAudioDevice.h svxlink-090426/async/audio/AsyncAudioDevice.h
---- svxlink-090426.orig/async/audio/AsyncAudioDevice.h 2009-07-18 12:07:53.000000000 +0000
-+++ svxlink-090426/async/audio/AsyncAudioDevice.h 2009-07-18 12:07:31.000000000 +0000
-@@ -37,6 +37,7 @@
- *
- ****************************************************************************/
-
-+#include <stdint.h>
- #include <sigc++/sigc++.h>
-
- #include <string>
-diff -urN svxlink-090426.orig/async/audio/AsyncAudioRecorder.h svxlink-090426/async/audio/AsyncAudioRecorder.h
---- svxlink-090426.orig/async/audio/AsyncAudioRecorder.h 2009-07-18 12:07:53.000000000 +0000
-+++ svxlink-090426/async/audio/AsyncAudioRecorder.h 2009-07-18 12:07:31.000000000 +0000
-@@ -34,6 +34,7 @@
- *
- ****************************************************************************/
-
-+#include <stdint.h>
- #include <stdio.h>
- #include <sigc++/sigc++.h>
-
-diff -urN svxlink-090426.orig/async/core/AsyncSerialDevice.cpp svxlink-090426/async/core/AsyncSerialDevice.cpp
---- svxlink-090426.orig/async/core/AsyncSerialDevice.cpp 2009-07-18 12:07:53.000000000 +0000
-+++ svxlink-090426/async/core/AsyncSerialDevice.cpp 2009-07-18 12:07:31.000000000 +0000
-@@ -35,6 +35,7 @@
- *
- ****************************************************************************/
-
-+#include <cstdio>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <fcntl.h>
-diff -urN svxlink-090426.orig/async/cpp/AsyncCppDnsLookupWorker.cpp svxlink-090426/async/cpp/AsyncCppDnsLookupWorker.cpp
---- svxlink-090426.orig/async/cpp/AsyncCppDnsLookupWorker.cpp 2009-07-18 12:07:53.000000000 +0000
-+++ svxlink-090426/async/cpp/AsyncCppDnsLookupWorker.cpp 2009-07-18 12:07:31.000000000 +0000
-@@ -38,6 +38,7 @@
- *
- ****************************************************************************/
-
-+#include <cstdio>
- #include <sys/socket.h>
- #include <netinet/in.h>
- #include <arpa/inet.h>
-diff -urN svxlink-090426.orig/async/demo/AsyncSerial_demo.cpp svxlink-090426/async/demo/AsyncSerial_demo.cpp
---- svxlink-090426.orig/async/demo/AsyncSerial_demo.cpp 2009-07-18 12:07:53.000000000 +0000
-+++ svxlink-090426/async/demo/AsyncSerial_demo.cpp 2009-07-18 12:07:31.000000000 +0000
-@@ -1,3 +1,4 @@
-+#include <cstdio>
- #include <iostream>
- #include <cstdlib>
-
-diff -urN svxlink-090426.orig/echolib/EchoLinkStationData.cpp svxlink-090426/echolib/EchoLinkStationData.cpp
---- svxlink-090426.orig/echolib/EchoLinkStationData.cpp 2009-07-18 12:07:53.000000000 +0000
-+++ svxlink-090426/echolib/EchoLinkStationData.cpp 2009-07-18 12:07:31.000000000 +0000
-@@ -201,7 +201,7 @@
- m_status = STAT_UNKNOWN;
- }
-
-- char *space = strchr(end_desc, ' ');
-+ const char *space = strchr(end_desc, ' ');
- if (space != 0)
- {
- strncpy(str, space+1, 5);
-diff -urN svxlink-090426.orig/svxlink/remotetrx/remotetrx.cpp svxlink-090426/svxlink/remotetrx/remotetrx.cpp
---- svxlink-090426.orig/svxlink/remotetrx/remotetrx.cpp 2009-07-18 12:07:53.000000000 +0000
-+++ svxlink-090426/svxlink/remotetrx/remotetrx.cpp 2009-07-18 12:07:31.000000000 +0000
-@@ -678,7 +678,7 @@
- }
-
- int write_len = 0;
-- char *nl = strchr(ptr, '\n');
-+ const char *nl = strchr(ptr, '\n');
- if (nl != 0)
- {
- write_len = nl-ptr+1;
-diff -urN svxlink-090426.orig/svxlink/svxlink/MsgHandler.cpp svxlink-090426/svxlink/svxlink/MsgHandler.cpp
---- svxlink-090426.orig/svxlink/svxlink/MsgHandler.cpp 2009-07-18 12:07:53.000000000 +0000
-+++ svxlink-090426/svxlink/svxlink/MsgHandler.cpp 2009-07-18 12:07:31.000000000 +0000
-@@ -34,6 +34,7 @@
- *
- ****************************************************************************/
-
-+#include <stdint.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <fcntl.h>
-diff -urN svxlink-090426.orig/svxlink/svxlink/svxlink.cpp svxlink-090426/svxlink/svxlink/svxlink.cpp
---- svxlink-090426.orig/svxlink/svxlink/svxlink.cpp 2009-07-18 12:07:53.000000000 +0000
-+++ svxlink-090426/svxlink/svxlink/svxlink.cpp 2009-07-18 12:07:31.000000000 +0000
-@@ -661,7 +661,7 @@
- }
-
- int write_len = 0;
-- char *nl = strchr(ptr, '\n');
-+ const char *nl = strchr(ptr, '\n');
- if (nl != 0)
- {
- write_len = nl-ptr+1;
diff --git a/media-radio/svxlink/files/svxlink-090426-noqt.patch b/media-radio/svxlink/files/svxlink-090426-noqt.patch
deleted file mode 100644
index 01ee4e1eb0e2..000000000000
--- a/media-radio/svxlink/files/svxlink-090426-noqt.patch
+++ /dev/null
@@ -1,52 +0,0 @@
-Remove automagic Qt3 detection
-
-https://bugs.gentoo.org/301744
-
---- create_config.sh
-+++ create_config.sh
-@@ -60,45 +60,6 @@
- output "ECHO=/bin/echo -e"
- fi
-
--# Checking for QT
--info "--- Checking for QT..."
--if which pkg-config > /dev/null 2>&1; then
-- if pkg-config qt; then
-- info "yes (pkg-config qt)\n"
-- output "QT_LIBPATH=$(pkg-config qt --libs-only-L)"
-- output "QT_LIBS=$(pkg-config qt --libs-only-l)"
-- output "QT_INCPATH=$(pkg-config qt --cflags-only-I)"
-- output "QT_CFLAGS=$(pkg-config qt --cflags-only-other)"
-- QT_PREFIX=$(pkg-config qt --variable=prefix)
-- elif pkg-config qt-mt; then
-- info "yes (pkg-config qt-mt)\n"
-- output "QT_LIBPATH=$(pkg-config qt-mt --libs-only-L)"
-- output "QT_LIBS=$(pkg-config qt-mt --libs-only-l)"
-- output "QT_INCPATH=$(pkg-config qt-mt --cflags-only-I)"
-- output "QT_CFLAGS=$(pkg-config qt-mt --cflags-only-other)"
-- QT_PREFIX=$(pkg-config qt-mt --variable=prefix)
-- fi
--fi
--if [ -z "$QT_PREFIX" -a -n "$QTDIR" ]; then
-- info "yes (QTDIR)\n"
-- output "QT_LIBPATH=-L${QTDIR}/lib"
-- if [ -n "$(ls ${QTDIR}/lib/libqt-mt* 2> /dev/null)" ]; then
-- output "QT_LIBS=-lqt-mt"
-- else
-- output "QT_LIBS=-lqt"
-- fi
-- output "QT_INCPATH=-I${QTDIR}/include"
-- output "QT_CFLAGS="
-- QT_PREFIX=${QTDIR}
--fi
--if [ -n "$QT_PREFIX" ]; then
-- QT_BIN="${QT_PREFIX}/bin"
-- output "QT_BIN=${QT_BIN}"
-- output "QT_MOC=${QT_BIN}/moc"
-- output "QT_UIC=${QT_BIN}/uic"
--else
-- info "no (optional)\n"
--fi
-
- # Checking for libsigc++
- sigc_version=1.2