Skip site navigation (1)Skip section navigation (2)
Date:      25 Jun 2002 02:58:56 -0000
From:      Joseph King <king@v2project.com>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/39821: Port Update mail/sqwebmail to 3.3.5
Message-ID:  <20020625025856.36767.qmail@main.v2project.com>

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

>Number:         39821
>Category:       ports
>Synopsis:       Port Update mail/sqwebmail to 3.3.5
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Mon Jun 24 20:00:04 PDT 2002
>Closed-Date:
>Last-Modified:
>Originator:     Joseph King
>Release:        FreeBSD 4.5-STABLE i386
>Organization:
>Environment:
System: FreeBSD main.v2project.com 4.5-STABLE FreeBSD 4.5-STABLE #1: Fri Apr 5 02:33:49 CEST 2002 king@main.v2project.com:/usr/src/sys-altq/compile/MAIN i386


	
>Description:
	Port update from sqwebmail 3.2.0 to 3.3.5
	
>How-To-Repeat:
	
>Fix:

	



--- sqwebmail.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:
#
#	sqwebmail
#	sqwebmail/Makefile
#	sqwebmail/distinfo
#	sqwebmail/pkg-comment
#	sqwebmail/pkg-descr
#	sqwebmail/pkg-plist
#	sqwebmail/pkg-message
#
echo c - sqwebmail
mkdir -p sqwebmail > /dev/null 2>&1
echo x - sqwebmail/Makefile
sed 's/^X//' >sqwebmail/Makefile << 'END-of-sqwebmail/Makefile'
X# New ports collection makefile for: sqwebmail
X# Date created:		23 Sep 2000
X# Whom:			Neil Blakey-Milner
X#
X# $FreeBSD: ports/mail/sqwebmail/Makefile,v 1.9 2001/11/18 12:23:13 nbm Exp $
X#
X
XPORTNAME=	sqwebmail
XPORTVERSION=	3.3.5
XCATEGORIES=	mail www
XMASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
XMASTER_SITE_SUBDIR= courier
X
XMAINTAINER=	nbm@FreeBSD.org
X
X#
X# User-serviceable variables
X#
X# [ There's no need to add trailing ``/''s ]
X#
X# set CGIBINDIR to where you'd like the cgi to be placed
X# set CGIBINSUBDIR to subdirectory of CGIBINDIR, if necessary
X# set WEBDATADIR to where you'd like web pages to be placed
X# set WEBDATASUBDIR to where you'd like web pages to be placed
X# set IMAGEURL to where on the web server URL the images are found
X#
X
XCGIBINDIR?=	${PREFIX}/www/cgi-bin.default
XCGIBINSUBDIR?=	sqwebmail
XWEBDATADIR?=	${PREFIX}/www/data.default
XWEBDATASUBDIR?=	sqwebmail
XIMAGEURL?=	${WEBDATASUBDIR}
X
X#
X# set WITHOUT_CACHEDIR to disable the cache dir (can't set it with WITH_LDAP)
X# set CACHEOWNER to who you'd like to own the cache files
X# set CACHEDIR to where you'd like your cache directory to be
X# set WITH_LDAP for LDAP authentication and addressbook support
X# set WITH_VCHKPW for vpopmail authentication
X# set WITH_ISPELL to provide spell-checking
X# set WITH_MIMETYPES to enable the search for a mime.types file
X# set VCHKPW to the home of the vpopmail user, if necessary
X#
X
XCACHEDIR?=	/var/sqwebmail/cache
XCACHEOWNER?=	bin
XVCHKPWLOC?=	${LOCALBASE}/vpopmail
X
X# End of user variables
X
XHAS_CONFIGURE=	YES
X
XCONFIGURE_ARGS= \
X	--enable-cgibindir=${CGIBINDIR}/${CGIBINSUBDIR} \
X	--enable-imagedir=${WEBDATADIR}/${WEBDATASUBDIR} \
X	--without-authmysql \
X	--libexecdir=${PREFIX}/libexec/sqwebmail \
X	--mandir=${PREFIX}/share/sqwebmail/man/ \
X	--prefix=${PREFIX}/share/sqwebmail \
X	--enable-imageurl=/${IMAGEURL}/
X
X.if defined(WITHOUT_CACHEDIR)
XPLIST_SUB+=		CACHE="@comment "
XCONFIGURE_ARGS+=	--without-cachedir
X.else
XPLIST_SUB+=		CACHE=""
XCONFIGURE_ARGS+=	--with-cachedir=${CACHEDIR} \
X			--with-cacheowner=${CACHEOWNER}
X.endif
X
X.if defined(WITH_LDAP)
XLIB_DEPENDS+=		ldap.1:${PORTSDIR}/net/openldap
XCONFIGURE_ARGS+=	--with-authldap
XCONFIGURE_ENV+=		CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \
X			LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib"
X.else
XCONFIGURE_ARGS+=	--without-authldap
X.endif
X
X.if defined(WITH_VCHKPW)
XBUILD_DEPENDS+= ${VCHKPWLOC}/lib/libvpopmail.a:${PORTSDIR}/mail/vpopmail
XRUN_DEPENDS+=	${VCHKPWLOC}/bin/vchkpw:${PORTSDIR}/mail/vpopmail
X
XCONFIGURE_ARGS+=	--with-authvchkpw
XPLIST_SUB+=		VPOPMAILFLAG=""
X.else
XCONFIGURE_ARGS+=	--without-authvchkpw
XPLIST_SUB+=		VPOPMAILFLAG="@comment "
X.endif
X
X.if defined(WITH_MYSQL)
XCONFIGURE_ARGS+=	--with-authmysql
XPLIST_SUB+=		MYSQLFLAG=""
X.else
XCONFIGURE_ARGS+=	--without-authmysql
XPLIST_SUB+=		MYSQLFLAG="@comment "
X.endif
X
X.if defined(WITH_POSTGRESQL)
XCONFIGURE_ARGS+=	--with-authpgsql
XPLIST_SUB+=		PGSQLFLAG=""
X.else
XCONFIGURE_ARGS+=	--without-authpgsql
XPLIST_SUB+=		PGSQLFLAG="@comment "
X.endif
X
X.if defined(WITH_ISPELL)
XBUILD_DEPENDS+=	${LOCALBASE}/bin/ispell:${PORTSDIR}/textproc/ispell
XRUN_DEPENDS+=	${LOCALBASE}/bin/ispell:${PORTSDIR}/textproc/ispell
X
XCONFIGURE_ARGS+=	--with-ispell=${LOCALBASE}/bin/ispell
X.else
XCONFIGURE_ARGS+=	--without-ispell
X.endif
X
X.if !defined(WITH_MIMETYPES)
XCONFIGURE_ARGS+=	--disable-mimetypes
X.endif
X
XMANPREFIX=	${PREFIX}/share/sqwebmail
XMAN1=		maildirmake.1
XMAN8=		makeuserdb.8 userdb.8 userdbpw.8
XMAN7=		authlib.7
X
XMANPREFIX=	${PREFIX}/share/sqwebmail
XMAN1=		maildirmake.1
XMAN8=		makeuserdb.8 userdb.8 userdbpw.8
XMAN7=		authlib.7
XMLINKS=		authlib.7 authcram.7 \
X		authlib.7 authdaemon.7 \
X		authlib.7 authdaemond.7 \
X		authlib.7 authldap.7 \
X		authlib.7 authpam.7 \
X		authlib.7 authpwd.7 \
X		authlib.7 authshadow.7 \
X		authlib.7 authuserdb.7 \
X		authlib.7 authvchkpw.7 \
X		authlib.7 authmysql.7.7 \
X		makeuserdb.8 pw2userdb.8 \
X		makeuserdb.8 vchkpw2userdb.8
X
XCONFIGURE_ARGS+=	${CONFIGURE_TARGET}
X
X.include <bsd.port.mk>
END-of-sqwebmail/Makefile
echo x - sqwebmail/distinfo
sed 's/^X//' >sqwebmail/distinfo << 'END-of-sqwebmail/distinfo'
XMD5 (sqwebmail-3.3.5.tar.gz) = 600a895ecc7b0ff6f1737dd7a0217243
END-of-sqwebmail/distinfo
echo x - sqwebmail/pkg-comment
sed 's/^X//' >sqwebmail/pkg-comment << 'END-of-sqwebmail/pkg-comment'
XCGI Webmail client for Maildirs
END-of-sqwebmail/pkg-comment
echo x - sqwebmail/pkg-descr
sed 's/^X//' >sqwebmail/pkg-descr << 'END-of-sqwebmail/pkg-descr'
XSqWebMail is a web CGI client for sending and receiving E-mail using
XMaildir mailboxes.  It DOES NOT support traditional Mailbox files - only
XMaildirs.
X
XFeatures:
X
X. Very lightweight
X. Hierarchical mail folders
X. Virtual accounts
X. vpopmail authentication
X
XWWW:	http://inter7.com/sqwebmail/
END-of-sqwebmail/pkg-descr
echo x - sqwebmail/pkg-plist
sed 's/^X//' >sqwebmail/pkg-plist << 'END-of-sqwebmail/pkg-plist'
Xlibexec/sqwebmail/sqwebmail/maildirmake
Xlibexec/sqwebmail/sqwebmail/deliverquota
Xlibexec/sqwebmail/sqwebmail/reformime
Xlibexec/sqwebmail/sqwebmail/makemime
Xlibexec/sqwebmail/sqwebmail/mimegpg
Xlibexec/sqwebmail/sqwebmail/pcpd
Xlibexec/sqwebmail/sqwebmail/makedatprog
Xlibexec/sqwebmail/authlib/authdaemon
Xlibexec/sqwebmail/authlib/authdaemond.plain
Xlibexec/sqwebmail/authlib/authdaemond
Xlibexec/sqwebmail/authlib/authdaemon.passwd
Xlibexec/sqwebmail/authlib/authsystem.passwd
Xshare/sqwebmail/man/man7/authpwd.7.gz
Xshare/sqwebmail/man/man7/authshadow.7.gz
Xshare/sqwebmail/man/man7/authuserdb.7.gz
Xshare/sqwebmail/man/man7/authvchkpw.7.gz
Xshare/sqwebmail/man/man7/authmysql.7.7.gz
Xshare/sqwebmail/man/man7/authldap.7.gz
Xshare/sqwebmail/man/man7/authmysql.7
Xshare/sqwebmail/man/man7/authdaemon.7.gz
Xshare/sqwebmail/man/man7/authpam.7.gz
Xshare/sqwebmail/man/man7/authcram.7.gz
Xshare/sqwebmail/man/man7/authdaemond.7.gz
Xshare/sqwebmail/man/man8/deliverquota.8
Xshare/sqwebmail/man/man8/pw2userdb.8.gz
Xshare/sqwebmail/man/man8/vchkpw2userdb.8.gz
Xshare/sqwebmail/authdaemonrc.dist
Xshare/sqwebmail/lib/charset.alias
Xshare/sqwebmail/share/locale/locale.alias
Xshare/sqwebmail/html/en-us/LOCALE
Xshare/sqwebmail/html/en-us/LANGUAGE
Xshare/sqwebmail/html/en-us/LANGUAGE_PREF
Xshare/sqwebmail/html/en-us/ISPELLDICT
Xshare/sqwebmail/html/en-us/CHARSET
Xshare/sqwebmail/html/en-us/TIMEZONELIST
Xshare/sqwebmail/html/en-us/abooklist.html
Xshare/sqwebmail/html/en-us/attachments.html
Xshare/sqwebmail/html/en-us/autoresponder.html
Xshare/sqwebmail/html/en-us/empty.html
Xshare/sqwebmail/html/en-us/eventacl.html
Xshare/sqwebmail/html/en-us/eventdaily.html
Xshare/sqwebmail/html/en-us/eventdelete.html
Xshare/sqwebmail/html/en-us/eventmonthly.html
Xshare/sqwebmail/html/en-us/eventshow.html
Xshare/sqwebmail/html/en-us/eventweekly.html
Xshare/sqwebmail/html/en-us/expired.html
Xshare/sqwebmail/html/en-us/folder.html
Xshare/sqwebmail/html/en-us/folders.html
Xshare/sqwebmail/html/en-us/index.html
Xshare/sqwebmail/html/en-us/invalid.html
Xshare/sqwebmail/html/en-us/keyimport.html
Xshare/sqwebmail/html/en-us/login.html
Xshare/sqwebmail/html/en-us/filter.html
Xshare/sqwebmail/html/en-us/ldaplist.html
Xshare/sqwebmail/html/en-us/ldapsearch.html
Xshare/sqwebmail/html/en-us/newevent.html
Xshare/sqwebmail/html/en-us/newmsg.html
Xshare/sqwebmail/html/en-us/preferences.html
Xshare/sqwebmail/html/en-us/printnocookie.html
Xshare/sqwebmail/html/en-us/printredirect.html
Xshare/sqwebmail/html/en-us/quickadd.html
Xshare/sqwebmail/html/en-us/print.html
Xshare/sqwebmail/html/en-us/readmsg.html
Xshare/sqwebmail/html/en-us/redirect.html
Xshare/sqwebmail/html/en-us/spellchk.html
Xshare/sqwebmail/html/en-us/gpg.html
Xshare/sqwebmail/html/en-us/gpgcreate.html
Xshare/sqwebmail/html/en-us/gpgerr.html
Xshare/sqwebmail/html/en-us/navbar.inc.html
Xshare/sqwebmail/html/en-us/navbar2.inc.html
Xshare/sqwebmail/html/en-us/navbar3.inc.html
Xshare/sqwebmail/html/en-us/calendarlogin.inc.html
Xshare/sqwebmail/html/en-us/eventnotifynew.txt
Xshare/sqwebmail/html/en-us/eventnotifydelete.txt
Xshare/sqwebmail/html/en-us/eventnotifysubject.txt
Xshare/sqwebmail/html/en
Xshare/sqwebmail/ldapaddressbook.dist
Xshare/sqwebmail/sendit.sh
Xshare/sqwebmail/cleancache.pl
Xshare/sqwebmail/ldapsearch
Xshare/sqwebmail/webgpg
Xshare/sqwebmail/authmodulelist
Xshare/sqwebmail/sbin/userdb
Xshare/sqwebmail/sbin/vchkpw2userdb
Xshare/sqwebmail/sbin/makeuserdb
Xshare/sqwebmail/sbin/userdbpw
Xshare/sqwebmail/sbin/pw2userdb
Xwww/cgi-bin.default/sqwebmail/sqwebmail
Xwww/data.default/sqwebmail/bg.gif
Xwww/data.default/sqwebmail/bluebottomleft.gif
Xwww/data.default/sqwebmail/bluebottomright.gif
Xwww/data.default/sqwebmail/bluetopleft.gif
Xwww/data.default/sqwebmail/bluetopright.gif
Xwww/data.default/sqwebmail/calendar.gif
Xwww/data.default/sqwebmail/cancel.gif
Xwww/data.default/sqwebmail/folder.gif
Xwww/data.default/sqwebmail/folder2.gif
Xwww/data.default/sqwebmail/folders.gif
Xwww/data.default/sqwebmail/forward.gif
Xwww/data.default/sqwebmail/forwardatt.gif
Xwww/data.default/sqwebmail/fullheaders.gif
Xwww/data.default/sqwebmail/graybottomleft.gif
Xwww/data.default/sqwebmail/graybottomright.gif
Xwww/data.default/sqwebmail/graytopleft.gif
Xwww/data.default/sqwebmail/graytopright.gif
Xwww/data.default/sqwebmail/left.gif
Xwww/data.default/sqwebmail/left2.gif
Xwww/data.default/sqwebmail/logo.gif
Xwww/data.default/sqwebmail/print.gif
Xwww/data.default/sqwebmail/reply.gif
Xwww/data.default/sqwebmail/replyall.gif
Xwww/data.default/sqwebmail/replylist.gif
Xwww/data.default/sqwebmail/right.gif
Xwww/data.default/sqwebmail/right2.gif
Xwww/data.default/sqwebmail/save.gif
Xwww/data.default/sqwebmail/sep.gif
Xwww/data.default/sqwebmail/signin.gif
Xwww/data.default/sqwebmail/trash2.gif
Xwww/data.default/sqwebmail/uncancel.gif
Xwww/data.default/sqwebmail/sqwebmail.css
X@dirrm libexec/sqwebmail/sqwebmail
X@dirrm libexec/sqwebmail/authlib
X@dirrm libexec/sqwebmail
X@dirrm share/sqwebmail/man/man7
X@dirrm share/sqwebmail/man/man1
X@dirrm share/sqwebmail/man/man8
X@dirrm share/sqwebmail/man
X@dirrm share/sqwebmail/lib
X@dirrm share/sqwebmail/share/locale
X@dirrm share/sqwebmail/share
X@dirrm share/sqwebmail/var/calendar/public
X@dirrm share/sqwebmail/var/calendar/private
X@dirrm share/sqwebmail/var/calendar/localcache
X@dirrm share/sqwebmail/var/calendar
X@dirrm share/sqwebmail/var/authdaemon
X@dirrm share/sqwebmail/var
X@dirrm share/sqwebmail/html/en-us
X@dirrm share/sqwebmail/html
X@dirrm share/sqwebmail/sbin
X@dirrm share/sqwebmail
X@dirrm www/cgi-bin.default/sqwebmail
X@dirrm www/data.default/sqwebmail
END-of-sqwebmail/pkg-plist
echo x - sqwebmail/pkg-message
sed 's/^X//' >sqwebmail/pkg-message << 'END-of-sqwebmail/pkg-message'
X---------------------------------------------------------
X- copy ${PREFIX}/share/sqwebmail/authdaemonrc.dist 
X- to ${PREFIX}/share/sqwebmail/authdaemonrc
X- and make the modifications you need
X- add "authvchkpw" to the "authmodulelist" line to make
X- vpopmail authentication work.
X---------------------------------------------------------
END-of-sqwebmail/pkg-message
exit
--- sqwebmail.shar ends here ---

>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?20020625025856.36767.qmail>