mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
- Update amule-devel to r10802
- Remove obsolete patches from r1079[3-5] - Remove DOCS and NLS from OPTIONS_DEFAULT, which I introduced in the previous submission - Change my email address to bar@FreeBSD.org Approved by: rene (mentor) Feature safe: yes
This commit is contained in:
parent
7eabc60a2d
commit
0535e3c835
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=307870
@ -2,13 +2,13 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= amule
|
||||
PORTVERSION= 10792
|
||||
PORTVERSION= 10802
|
||||
CATEGORIES= net-p2p
|
||||
MASTER_SITES= http://amule.sourceforge.net/tarballs/
|
||||
PKGNAMESUFFIX= -devel
|
||||
DISTNAME= aMule-SVN-r${PORTVERSION}
|
||||
|
||||
MAINTAINER= barbara.xxx1975@libero.it
|
||||
MAINTAINER= bar@FreeBSD.org
|
||||
COMMENT= The all-platform eMule p2p client
|
||||
|
||||
LICENSE= GPLv2 GPLv3
|
||||
@ -58,8 +58,8 @@ WEBSERVER_DESC= Compile aMule WebServer
|
||||
WXCAS_DESC= Compile aMule Statistics for GUI
|
||||
WXUNICODE_DESC= Enable Unicode support
|
||||
XAS_DESC= Install XChat2 plugin
|
||||
OPTIONS_DEFAULT=ALC ALCC AMULECMD AMULEDAEMON AMULEGUI CAS DOCS ED2K \
|
||||
FILEVIEW MONOLITHIC NLS WEBSERVER WXCAS WXUNICODE XAS
|
||||
OPTIONS_DEFAULT=ALC ALCC AMULECMD AMULEDAEMON AMULEGUI CAS ED2K \
|
||||
FILEVIEW MONOLITHIC WEBSERVER WXCAS WXUNICODE XAS
|
||||
|
||||
PORTDOCS= ABOUT-NLS Changelog EC_Protocol.txt INSTALL README TODO \
|
||||
amulesig.txt license.txt
|
||||
|
@ -17,7 +17,7 @@ MAN1+= amulecmd.1
|
||||
MAN1+= amuled.1
|
||||
. endif
|
||||
. if ${PORT_OPTIONS:MAMULEGUI}
|
||||
MAN1+= amulegui.1
|
||||
MAN1+= amulegui.1
|
||||
. endif
|
||||
. if ${PORT_OPTIONS:MCAS}
|
||||
MAN1+= cas.1
|
||||
@ -34,5 +34,5 @@ MAN1+= wxcas.1
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MXAS}
|
||||
MAN1+= xas.1
|
||||
MAN1+= xas.1
|
||||
.endif
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (aMule-SVN-r10792.tar.bz2) = e9b2cd2a8c66de1df9c37c0b1ca05d961d46ec2097e19ae56a0b25b5050fece4
|
||||
SIZE (aMule-SVN-r10792.tar.bz2) = 4603469
|
||||
SHA256 (aMule-SVN-r10802.tar.bz2) = c097a61d09ad5a2e9a2a3e82d08ff0aedc1b937fa62902658601319ba50f535e
|
||||
SIZE (aMule-SVN-r10802.tar.bz2) = 4614274
|
||||
|
@ -1,23 +0,0 @@
|
||||
--- src/ListenSocket.cpp.orig 2012-05-11 20:38:58.000000000 +0200
|
||||
+++ src/ListenSocket.cpp 2012-10-13 12:37:21.000000000 +0200
|
||||
@@ -88,7 +88,9 @@
|
||||
|
||||
void CListenSocket::OnAccept()
|
||||
{
|
||||
- m_pending = true;
|
||||
+ // Backported from r10795
|
||||
+ //m_pending = true;
|
||||
+ m_pending = theApp->IsRunning(); // just do nothing if we are shutting down
|
||||
// If the client is still at maxconnections,
|
||||
// this will allow it to go above it ...
|
||||
// But if you don't, you will get a lowID on all servers.
|
||||
@@ -103,7 +105,8 @@
|
||||
newclient->Safe_Delete();
|
||||
m_pending = false;
|
||||
} else {
|
||||
- wxASSERT(theApp->IsRunning());
|
||||
+ // Backported from r10795
|
||||
+ //wxASSERT(theApp->IsRunning());
|
||||
if (!newclient->InitNetworkData()) {
|
||||
// IP or port were not returned correctly
|
||||
// from the accepted address, or filtered.
|
@ -1,11 +0,0 @@
|
||||
--- src/PlatformSpecific.h.orig 2011-11-20 19:08:59.000000000 +0100
|
||||
+++ src/PlatformSpecific.h 2012-10-13 12:34:46.000000000 +0200
|
||||
@@ -100,6 +100,8 @@
|
||||
{
|
||||
switch (GetFilesystemType(path)) {
|
||||
case fsFAT:
|
||||
+ // Backported from r10794
|
||||
+ case fsNTFS:
|
||||
case fsHFS:
|
||||
return false;
|
||||
default:
|
@ -1,12 +0,0 @@
|
||||
--- src/SHAHashSet.cpp.orig 2012-05-11 20:38:43.000000000 +0200
|
||||
+++ src/SHAHashSet.cpp 2012-10-13 12:29:25.000000000 +0200
|
||||
@@ -702,7 +702,8 @@
|
||||
return false;
|
||||
}
|
||||
|
||||
- FreeHashSet();
|
||||
+ //Backported from r10793
|
||||
+ //FreeHashSet();
|
||||
return true;
|
||||
}
|
||||
|
@ -1,12 +0,0 @@
|
||||
--- src/ThreadTasks.cpp.orig 2011-11-20 19:08:59.000000000 +0100
|
||||
+++ src/ThreadTasks.cpp 2012-10-13 12:33:01.000000000 +0200
|
||||
@@ -193,6 +193,9 @@
|
||||
% m_filename );
|
||||
}
|
||||
}
|
||||
+ // Backported from r10793
|
||||
+ // delete hashset now to free memory
|
||||
+ AICHHashSet->FreeHashSet();
|
||||
}
|
||||
|
||||
if ((m_toHash == EH_AICH) && !TestDestroy()) {
|
Loading…
Reference in New Issue
Block a user