mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-02 11:09:29 +00:00
Remove net/lmule port since project has been abadoned in favor of
net/xmule Submitted by: many
This commit is contained in:
parent
055e6f0f12
commit
d5f3d0443a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=93666
1
MOVED
1
MOVED
@ -700,3 +700,4 @@ misc/icemc||2003-11-08|author no longer develops program, distfile gone
|
||||
editors/openoffice-1.1-cz|editors/openoffice-1.1-cs|2003-11-08|Czech language ISO code is cs
|
||||
editors/openoffice-1.1-sl|editors/openoffice-1.1-sk|2003-11-08|Slovak language ISO code is sk
|
||||
x11-toolkits/wxgtk-devel|x11-toolkits/wxgtk|2003-11-10|renamed
|
||||
net/lmule||2003-11-10|project has been abadoned in favor of net/xmule
|
||||
|
@ -1,70 +0,0 @@
|
||||
# New ports collection makefile for: lmule
|
||||
# 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
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= lmule
|
||||
|
||||
MAINTAINER= lioux@FreeBSD.org
|
||||
COMMENT= Port of eMule eDonkey P2P client using wxWindows class library
|
||||
|
||||
LIB_DEPENDS= intl.5:${PORTSDIR}/devel/gettext \
|
||||
expat.4:${PORTSDIR}/textproc/expat2 \
|
||||
wx_gtk-2.4.0:${PORTSDIR}/x11-toolkits/wxgtk
|
||||
RUN_DEPENDS= wget:${PORTSDIR}/ftp/wget
|
||||
|
||||
FORBIDDEN= "Probable format string bug and no longer maintained, port will be removed after Feb 2"
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= gnomehier \
|
||||
gnomehack \
|
||||
gnomeprefix
|
||||
USE_REINPLACE= yes
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --without-included-gettext \
|
||||
--with-libintl-prefix=${LOCALBASE} \
|
||||
--with-wx-config=${WX_CONFIG}
|
||||
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \
|
||||
LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib ${PTHREAD_LIBS}"
|
||||
|
||||
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
|
||||
|
||||
pre-configure:
|
||||
@${FIND} ${WRKSRC} -type f -name "Makefile.in" | \
|
||||
${XARGS} -x -n 10 \
|
||||
${REINPLACE_CMD} -E \
|
||||
-e 's!^(AUTOCONF|AUTOHEADER|AUTOMAKE|ACLOCAL).*$$!\1=${TRUE}!'
|
||||
|
||||
post-install:
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if exists(${WX_CONFIG})
|
||||
# detect if wxgtk was linked against gtk1 or gtk2
|
||||
DECISION_GTK_1_OR_2!= ${WX_CONFIG} --static --libs
|
||||
.else
|
||||
DECISION_GTK_1_OR_2= ""
|
||||
.endif
|
||||
|
||||
.if ${DECISION_GTK_1_OR_2:M*glib-2.0} != ""
|
||||
USE_GNOME+= gtk20
|
||||
.else
|
||||
USE_GNOME+= gtk12
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
@ -1 +0,0 @@
|
||||
MD5 (lmule-1.2.1.tar.gz) = ef0efe29860873fd11a838d5c1d01a84
|
@ -1,11 +0,0 @@
|
||||
--- configure.orig Sat Mar 29 14:13:57 2003
|
||||
+++ configure Sat Mar 29 14:14:04 2003
|
||||
@@ -1710,8 +1710,6 @@
|
||||
|
||||
# Checks for programs.
|
||||
# hopefully this prevents -O2
|
||||
-CXXFLAGS="-g"
|
||||
-CFLAGS="-g"
|
||||
ac_ext=cc
|
||||
ac_cpp='$CXXCPP $CPPFLAGS'
|
||||
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
@ -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 ) {
|
@ -1,16 +0,0 @@
|
||||
[ from author's website ]
|
||||
|
||||
Port of eMule eDonkey P2P client using wxWindows class library.
|
||||
|
||||
Features
|
||||
|
||||
* Download/Upload works
|
||||
* You can search and add ed2k-links
|
||||
* Statistics
|
||||
* Shared files tab works
|
||||
* Messages tab is now implemented
|
||||
* You can manage friends
|
||||
* LMule can be minimized to systray
|
||||
* You can set nearly all preferences
|
||||
|
||||
WWW: http://lmule.sourceforge.net/
|
@ -1,19 +0,0 @@
|
||||
ATTENTIONATTENTION:
|
||||
|
||||
Note: Settings were NEVER saved for SharedFile and QueueList and
|
||||
possibly some other lists... Due to this, unless you are using LMule
|
||||
for the first time, there will be no saved settings for these two
|
||||
lists; thus, it will think all of their columns are to be hidden.
|
||||
|
||||
Best fix: right-click on the grey top of each list and select each
|
||||
item in that popup to display the columns... be SURE to quit LMule
|
||||
after doing this because if it crashes you have to do this step
|
||||
again!
|
||||
|
||||
Messy fix: rm /homedir/.lmule/preferences.dat this will remove
|
||||
EVERYTHING, including shares and whatnot. The preferences.dat is a
|
||||
binary file, thus it will be *incredibly* difficult to change by
|
||||
hand.
|
||||
|
||||
Information taken from LMule developer
|
||||
Ted R. Smith <un-thesis@users.sourceforge.net>
|
@ -1,21 +0,0 @@
|
||||
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
|
||||
@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/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/de/LC_MESSAGES 2>/dev/null || true
|
||||
@unexec rmdir %D/share/locale/de 2>/dev/null || true
|
Loading…
x
Reference in New Issue
Block a user