Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 22 Jan 2004 17:35:49 +0100 (CET)
From:      Ulrich Spoerlein <q@uni.de>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/61736: [NEW PORT] ftp/wmget: Dock app for Window Maker providing wget functionality
Message-ID:  <200401221635.i0MGZnLM013357@roadrunner.q.local>
Resent-Message-ID: <200401221640.i0MGeHPr092095@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         61736
>Category:       ports
>Synopsis:       [NEW PORT] ftp/wmget: Dock app for Window Maker providing wget functionality
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Thu Jan 22 08:40:17 PST 2004
>Closed-Date:
>Last-Modified:
>Originator:     Ulrich Spoerlein
>Release:        FreeBSD 5.2-RELEASE i386
>Organization:
>Environment:
System: FreeBSD roadrunner 5.2-RELEASE FreeBSD 5.2-RELEASE #3: Tue Jan 20 18:06:57 CET 2004
>Description:
wmget is a dock app for the GNU Window Maker window manager which makes it more
convenient to perform long downloads in the background.

This is useful if you tend to have dozens of windows open at a time and tend to
do a lot of routine downloading. Just copy the link from your browser, middle-
click on the wmget dockapp, and the download will start. No download windows or
terminals required, and you can monitor the progress and stop the transfer if
desired without opening or raising any windows or even changing desktops.

WWW: http://amtrickey.net/wmget/

Generated with FreeBSD Port Tools 0.50
>How-To-Repeat:
>Fix:

--- wmget-0.5.0.shar begins here ---
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	wmget
#	wmget/Makefile
#	wmget/distinfo
#	wmget/pkg-descr
#	wmget/files
#	wmget/files/patch-Makefile
#	wmget/files/patch-dockapp::Makefile
#	wmget/files/patch-configure.c
#	wmget/pkg-plist
#
echo c - wmget
mkdir -p wmget > /dev/null 2>&1
echo x - wmget/Makefile
sed 's/^X//' >wmget/Makefile << 'END-of-wmget/Makefile'
X# New ports collection makefile for:	wmget
X# Date created:				05.01.2004
X# Whom:					Ulrich Spoerlein <q@uni.de>
X#
X# $FreeBSD$
X
XPORTNAME=	wmget
XPORTVERSION=	0.5.0
XCATEGORIES=	ftp
XMASTER_SITES=	http://amtrickey.net/download/
XDISTNAME=	${PORTNAME}-${PORTVERSION}-src
X
XMAINTAINER=	q@uni.de
XCOMMENT=	Dock app for Window Maker providing wget functionality
X
XLIB_DEPENDS=	curl.2:${PORTSDIR}/ftp/curl
X
XUSE_X_PREFIX=	yes
XWRKSRC=		${WRKDIR}/${PORTNAME}
X
XMAN1=		wmget.1
X
Xdo-install:
X	${INSTALL_PROGRAM} ${WRKSRC}/wmget ${PREFIX}/bin
X.if !defined(NO_INSTALL_MANPAGES)
X	${INSTALL_MAN} ${WRKSRC}/wmget.1 ${PREFIX}/man/man1
X.endif
X
X.include <bsd.port.mk>
END-of-wmget/Makefile
echo x - wmget/distinfo
sed 's/^X//' >wmget/distinfo << 'END-of-wmget/distinfo'
XMD5 (wmget-0.5.0-src.tar.gz) = 7d0b169c5bb51a7ad13325583f674be1
END-of-wmget/distinfo
echo x - wmget/pkg-descr
sed 's/^X//' >wmget/pkg-descr << 'END-of-wmget/pkg-descr'
Xwmget is a dock app for the GNU Window Maker window manager which makes it more
Xconvenient to perform long downloads in the background.
X
XThis is useful if you tend to have dozens of windows open at a time and tend to
Xdo a lot of routine downloading. Just copy the link from your browser, middle-
Xclick on the wmget dockapp, and the download will start. No download windows or
Xterminals required, and you can monitor the progress and stop the transfer if
Xdesired without opening or raising any windows or even changing desktops.
X
XWWW: http://amtrickey.net/wmget/
END-of-wmget/pkg-descr
echo c - wmget/files
mkdir -p wmget/files > /dev/null 2>&1
echo x - wmget/files/patch-Makefile
sed 's/^X//' >wmget/files/patch-Makefile << 'END-of-wmget/files/patch-Makefile'
X--- Makefile.orig	Sun Feb  9 05:04:20 2003
X+++ Makefile	Mon Jan  5 18:18:47 2004
X@@ -46,16 +46,18 @@
X 
X # To specify a different prefix, you can override this on the command line
X #	make PREFIX=/opt/dockapps install
X-PREFIX=		/usr/local
X+X11BASE?=	/usr/X11R6
X+PREFIX?=	${X11BASE}
X 
X INSTALLDIR=	install -d -m 755
X-INSTALLBIN=	install -m 555
X-INSTALLMAN=	install -m 444
X-CC=		gcc
X-CFLAGS=		-ansi -Wall -W -I/usr/X11R6/include -D_GNU_SOURCE
X+INSTALLBIN=	$(INSTALL_PROGRAM)
X+INSTALLMAN=	$(INSTALL_MAN)
X+CC?=		gcc
X+CFLAGS?=	-ansi -Wall -W
X+CFLAGS+=	-I${X11BASE}/include -I${LOCALBASE}/include -D_GNU_SOURCE
X # The following line is what I use during development
X #CFLAGS:=	$(CFLAGS) -Werror -g
X-LDFLAGS=	-L/usr/X11R6/lib -lXpm -lXext -lX11 -lm -lcurl
X+LDFLAGS+=	-L${X11BASE}/lib -L${LOCALBASE}/lib -lXpm -lXext -lX11 -lm -lcurl
X DOCS=		wmget.1
X 
X VERSION:=	$(shell grep '\#define WMGET_VERSION ' wmget.h \
END-of-wmget/files/patch-Makefile
echo x - wmget/files/patch-dockapp::Makefile
sed 's/^X//' >wmget/files/patch-dockapp::Makefile << 'END-of-wmget/files/patch-dockapp::Makefile'
X--- dockapp/Makefile.orig	Sun Feb  9 04:08:07 2003
X+++ dockapp/Makefile	Mon Jan  5 18:11:28 2004
X@@ -19,11 +19,11 @@
X 
X # Makefile for the dockapp library packaged in the ``wmget'' application.
X 
X-
X DAOBJS=		da_run.o da_x.o da_mouse.o
X 
X-CFLAGS=		-ansi -Wall -W -Werror -g
X-LDFLAGS=	-L/usr/X11R6/lib -lXpm -lXext -lX11
X+CFLAGS?=		-ansi -Wall -W -Werror -g
X+CFLAGS+=	-I${X11BASE}/include
X+LDFLAGS=	-L${X11BASE}/lib -lXpm -lXext -lX11
X 
X dockapp.a:	$(DAOBJS)
X 		ar rcsv dockapp.a $(DAOBJS)
END-of-wmget/files/patch-dockapp::Makefile
echo x - wmget/files/patch-configure.c
sed 's/^X//' >wmget/files/patch-configure.c << 'END-of-wmget/files/patch-configure.c'
X--- configure.c.orig	Mon Jan  5 18:16:22 2004
X+++ configure.c	Mon Jan  5 18:16:32 2004
X@@ -30,7 +30,6 @@
X */
X 
X #include <string.h>
X-#include <malloc.h>
X #include <ctype.h>
X #include <getopt.h>
X #include <stdlib.h>
END-of-wmget/files/patch-configure.c
echo x - wmget/pkg-plist
sed 's/^X//' >wmget/pkg-plist << 'END-of-wmget/pkg-plist'
Xbin/wmget
END-of-wmget/pkg-plist
exit
--- wmget-0.5.0.shar ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200401221635.i0MGZnLM013357>