Date: Mon, 5 Jul 2004 19:26:58 +1000 (EST) From: Edwin Groothuis <edwin@mavetju.org> To: FreeBSD-gnats-submit@FreeBSD.org Cc: chip-set@mail.ru Subject: ports/68684: [patch] update ftp/wput to version 0.4 Message-ID: <20040705092658.F181660ED@k7.mavetju> Resent-Message-ID: <200407050930.i659UE3b044280@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 68684 >Category: ports >Synopsis: [patch] update ftp/wput to version 0.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Jul 05 09:30:14 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Edwin Groothuis >Release: FreeBSD 5.2.1-RELEASE i386 >Organization: - >Environment: System: FreeBSD k7.mavetju 5.2.1-RELEASE FreeBSD 5.2.1-RELEASE #3: Fri Feb 27 13:54:29 EST 2004 edwin@k7.mavetju:/usr/src/sys/i386/compile/k7 i386 >Description: Update ftp/wput to version 0.4 (with smarter upload options) >How-To-Repeat: >Fix: ? work Index: Makefile =================================================================== RCS file: /home/pcvs/ports/ftp/wput/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- Makefile 8 Mar 2004 19:37:44 -0000 1.4 +++ Makefile 5 Jul 2004 09:25:40 -0000 @@ -6,16 +6,15 @@ # PORTNAME= wput -PORTVERSION= 0.3.6d +PORTVERSION= 0.4 CATEGORIES= ftp MASTER_SITES= http://itooktheredpill.dyndns.org/wput/ -DISTNAME= wput-0.3.6 EXTRACT_SUFX= .tgz MAINTAINER= chip-set@mail.ru COMMENT= Uploads files or directories to a ftpserver with support of resuming -PORTDOCS= TODO USAGE.examples +PORTDOCS= TODO ChangeLog USE_AUTOCONF_VER= 253 USE_GETOPT_LONG= yes @@ -27,6 +26,7 @@ LIBS="-L${LOCALBASE}/lib" PLIST_FILES= bin/wput +MAN1= wput.1 post-install: .if !defined(NOPORTDOCS) Index: distinfo =================================================================== RCS file: /home/pcvs/ports/ftp/wput/distinfo,v retrieving revision 1.2 diff -u -r1.2 distinfo --- distinfo 6 Mar 2004 11:13:41 -0000 1.2 +++ distinfo 5 Jul 2004 09:25:40 -0000 @@ -1,2 +1,2 @@ -MD5 (wput-0.3.6.tgz) = 6fc94aaf28e86f42c2b87ee977ceb039 -SIZE (wput-0.3.6.tgz) = 85523 +MD5 (wput-0.4.tgz) = 11b73023fe49f4d9d6f6254433c152ae +SIZE (wput-0.4.tgz) = 154911 Index: files/patch-src::Makefile.in =================================================================== RCS file: /home/pcvs/ports/ftp/wput/files/patch-src::Makefile.in,v retrieving revision 1.1 diff -u -r1.1 patch-src::Makefile.in --- files/patch-src::Makefile.in 8 Dec 2003 10:13:10 -0000 1.1 +++ files/patch-src::Makefile.in 5 Jul 2004 09:25:40 -0000 @@ -1,24 +1,22 @@ ---- src/Makefile.in.orig Tue Dec 2 03:57:48 2003 -+++ src/Makefile.in Tue Dec 2 03:58:04 2003 -@@ -4,10 +4,10 @@ +--- src/Makefile.in.orig Sat Apr 17 02:35:38 2004 ++++ src/Makefile.in Mon Jul 5 18:11:30 2004 +@@ -4,8 +4,8 @@ prefix=@prefix@ bindir=@bindir@ CC=@CC@ -CFLAGS= @CFLAGS@ +-LIBS=@LIBS@ +CFLAGS= @CFLAGS@ @CPPFLAGS@ - LDFLAGS=@LDFLAGS@ ++LIBS=@LIBS@ EXE=../wput --LIBS= -+LIBS= @LIBS@ - #DEBUG= -DDEBUG - DEBUG= - OBJ=wput.o ftp.o utils.o progress.o socket.o -@@ -17,7 +17,7 @@ - - all: wput - wput: $(OBJ) -- $(CC) $(LIBS) $(DEBUG) -o $(EXE) $(OBJ) -+ $(CC) $(LIBS) $(DEBUG) -o $(EXE) $(OBJ) $(LDFLAGS) + GETOPT=@GETOPT@ + MEMDBG=@MEMDBG@ +@@ -22,7 +22,7 @@ + ftp-ls.o: ftp.h + + wput: $(OBJ) +- $(CC) -o $(EXE) $(OBJ) $(LIBS) ++ $(CC) -o $(EXE) $(OBJ) $(LIBS) $(LDFLAGS) clean: - rm -f *.o wput *~ *.bak - rm -r msvcpp/Debug msvcpp/Release + rm -f *.o *~ *.bak ../wput getopt/*.o + win-clean: clean Index: files/patch::configure.in =================================================================== RCS file: /home/pcvs/ports/ftp/wput/files/patch::configure.in,v retrieving revision 1.1 diff -u -r1.1 patch::configure.in --- files/patch::configure.in 8 Dec 2003 10:13:10 -0000 1.1 +++ files/patch::configure.in 5 Jul 2004 09:25:40 -0000 @@ -1,11 +1,17 @@ ---- configure.in.orig Tue Dec 2 03:49:48 2003 -+++ configure.in Tue Dec 2 03:50:00 2003 -@@ -9,7 +9,7 @@ - [AC_MSG_ERROR("You need to get libgnugetopt or a newer GNU libc.")] - )] - ) --AC_SEARCH_LIBS(getopt_long, gnugetopt, [], -+AC_SEARCH_LIBS(getopt_long, gnugetopt, [LIBS="-lgnugetopt"], - [AC_MSG_ERROR("You need to get libgnugetopt or a newer GNU libc.")] - ) - AC_CONFIG_FILES([Makefile src/Makefile]) +--- configure.in.orig Mon Jul 5 18:06:13 2004 ++++ configure.in Mon Jul 5 18:06:46 2004 +@@ -23,12 +23,12 @@ + AC_PROG_CC + AC_CHECK_HEADERS([sys/termio.h, sys/winsize.h], AC_DEFINE(HAVE_TERMIO)) + AC_CHECK_HEADERS(getopt.h, [ +- AC_SEARCH_LIBS(getopt_long, gnugetopt, [], ++ AC_SEARCH_LIBS(getopt_long, gnugetopt, [LIBS="-lgnugetopt"], + [AC_MSG_ERROR("You need to get libgnugetopt or a newer GNU libc.")] + ) + ], + [AC_CHECK_HEADERS(gnugetopt/getopt.h, [ +- AC_SEARCH_LIBS(getopt_long, gnugetopt, [], ++ AC_SEARCH_LIBS(getopt_long, gnugetopt, [LIBS="-lgnugetopt"], + [AC_MSG_ERROR("You need to get libgnugetopt or a newer GNU libc.")] + ) + ], >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20040705092658.F181660ED>