Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Sep 2001 16:45:50 -0400 (EDT)
From:      Patrick Li <pat@databits.net>
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/30897: New port: mail/wmmultipop3
Message-ID:  <200109282045.f8SKjoC16562@cc92687-a.wlgrv1.pa.home.com>

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

>Number:         30897
>Category:       ports
>Synopsis:       New port: mail/wmmultipop3
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Fri Sep 28 13:50:01 PDT 2001
>Closed-Date:
>Last-Modified:
>Originator:     Patrick Li
>Release:        FreeBSD 4.4-STABLE i386
>Organization:
N/A
>Environment:
System: FreeBSD bottlenek 4.4-STABLE FreeBSD 4.4-STABLE #0: Fri Sep 21 14:27:29 EDT 2001 root@:/usr/src/sys/compile/BOTTLENEK i386
>Description:
wmMultiPop3 is a WindowMaker dockapp which checks one or more
pop3-accounts for new mail. It's based on wmPop3 written by Scott
Helden.

WWW: http://sumpan.campus.luth.se/software/wmmultipop3/
Author: Daniel Sundberg <dansun-8@student.luth.se>
>How-To-Repeat:
N/A
>Fix:
# 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:
#
#	wmmultipop3
#	wmmultipop3/Makefile
#	wmmultipop3/distinfo
#	wmmultipop3/pkg-comment
#	wmmultipop3/pkg-descr
#	wmmultipop3/pkg-plist
#	wmmultipop3/files
#	wmmultipop3/files/patch-Makefile
#	wmmultipop3/pkg-message
#
echo c - wmmultipop3
mkdir -p wmmultipop3 > /dev/null 2>&1
echo x - wmmultipop3/Makefile
sed 's/^X//' >wmmultipop3/Makefile << 'END-of-wmmultipop3/Makefile'
X# New ports collection makefile for:	wmmultipop3
X# Date created:				Fri Sep 28 16:25:34 EDT 2001
X# Whom:					Patrick Li <pat@databits.net>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	wmmultipop3
XPORTVERSION=	0.7
XCATEGORIES=	mail windowmaker
XMASTER_SITES=	http://sumpan.campus.luth.se/software/wmmultipop3/
XDISTNAME=	wmMultiPop3-${PORTVERSION}
X
XMAINTAINER=	pat@databits.net
X
XWRKSRC=		${WRKDIR}/${DISTNAME}/${PORTNAME}
XUSE_X_PREFIX=	yes
XUSE_XPM=	yes
XUSE_GMAKE=	yes
X
Xdo-install:
X	@${INSTALL_PROGRAM} ${WRKSRC}/wmmultipop3 ${PREFIX}/bin
X
Xpost-install:
X	@${CAT} ${PKGMESSAGE}
X
X.include <bsd.port.mk>
END-of-wmmultipop3/Makefile
echo x - wmmultipop3/distinfo
sed 's/^X//' >wmmultipop3/distinfo << 'END-of-wmmultipop3/distinfo'
XMD5 (wmMultiPop3-0.7.tar.gz) = e7464e5939a856beff42fd7f414daa34
END-of-wmmultipop3/distinfo
echo x - wmmultipop3/pkg-comment
sed 's/^X//' >wmmultipop3/pkg-comment << 'END-of-wmmultipop3/pkg-comment'
XA WindowMaker dockapp that checks multiple pop3 accounts for new mail
END-of-wmmultipop3/pkg-comment
echo x - wmmultipop3/pkg-descr
sed 's/^X//' >wmmultipop3/pkg-descr << 'END-of-wmmultipop3/pkg-descr'
XwmMultiPop3 is a WindowMaker dockapp which checks one or more
Xpop3-accounts for new mail. It's based on wmPop3 written by Scott
XHelden.
X
XWWW: http://sumpan.campus.luth.se/software/wmmultipop3/
XAuthor: Daniel Sundberg <dansun-8@student.luth.se>
END-of-wmmultipop3/pkg-descr
echo x - wmmultipop3/pkg-plist
sed 's/^X//' >wmmultipop3/pkg-plist << 'END-of-wmmultipop3/pkg-plist'
Xbin/wmmultipop3
END-of-wmmultipop3/pkg-plist
echo c - wmmultipop3/files
mkdir -p wmmultipop3/files > /dev/null 2>&1
echo x - wmmultipop3/files/patch-Makefile
sed 's/^X//' >wmmultipop3/files/patch-Makefile << 'END-of-wmmultipop3/files/patch-Makefile'
X--- Makefile.orig	Sat Sep 22 11:29:50 2001
X+++ Makefile	Fri Sep 28 16:36:39 2001
X@@ -1,16 +1,15 @@
X-LIBDIR = -L/usr/X11R6/lib
X+LIBDIR = -L${X11BASE}/lib
X LIBS   = -lXpm -lXext -lX11
X-FLAGS  = -O2
X OBJS   = wmmultipop3.o Pop3Client.o ../wmgeneral/wmgeneral.o ../wmgeneral/misc.o ../wmgeneral/list.o
X 
X 
X .c.o:
X-	cc -I/usr/X11R6/share/include $(FLAGS) -c -Wall $< -o $*.o
X+	$(CC) -I${X11BASE}/include -c $< -o $*.o
X 
X wmmultipop3: $(OBJS) 
X-	cc $(FLAGS) -o wmmultipop3 $^ -lXext $(LIBDIR) $(LIBS)
X+	$(CC) -o wmmultipop3 $^ $(LIBDIR) $(LIBS)
X 
X-all:: wmpop3
X+all:: wmmultipop3
X 
X clean::
X 	for i in $(OBJS) ; do \
END-of-wmmultipop3/files/patch-Makefile
echo x - wmmultipop3/pkg-message
sed 's/^X//' >wmmultipop3/pkg-message << 'END-of-wmmultipop3/pkg-message'
X
X------------------------------------------------------------------
XWARNING!!! - When you run wmmultipop3 and it automatically creates
X.wmmultipop3rc in your home directory, make sure you set chmod 600
Xon that configuration file because passwords will be in plain text
X------------------------------------------------------------------
X
END-of-wmmultipop3/pkg-message
exit

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

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




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