Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 28 Jul 2003 15:02:52 +0200 (CEST)
From:      "Lasse L.Johnsen" <lasse@freebsdcluster.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/54977: 
Message-ID:  <20030728130252.5C3A8AC736@freebsdcluster.org>
Resent-Message-ID: <200307281310.h6SDAJTG054413@freefall.freebsd.org>

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

>Number:         54977
>Category:       ports
>Synopsis:       
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Jul 28 06:10:18 PDT 2003
>Closed-Date:
>Last-Modified:
>Originator:     Lasse L. Johnsen
>Release:        FreeBSD 4.6-STABLE i386
>Organization:
>Environment:
System: FreeBSD freebsdcluster.dk 4.6-STABLE FreeBSD 4.6-STABLE #0: Sat Jul 6 13:54:50 CEST 2002 root@freebsdcluster.dk:/space1/usr-linked/obj/space1/usr-linked/src/sys/COP_KERNEL_1 i386


# 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:
#
#	imapproxy
#	imapproxy/distinfo
#	imapproxy/pkg-descr
#	imapproxy/Makefile
#	imapproxy/pkg-plist
#	imapproxy/files
#	imapproxy/files/patch-aa
#	imapproxy/files/patch-ab
#	imapproxy/files/patch-ac
#	imapproxy/files/patch-ad
#
echo c - imapproxy
mkdir -p imapproxy > /dev/null 2>&1
echo x - imapproxy/distinfo
sed 's/^X//' >imapproxy/distinfo << 'END-of-imapproxy/distinfo'
XMD5 (imapproxy-1.0.tar.gz) = a25e4a15160e827537de867bb91fb51b
END-of-imapproxy/distinfo
echo x - imapproxy/pkg-descr
sed 's/^X//' >imapproxy/pkg-descr << 'END-of-imapproxy/pkg-descr'
XThe program forwards all IMAP traffic between the client and the server, but 
Xkeeps the connection to the server alive after the client logs out. When the 
Xsame user attempts to log in again, the proxy will use the cached 
Xusername/password pair to authenticate the client, and tie the new client to 
Xthe old server connection (which was kept alive). 
X
XWWW: http://www.kuleuven.net/projects/imapproxy/
X
X	Lasse L. Johnsen
X	lasse@freebsdcluster.org
END-of-imapproxy/pkg-descr
echo x - imapproxy/Makefile
sed 's/^X//' >imapproxy/Makefile << 'END-of-imapproxy/Makefile'
X# Ports collection makefile for:  imapproxy
X# Date created:                   Mon July 28, 2003
X# Whom:                           Lasse L. Johnsen (lasse@freebsdcluster.org)
X#
X# $FreeBSD$
X#
X
XPORTNAME=	imapproxy
XPORTVERSION=	1.0
XCATEGORIES=	net
XMASTER_SITES=	http://www.freebsdcluster.org/~lasse/software/  \
X		${MASTER_SITE_LOCAL}
X
XMAINTAINER=	lasse@freebsdcluster.org
XCOMMENT=	ImapProxy is a caching IMAP proxy daemon designed to be used with Horde/IMP
X
XGNU_CONFIGURE=	yes
XHAS_CONFIGURE=	yes
X
Xdo-install:
X	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/sbin
X	${INSTALL_DATA} ${WRKSRC}/example.conf ${PREFIX}/etc/imapproxy.conf.dist
X
X.include <bsd.port.mk>
END-of-imapproxy/Makefile
echo x - imapproxy/pkg-plist
sed 's/^X//' >imapproxy/pkg-plist << 'END-of-imapproxy/pkg-plist'
Xsbin/imapproxy
Xetc/imapproxy.conf.dist
END-of-imapproxy/pkg-plist
echo c - imapproxy/files
mkdir -p imapproxy/files > /dev/null 2>&1
echo x - imapproxy/files/patch-aa
sed 's/^X//' >imapproxy/files/patch-aa << 'END-of-imapproxy/files/patch-aa'
X--- configfile.c.orig	Fri Aug  9 15:24:23 2002
X+++ configfile.c	Mon Jul 28 11:22:34 2003
X@@ -23,6 +23,7 @@
X #include <string.h>
X #include <strings.h>
X #include <stdlib.h>
X+#include <sys/types.h>
X #include <sys/socket.h>
X #include <netinet/in.h>
X #include <arpa/inet.h>
END-of-imapproxy/files/patch-aa
echo x - imapproxy/files/patch-ab
sed 's/^X//' >imapproxy/files/patch-ab << 'END-of-imapproxy/files/patch-ab'
X--- database.c.orig	Fri Aug  9 15:24:23 2002
X+++ database.c		Mon Jul 28 11:22:10 2003
X@@ -24,6 +24,7 @@
X #include <stdlib.h>
X #include <stdio.h>
X #include <errno.h>
X+#include <sys/types.h>
X #include <sys/socket.h>
X #include <netinet/in.h>
X #include <arpa/inet.h>
END-of-imapproxy/files/patch-ab
echo x - imapproxy/files/patch-ac
sed 's/^X//' >imapproxy/files/patch-ac << 'END-of-imapproxy/files/patch-ac'
X--- network.c.orig	Fri Aug  9 15:24:23 2002
X+++ network.c		Mon Jul 28 11:21:26 2003
X@@ -20,9 +20,9 @@
X
X
X #include <stdio.h>
X+#include <sys/types.h>
X #include <sys/socket.h>
X #include <netinet/in.h>
X-#include <sys/types.h>
X #include <string.h>
X #include <netdb.h>
X #include <unistd.h>
END-of-imapproxy/files/patch-ac
echo x - imapproxy/files/patch-ad
sed 's/^X//' >imapproxy/files/patch-ad << 'END-of-imapproxy/files/patch-ad'
X--- include/defines.h.orig      Mon Jul 28 12:41:58 2003
X+++ include/defines.h   Mon Jul 28 12:42:27 2003
X@@ -45,7 +45,7 @@
X 
X #define DEFAULT_MAX_REUSE	0
X 
X-#define DEFAULT_CONFIG_FILE ".imapproxy"
X+#define DEFAULT_CONFIG_FILE "/usr/local/etc/imapproxy.conf"
X #define VERSION "v0.9-3"
X #define PROGNAME "ImapProxy"
X #define AUTHOR "Steven Van Acker <imapproxy@kuleuven.net>"
END-of-imapproxy/files/patch-ad
exit

>Description:
>How-To-Repeat:
>Fix:
>Release-Note:
>Audit-Trail:
>Unformatted:



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