o After repo copy from ports/net/lmule (this is a fork of lmule):
update to xmule version 1.4.0 o Special thanks to [1] who helped patching the application for FreeBSD Reviewed by: Lauri Watts <lauri@fruitsalad.org>, Frerich Raabe <frerich.raabe@gmx.de> [1] Repo copy approved by: portmgr (self) Repo copied by: cvs (joe)
This commit is contained in:
parent
90484f872f
commit
38c2447dd0
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=82815
10 changed files with 91 additions and 74 deletions
|
@ -1,15 +1,15 @@
|
|||
# New ports collection makefile for: lmule
|
||||
# New ports collection makefile for: xmule
|
||||
# Date created: Tue Mar 11 05:06:20 UTC 2003
|
||||
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= lmule
|
||||
PORTVERSION= 1.2.1
|
||||
PORTNAME= xmule
|
||||
PORTVERSION= 1.4.0
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= lmule
|
||||
MASTER_SITE_SUBDIR= xmule
|
||||
|
||||
MAINTAINER= lioux@FreeBSD.org
|
||||
COMMENT= Port of eMule eDonkey P2P client using wxWindows class library
|
||||
|
@ -20,6 +20,7 @@ LIB_DEPENDS= intl.4:${PORTSDIR}/devel/gettext \
|
|||
RUN_DEPENDS= wget:${PORTSDIR}/ftp/wget
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_BZIP2= yes
|
||||
USE_GNOME= gnomehier \
|
||||
gnomehack \
|
||||
gnomeprefix
|
||||
|
@ -32,13 +33,17 @@ CONFIGURE_ARGS= --without-included-gettext \
|
|||
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \
|
||||
LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib ${PTHREAD_LIBS}"
|
||||
|
||||
WX_CONFIG?= "${X11BASE}/bin/wx-config"
|
||||
WX_CONFIG?= ${X11BASE}/bin/wx-config
|
||||
|
||||
post-patch:
|
||||
# it works for FreeBSD as well
|
||||
@${REINPLACE_CMD} -E \
|
||||
-e 's|(Linux)|FreeBSD/\1|' \
|
||||
${WRKSRC}/src/*.cpp
|
||||
# remove ^M
|
||||
@${REINPLACE_CMD} -E \
|
||||
-e 's|
||' \
|
||||
${WRKSRC}/src/MD5Sum.cpp
|
||||
|
||||
pre-configure:
|
||||
@${FIND} ${WRKSRC} -type f -name "Makefile.in" | \
|
||||
|
@ -53,12 +58,12 @@ post-install:
|
|||
|
||||
.if exists(${WX_CONFIG})
|
||||
# detect if wxgtk was linked against gtk1 or gtk2
|
||||
DECISION_GTK_1_OR_2!= ${WX_CONFIG} --cppflags
|
||||
DECISION_GTK_1_OR_2!= ${WX_CONFIG} --static --libs
|
||||
.else
|
||||
DECISION_GTK_1_OR_2= ""
|
||||
.endif
|
||||
|
||||
.if (${DECISION_GTK_1_OR_2:Mgtk2} != "")
|
||||
.if ${DECISION_GTK_1_OR_2:M*glib-2.0} != ""
|
||||
USE_GNOME+= gtk20
|
||||
.else
|
||||
USE_GNOME+= gtk12
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (lmule-1.2.1.tar.gz) = ef0efe29860873fd11a838d5c1d01a84
|
||||
MD5 (xmule-1.4.0.tar.bz2) = f63d4f84479c4e0ef625c054e6cbed10
|
||||
|
|
|
@ -1,11 +1,29 @@
|
|||
--- configure.orig Sat Mar 29 14:13:57 2003
|
||||
+++ configure Sat Mar 29 14:14:04 2003
|
||||
@@ -1710,8 +1710,6 @@
|
||||
--- configure.orig Mon May 26 22:56:09 2003
|
||||
+++ configure Tue May 27 17:55:59 2003
|
||||
@@ -1712,8 +1712,6 @@
|
||||
|
||||
# Checks for programs.
|
||||
# hopefully this prevents -O2
|
||||
-CXXFLAGS="-g"
|
||||
-CFLAGS="-g"
|
||||
-CXXFLAGS="-g -rdynamic"
|
||||
-CFLAGS="-g -rdynamic"
|
||||
ac_ext=cc
|
||||
ac_cpp='$CXXCPP $CPPFLAGS'
|
||||
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
||||
@@ -7149,7 +7147,7 @@
|
||||
|
||||
echo "$as_me:$LINENO: checking if wxWindows was linked with GTK2" >&5
|
||||
echo $ECHO_N "checking if wxWindows was linked with GTK2... $ECHO_C" >&6
|
||||
- if $WX_CONFIG_NAME --cppflags | grep -q 'gtk2' ; then
|
||||
+ if $WX_CONFIG_NAME --static --libs | grep -q 'glib-2' ; then
|
||||
GTK_USEDVERSION=2
|
||||
echo "$as_me:$LINENO: result: yes" >&5
|
||||
echo "${ECHO_T}yes" >&6
|
||||
@@ -7161,7 +7159,7 @@
|
||||
|
||||
|
||||
|
||||
-if test x$GTK_USEDVERSION == x2 ; then
|
||||
+if test x$GTK_USEDVERSION = x2 ; then
|
||||
# Check whether --enable-gtktest or --disable-gtktest was given.
|
||||
if test "${enable_gtktest+set}" = set; then
|
||||
enableval="$enable_gtktest"
|
||||
|
|
|
@ -1,19 +0,0 @@
|
|||
--- src/ED2KLink.cpp.orig Sun May 11 11:53:58 2003
|
||||
+++ src/ED2KLink.cpp Sun May 11 11:57:00 2003
|
||||
@@ -216,6 +216,8 @@
|
||||
pEnd = pCh;
|
||||
while( *pEnd ) pEnd++; // make pEnd point to the terminating NULL
|
||||
bAllowSources=true;
|
||||
+// This code segment does not work with gcc 3.x. At least, under FreeBSD.
|
||||
+#if defined(__FreeBSD__) && __FreeBSD_version >= 500035
|
||||
// if there's an expiration date...
|
||||
if( *pCh == _T('@') && (pEnd-pCh) > 7 )
|
||||
{
|
||||
@@ -230,6 +232,7 @@
|
||||
bAllowSources = ( expirationDate.Set(nYear,(wxDateTime::Month)nMonth,nDay,0,0,0,0) == 0l);
|
||||
if (bAllowSources) bAllowSources=(wxDateTime::UNow() < expirationDate);
|
||||
}
|
||||
+#endif
|
||||
|
||||
// increment pCh to point to the first "ip:port" and check for sources
|
||||
if ( bAllowSources && ++pCh < pEnd ) {
|
|
@ -13,4 +13,4 @@ Features
|
|||
* LMule can be minimized to systray
|
||||
* You can set nearly all preferences
|
||||
|
||||
WWW: http://lmule.sourceforge.net/
|
||||
WWW: http://www.xmule.org/
|
||||
|
|
|
@ -1,21 +1,30 @@
|
|||
bin/lmule
|
||||
share/gnome/applications/lmule.desktop
|
||||
share/gnome/pixmaps/lmule.xpm
|
||||
share/locale/de/LC_MESSAGES/lmule.mo
|
||||
share/locale/es/LC_MESSAGES/lmule.mo
|
||||
share/locale/es_MX/LC_MESSAGES/lmule.mo
|
||||
share/locale/fr/LC_MESSAGES/lmule.mo
|
||||
share/locale/pl/LC_MESSAGES/lmule.mo
|
||||
share/locale/tr/LC_MESSAGES/lmule.mo
|
||||
bin/xmule
|
||||
share/gnome/applications/xmule.desktop
|
||||
share/gnome/pixmaps/xmule.xpm
|
||||
share/locale/de/LC_MESSAGES/xmule.mo
|
||||
share/locale/ee/LC_MESSAGES/xmule.mo
|
||||
share/locale/es/LC_MESSAGES/xmule.mo
|
||||
share/locale/es_MX/LC_MESSAGES/xmule.mo
|
||||
share/locale/fr/LC_MESSAGES/xmule.mo
|
||||
share/locale/it/LC_MESSAGES/xmule.mo
|
||||
share/locale/ko/LC_MESSAGES/xmule.mo
|
||||
share/locale/pl/LC_MESSAGES/xmule.mo
|
||||
share/locale/tr/LC_MESSAGES/xmule.mo
|
||||
@unexec rmdir %D/share/locale/tr/LC_MESSAGES 2>/dev/null || true
|
||||
@unexec rmdir %D/share/locale/tr 2>/dev/null || true
|
||||
@unexec rmdir %D/share/locale/pl/LC_MESSAGES 2>/dev/null || true
|
||||
@unexec rmdir %D/share/locale/pl 2>/dev/null || true
|
||||
@unexec rmdir %D/share/locale/ko/LC_MESSAGES 2>/dev/null || true
|
||||
@unexec rmdir %D/share/locale/ko 2>/dev/null || true
|
||||
@unexec rmdir %D/share/locale/it/LC_MESSAGES 2>/dev/null || true
|
||||
@unexec rmdir %D/share/locale/it 2>/dev/null || true
|
||||
@unexec rmdir %D/share/locale/fr/LC_MESSAGES 2>/dev/null || true
|
||||
@unexec rmdir %D/share/locale/fr 2>/dev/null || true
|
||||
@unexec rmdir %D/share/locale/es_MX/LC_MESSAGES 2>/dev/null || true
|
||||
@unexec rmdir %D/share/locale/es_MX 2>/dev/null || true
|
||||
@unexec rmdir %D/share/locale/es/LC_MESSAGES 2>/dev/null || true
|
||||
@unexec rmdir %D/share/locale/es 2>/dev/null || true
|
||||
@unexec rmdir %D/share/locale/ee/LC_MESSAGES 2>/dev/null || true
|
||||
@unexec rmdir %D/share/locale/ee 2>/dev/null || true
|
||||
@unexec rmdir %D/share/locale/de/LC_MESSAGES 2>/dev/null || true
|
||||
@unexec rmdir %D/share/locale/de 2>/dev/null || true
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
# New ports collection makefile for: lmule
|
||||
# New ports collection makefile for: xmule
|
||||
# Date created: Tue Mar 11 05:06:20 UTC 2003
|
||||
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= lmule
|
||||
PORTVERSION= 1.2.1
|
||||
PORTNAME= xmule
|
||||
PORTVERSION= 1.4.0
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= lmule
|
||||
MASTER_SITE_SUBDIR= xmule
|
||||
|
||||
MAINTAINER= lioux@FreeBSD.org
|
||||
COMMENT= Port of eMule eDonkey P2P client using wxWindows class library
|
||||
|
@ -20,6 +20,7 @@ LIB_DEPENDS= intl.4:${PORTSDIR}/devel/gettext \
|
|||
RUN_DEPENDS= wget:${PORTSDIR}/ftp/wget
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_BZIP2= yes
|
||||
USE_GNOME= gnomehier \
|
||||
gnomehack \
|
||||
gnomeprefix
|
||||
|
@ -32,13 +33,17 @@ CONFIGURE_ARGS= --without-included-gettext \
|
|||
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \
|
||||
LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib ${PTHREAD_LIBS}"
|
||||
|
||||
WX_CONFIG?= "${X11BASE}/bin/wx-config"
|
||||
WX_CONFIG?= ${X11BASE}/bin/wx-config
|
||||
|
||||
post-patch:
|
||||
# it works for FreeBSD as well
|
||||
@${REINPLACE_CMD} -E \
|
||||
-e 's|(Linux)|FreeBSD/\1|' \
|
||||
${WRKSRC}/src/*.cpp
|
||||
# remove ^M
|
||||
@${REINPLACE_CMD} -E \
|
||||
-e 's|
||' \
|
||||
${WRKSRC}/src/MD5Sum.cpp
|
||||
|
||||
pre-configure:
|
||||
@${FIND} ${WRKSRC} -type f -name "Makefile.in" | \
|
||||
|
@ -53,12 +58,12 @@ post-install:
|
|||
|
||||
.if exists(${WX_CONFIG})
|
||||
# detect if wxgtk was linked against gtk1 or gtk2
|
||||
DECISION_GTK_1_OR_2!= ${WX_CONFIG} --cppflags
|
||||
DECISION_GTK_1_OR_2!= ${WX_CONFIG} --static --libs
|
||||
.else
|
||||
DECISION_GTK_1_OR_2= ""
|
||||
.endif
|
||||
|
||||
.if (${DECISION_GTK_1_OR_2:Mgtk2} != "")
|
||||
.if ${DECISION_GTK_1_OR_2:M*glib-2.0} != ""
|
||||
USE_GNOME+= gtk20
|
||||
.else
|
||||
USE_GNOME+= gtk12
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (lmule-1.2.1.tar.gz) = ef0efe29860873fd11a838d5c1d01a84
|
||||
MD5 (xmule-1.4.0.tar.bz2) = f63d4f84479c4e0ef625c054e6cbed10
|
||||
|
|
|
@ -1,11 +1,29 @@
|
|||
--- configure.orig Sat Mar 29 14:13:57 2003
|
||||
+++ configure Sat Mar 29 14:14:04 2003
|
||||
@@ -1710,8 +1710,6 @@
|
||||
--- configure.orig Mon May 26 22:56:09 2003
|
||||
+++ configure Tue May 27 17:55:59 2003
|
||||
@@ -1712,8 +1712,6 @@
|
||||
|
||||
# Checks for programs.
|
||||
# hopefully this prevents -O2
|
||||
-CXXFLAGS="-g"
|
||||
-CFLAGS="-g"
|
||||
-CXXFLAGS="-g -rdynamic"
|
||||
-CFLAGS="-g -rdynamic"
|
||||
ac_ext=cc
|
||||
ac_cpp='$CXXCPP $CPPFLAGS'
|
||||
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
||||
@@ -7149,7 +7147,7 @@
|
||||
|
||||
echo "$as_me:$LINENO: checking if wxWindows was linked with GTK2" >&5
|
||||
echo $ECHO_N "checking if wxWindows was linked with GTK2... $ECHO_C" >&6
|
||||
- if $WX_CONFIG_NAME --cppflags | grep -q 'gtk2' ; then
|
||||
+ if $WX_CONFIG_NAME --static --libs | grep -q 'glib-2' ; then
|
||||
GTK_USEDVERSION=2
|
||||
echo "$as_me:$LINENO: result: yes" >&5
|
||||
echo "${ECHO_T}yes" >&6
|
||||
@@ -7161,7 +7159,7 @@
|
||||
|
||||
|
||||
|
||||
-if test x$GTK_USEDVERSION == x2 ; then
|
||||
+if test x$GTK_USEDVERSION = x2 ; then
|
||||
# Check whether --enable-gtktest or --disable-gtktest was given.
|
||||
if test "${enable_gtktest+set}" = set; then
|
||||
enableval="$enable_gtktest"
|
||||
|
|
|
@ -1,19 +0,0 @@
|
|||
--- src/ED2KLink.cpp.orig Sun May 11 11:53:58 2003
|
||||
+++ src/ED2KLink.cpp Sun May 11 11:57:00 2003
|
||||
@@ -216,6 +216,8 @@
|
||||
pEnd = pCh;
|
||||
while( *pEnd ) pEnd++; // make pEnd point to the terminating NULL
|
||||
bAllowSources=true;
|
||||
+// This code segment does not work with gcc 3.x. At least, under FreeBSD.
|
||||
+#if defined(__FreeBSD__) && __FreeBSD_version >= 500035
|
||||
// if there's an expiration date...
|
||||
if( *pCh == _T('@') && (pEnd-pCh) > 7 )
|
||||
{
|
||||
@@ -230,6 +232,7 @@
|
||||
bAllowSources = ( expirationDate.Set(nYear,(wxDateTime::Month)nMonth,nDay,0,0,0,0) == 0l);
|
||||
if (bAllowSources) bAllowSources=(wxDateTime::UNow() < expirationDate);
|
||||
}
|
||||
+#endif
|
||||
|
||||
// increment pCh to point to the first "ip:port" and check for sources
|
||||
if ( bAllowSources && ++pCh < pEnd ) {
|
Loading…
Reference in a new issue