diff options
author | Slávek Banko <[email protected]> | 2018-08-06 01:30:47 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2018-08-06 01:31:02 +0200 |
commit | 9010047840d810d9ccba3d00b7943a842e125291 (patch) | |
tree | 7698717495c9bc52be2bc8ab526071f3063b466d /freebsd/tdenetwork | |
parent | b4f5663d87c16e08aaef66346f4b22eba2de80bd (diff) | |
download | tde-packaging-9010047840d810d9ccba3d00b7943a842e125291.tar.gz tde-packaging-9010047840d810d9ccba3d00b7943a842e125291.zip |
FreeBSD: Update for final release R14.0.5r14.0.5
Additional patches due to stricter C++11 in Clang
A new mkspec for Clang is used to build TQt
Akode is now part of the TDE repository
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'freebsd/tdenetwork')
-rw-r--r-- | freebsd/tdenetwork/Makefile | 2 | ||||
-rw-r--r-- | freebsd/tdenetwork/distinfo | 6 | ||||
-rw-r--r-- | freebsd/tdenetwork/files/patch-bp000-fix-ftbfs-on-c++11.diff | 65 |
3 files changed, 69 insertions, 4 deletions
diff --git a/freebsd/tdenetwork/Makefile b/freebsd/tdenetwork/Makefile index 1465316c5..9af91a3e7 100644 --- a/freebsd/tdenetwork/Makefile +++ b/freebsd/tdenetwork/Makefile @@ -7,7 +7,7 @@ PORTNAME= tdenetwork-trinity COMMENT= Trinity network-related apps -TDE_PREVERSION= ~pre19+70e337ea +TDE_PREVERSION= MASTER_SITE_SUBDIR= t/${PORTNAME} PORTREVISION= 0 CATEGORIES= x11 net diff --git a/freebsd/tdenetwork/distinfo b/freebsd/tdenetwork/distinfo index 8685e16e8..42b6714d0 100644 --- a/freebsd/tdenetwork/distinfo +++ b/freebsd/tdenetwork/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1514648824 -SHA256 (TDE/tdenetwork-trinity_14.0.5~pre19.orig.tar.xz) = d29aecc8db02e60da47a668c87ceb2c723502916ee1b846349d9b9220c782ec2 -SIZE (TDE/tdenetwork-trinity_14.0.5~pre19.orig.tar.xz) = 6571268 +TIMESTAMP = 1533237017 +SHA256 (TDE/tdenetwork-trinity_14.0.5.orig.tar.xz) = c0de8398e61cbd37463ec7ff6ef8911e27cd4ffde30b60174631c8c6b41f347a +SIZE (TDE/tdenetwork-trinity_14.0.5.orig.tar.xz) = 6560012 diff --git a/freebsd/tdenetwork/files/patch-bp000-fix-ftbfs-on-c++11.diff b/freebsd/tdenetwork/files/patch-bp000-fix-ftbfs-on-c++11.diff new file mode 100644 index 000000000..a190bae9a --- /dev/null +++ b/freebsd/tdenetwork/files/patch-bp000-fix-ftbfs-on-c++11.diff @@ -0,0 +1,65 @@ +diff --git a/kopete/protocols/oscar/liboscar/chatnavservicetask.cpp b/kopete/protocols/oscar/liboscar/chatnavservicetask.cpp +index 4a34ae2f..ecec66d4 100644 +--- a/kopete/protocols/oscar/liboscar/chatnavservicetask.cpp ++++ b/kopete/protocols/oscar/liboscar/chatnavservicetask.cpp +@@ -106,7 +106,7 @@ bool ChatNavServiceTask::take( Transfer* transfer ) + void ChatNavServiceTask::onGo() + { + FLAP f = { 0x02, 0, 0x00 }; +- SNAC s = { 0x000D, m_type, 0x0000, client()->snacSequence() }; ++ SNAC s = { 0x000D, (unsigned short)m_type, 0x0000, client()->snacSequence() }; + Buffer* b = new Buffer(); + + Transfer* t = createTransfer( f, s, b ); +diff --git a/kopete/protocols/oscar/liboscar/sendmessagetask.cpp b/kopete/protocols/oscar/liboscar/sendmessagetask.cpp +index af180be1..0f9c8f5f 100644 +--- a/kopete/protocols/oscar/liboscar/sendmessagetask.cpp ++++ b/kopete/protocols/oscar/liboscar/sendmessagetask.cpp +@@ -60,7 +60,7 @@ void SendMessageTask::onGo() + snacSubfamily = 0x000B; + } + FLAP f = { 0x02, 0, 0 }; +- SNAC s = { 0x0004, snacSubfamily, 0x0000, client()->snacSequence() }; ++ SNAC s = { 0x0004, (unsigned short)snacSubfamily, 0x0000, client()->snacSequence() }; + Buffer* b = new Buffer(); + + if ( snacSubfamily == 0x0006 ) +diff --git a/lanbrowsing/lisa/main.cpp b/lanbrowsing/lisa/main.cpp +index fd96d04e..1ef55453 100644 +--- a/lanbrowsing/lisa/main.cpp ++++ b/lanbrowsing/lisa/main.cpp +@@ -53,7 +53,7 @@ + void printVersion() + { + const char * versionInfo=\ +- "\r\nThis is the LAN Information Server LISa "MYVERSION"\r\n"\ ++ "\r\nThis is the LAN Information Server LISa " MYVERSION "\r\n"\ + "It is free software according the GNU General Public License\r\n"\ + "Copyright (c) 2000-2003 by Alexander Neundorf\r\n"\ + "email: [email protected]\r\n"; +diff --git a/lanbrowsing/lisa/netmanager.cpp b/lanbrowsing/lisa/netmanager.cpp +index 5a21fe5c..cf6a2f76 100644 +--- a/lanbrowsing/lisa/netmanager.cpp ++++ b/lanbrowsing/lisa/netmanager.cpp +@@ -1033,7 +1033,7 @@ void NetManager::getListFromServerServer( int address) + + void NetManager::printState() + { +- std::cerr<<"LAN Information Server Lisa "MYVERSION"\nAlexander Neundorf <[email protected]>\n"; ++ std::cerr<<"LAN Information Server Lisa " MYVERSION "\nAlexander Neundorf <[email protected]>\n"; + std::cerr<<"Reading options from config file: "<<m_usedConfigFileName<<std::endl; + std::cerr<<"StrictMode: "<<m_strictMode<<std::endl; + std::cerr<<"ServerServer: "<<m_serverServer<<std::endl; +diff --git a/lanbrowsing/lisa/strictmain.cpp b/lanbrowsing/lisa/strictmain.cpp +index 07f5b9bc..09f3eda0 100644 +--- a/lanbrowsing/lisa/strictmain.cpp ++++ b/lanbrowsing/lisa/strictmain.cpp +@@ -52,7 +52,7 @@ + void printVersion() + { + const char * versionInfo=\ +- "\r\nThis is the restricted LAN Information Server resLISa "MYVERSION"\r\n"\ ++ "\r\nThis is the restricted LAN Information Server resLISa " MYVERSION "\r\n"\ + "It is free software according the GNU General Public License\r\n"\ + "Copyright (c) 2000-2003 by Alexander Neundorf\r\n"\ + "email: [email protected]\r\n"; |