On Tue, Mar 5, 2013 at 1:05 AM, Stuart Henderson <[email protected]> wrote: > Updated diff for the libs here, only real change from what I had > before is adding gettext MODULES for vanessa_socket. I don't recall > whether these lib versions work with the old perdition or not.
Sorry for taking a while to get back on this. I've been working to get
the libraries as well as perdition updated to a version that allows my
Thunderbird clients to connect properly via SSL (a known issue with
1.17.1) I've tested on amd64 -current (dated Mar 1st, 2013) and all
seems to work fine.
Attached are diffs for the vanessa libraries (borrowing Stuart's work
[1], with slightly hand-modified PLISTS) as well as for perdition
(1.19rc5). Please advise if I shouldn't separate out shared items into
PFRAG.shared.
I've shamelessly copied Stuart's approach [2] to renaming strcasestr()
to avoid clashing with OpenBSD's libc implementation. During testing,
I ran into a problem with the default value of authenticate_timeout
(1800s) that causes EDOM on setsockopt() with SO_RCVTIMEO. I've
changed the default in the code and updated the manual. Is this an
acceptable fix? I'll happily contact the author otherwise. Anyway,
1800 seconds of idle time before authentication seems a bit.. much.
And yes, once I get around to it, I'll zap the spurious
PERMIT_PACKAGE_* and PERMIT_DISTFILE_* lines.
Diffs are below; tarballs include the new patches. Should gmail mangle
the text, I've placed them online as well:
Vanessa libs: http://pastebin.com/r9DkEAUg
Perdition 1.19rc5: http://pastebin.com/n8uSh8RR
Comments welcome,
Regards,
Rogier
References:
1. MARC / "openbsd-ports - ''make makesum' only generates SHA256 checksum'"
http://marc.info/?l=openbsd-ports&m=136244196517699&w=2
2. Nabble / "openbsd user - ports - perdition error on sparc64 only"
http://openbsd.7691.n7.nabble.com/perdition-error-on-sparc64-only-td117057.html
Index: Makefile.inc
===================================================================
RCS file: /cvs/ports/devel/vanessa/Makefile.inc,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 Makefile.inc
--- Makefile.inc 6 Nov 2006 10:57:38 -0000 1.1.1.1
+++ Makefile.inc 14 Mar 2013 12:51:03 -0000
@@ -1,22 +1,21 @@
-# $OpenBSD: Makefile.inc,v 1.1.1.1 2006/11/06 10:57:38 msf Exp $
+# $OpenBSD$
-CATEGORIES?= devel
+CATEGORIES ?= devel
-HOMEPAGE?= http://www.vergenet.net/linux/vanessa/
+HOMEPAGE ?= http://www.vergenet.net/linux/vanessa/
-# GPL
-PERMIT_PACKAGE_CDROM= Yes
-PERMIT_PACKAGE_FTP= Yes
-PERMIT_DISTFILES_CDROM= Yes
-PERMIT_DISTFILES_FTP= Yes
+# LGPLv2+
+PERMIT_PACKAGE_CDROM = Yes
+PERMIT_PACKAGE_FTP = Yes
+PERMIT_DISTFILES_CDROM = Yes
+PERMIT_DISTFILES_FTP = Yes
-MASTER_SITE_VANESSA?= ${HOMEPAGE}download/
+MASTER_SITE_VANESSA ?= ${HOMEPAGE}download/
-USE_LIBTOOL?= Yes
+USE_LIBTOOL ?= Yes
-CONFIGURE_STYLE?= gnu
+CONFIGURE_STYLE ?= gnu
-NO_REGRESS?= Yes
-
-CONFIGURE_ENV?= CPPFLAGS="-I${LOCALBASE}/include" \
+CONFIGURE_ARGS ?= --disable-silent-rules
+CONFIGURE_ENV ?= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
Index: adt/Makefile
===================================================================
RCS file: /cvs/ports/devel/vanessa/adt/Makefile,v
retrieving revision 1.4
diff -u -r1.4 Makefile
--- adt/Makefile 15 Nov 2010 19:46:09 -0000 1.4
+++ adt/Makefile 14 Mar 2013 12:51:03 -0000
@@ -1,15 +1,15 @@
-# $OpenBSD: Makefile,v 1.4 2010/11/15 19:46:09 espie Exp $
+# $OpenBSD$
-COMMENT= provides abstract data types (ADTs)
+COMMENT = provides abstract data types (ADTs)
-VERSION= 0.0.6
-DISTNAME= vanessa_adt-${VERSION}
+VERSION = 0.0.9
+DISTNAME = vanessa_adt-${VERSION}
-SHARED_LIBS= vanessa_adt 0.3 # 0.3
+SHARED_LIBS = vanessa_adt 0.4 # 0.4
-MASTER_SITES= ${MASTER_SITE_VANESSA:=vanessa_adt/${VERSION}/}
+MASTER_SITES = ${MASTER_SITE_VANESSA:=vanessa_adt/${VERSION}/}
-LIB_DEPENDS= devel/vanessa/logger
-WANTLIB = vanessa_logger>=0.3
+LIB_DEPENDS = devel/vanessa/logger>=0.0.10
+WANTLIB = vanessa_logger>=0.4
.include <bsd.port.mk>
Index: adt/distinfo
===================================================================
RCS file: /cvs/ports/devel/vanessa/adt/distinfo,v
retrieving revision 1.2
diff -u -r1.2 distinfo
--- adt/distinfo 5 Apr 2007 15:38:07 -0000 1.2
+++ adt/distinfo 14 Mar 2013 12:51:03 -0000
@@ -1,5 +1,2 @@
-MD5 (vanessa_adt-0.0.6.tar.gz) = BpEFdVwcVFDR+nqMMZ4I7Q==
-RMD160 (vanessa_adt-0.0.6.tar.gz) = LJmZQxBdwFp+j6L0zd68lCen8dk=
-SHA1 (vanessa_adt-0.0.6.tar.gz) = SCMjKqG2MAA8pLE1BSnlHN7kmsE=
-SHA256 (vanessa_adt-0.0.6.tar.gz) =
Z6WuGRoGftRqSSLRVTGf08mHLnqDVEwqKMDV+2kgYCQ=
-SIZE (vanessa_adt-0.0.6.tar.gz) = 315242
+SHA256 (vanessa_adt-0.0.9.tar.gz) =
i8u2n2RwIjkBBUHsfX/YZzdXS2ri+kd8qlss2GoSw/E=
+SIZE (vanessa_adt-0.0.9.tar.gz) = 342309
Index: logger/Makefile
===================================================================
RCS file: /cvs/ports/devel/vanessa/logger/Makefile,v
retrieving revision 1.3
diff -u -r1.3 Makefile
--- logger/Makefile 18 Oct 2010 17:48:13 -0000 1.3
+++ logger/Makefile 14 Mar 2013 12:51:03 -0000
@@ -1,15 +1,15 @@
-# $OpenBSD: Makefile,v 1.3 2010/10/18 17:48:13 espie Exp $
+# $OpenBSD$
-COMMENT= provides a generic logging layer
+COMMENT = provides a generic logging layer
-VERSION= 0.0.7
-DISTNAME= vanessa_logger-${VERSION}
+VERSION = 0.0.10
+DISTNAME = vanessa_logger-${VERSION}
-SHARED_LIBS= vanessa_logger 0.3 # 0.3
+SHARED_LIBS = vanessa_logger 0.4 # 0.4
-MASTER_SITES= ${MASTER_SITE_VANESSA:=vanessa_logger/${VERSION}/}
+MASTER_SITES = ${MASTER_SITE_VANESSA:=vanessa_logger/${VERSION}/}
USE_GROFF = Yes
-WANTLIB= c
+WANTLIB = c
.include <bsd.port.mk>
Index: logger/distinfo
===================================================================
RCS file: /cvs/ports/devel/vanessa/logger/distinfo,v
retrieving revision 1.2
diff -u -r1.2 distinfo
--- logger/distinfo 5 Apr 2007 15:38:07 -0000 1.2
+++ logger/distinfo 14 Mar 2013 12:51:03 -0000
@@ -1,5 +1,2 @@
-MD5 (vanessa_logger-0.0.7.tar.gz) = oyRdsaGBaUBK/+zCQixkpg==
-RMD160 (vanessa_logger-0.0.7.tar.gz) = kdUogXVrAxLqWZOVbJeIliqc3Iw=
-SHA1 (vanessa_logger-0.0.7.tar.gz) = XPDQ/hAxFdwl9ZGQIWocswK3xic=
-SHA256 (vanessa_logger-0.0.7.tar.gz) =
ZTI79nPL6Uxwd/e8R1+V7yWhjVH5alnPpGOhiw5ogdA=
-SIZE (vanessa_logger-0.0.7.tar.gz) = 303977
+SHA256 (vanessa_logger-0.0.10.tar.gz) =
mw4SzdnigYGMKNrsW8RFSnaT3zzJNdwr15NEMWGpBz0=
+SIZE (vanessa_logger-0.0.10.tar.gz) = 328814
Index: logger/pkg/PFRAG.shared
===================================================================
RCS file: /cvs/ports/devel/vanessa/logger/pkg/PFRAG.shared,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 PFRAG.shared
--- logger/pkg/PFRAG.shared 6 Nov 2006 10:57:38 -0000 1.1.1.1
+++ logger/pkg/PFRAG.shared 14 Mar 2013 12:51:03 -0000
@@ -1,2 +1,2 @@
-@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2006/11/06 10:57:38 msf Exp $
+@comment $OpenBSD$
@lib lib/libvanessa_logger.so.${LIBvanessa_logger_VERSION}
Index: logger/pkg/PLIST
===================================================================
RCS file: /cvs/ports/devel/vanessa/logger/pkg/PLIST,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 PLIST
--- logger/pkg/PLIST 6 Nov 2006 10:57:38 -0000 1.1.1.1
+++ logger/pkg/PLIST 14 Mar 2013 12:51:03 -0000
@@ -1,7 +1,8 @@
-@comment $OpenBSD: PLIST,v 1.1.1.1 2006/11/06 10:57:38 msf Exp $
+@comment $OpenBSD$
%%SHARED%%
-bin/vanessa_logger_sample
+@bin bin/vanessa_logger_sample
include/vanessa_logger.h
lib/libvanessa_logger.a
lib/libvanessa_logger.la
+lib/pkgconfig/vanessa-logger.pc
@man man/man1/vanessa_logger_sample.1
Index: socket/Makefile
===================================================================
RCS file: /cvs/ports/devel/vanessa/socket/Makefile,v
retrieving revision 1.5
diff -u -r1.5 Makefile
--- socket/Makefile 15 Nov 2010 19:46:09 -0000 1.5
+++ socket/Makefile 14 Mar 2013 12:51:03 -0000
@@ -1,18 +1,18 @@
-# $OpenBSD: Makefile,v 1.5 2010/11/15 19:46:09 espie Exp $
+# $OpenBSD$
-COMMENT= provides abstract data types (ADTs)
+COMMENT = provides simplified TCP/IP socket operations
-VERSION= 0.0.7
-DISTNAME= vanessa_socket-${VERSION}
+VERSION = 0.0.12
+DISTNAME = vanessa_socket-${VERSION}
-SHARED_LIBS= vanessa_socket 0.4 # 0.4
+SHARED_LIBS = vanessa_socket 0.4 # 0.4
-MASTER_SITES= ${MASTER_SITE_VANESSA:=vanessa_socket/${VERSION}/}
-
-WANTLIB= c vanessa_logger>=0.3 popt
+MASTER_SITES = ${MASTER_SITE_VANESSA:=vanessa_socket/${VERSION}/}
USE_GROFF = Yes
-LIB_DEPENDS= devel/vanessa/logger \
+LIB_DEPENDS = devel/vanessa/logger>=0.0.10 \
devel/popt
+MODULES = devel/gettext
+WANTLIB = c vanessa_logger>=0.4 popt
.include <bsd.port.mk>
Index: socket/distinfo
===================================================================
RCS file: /cvs/ports/devel/vanessa/socket/distinfo,v
retrieving revision 1.2
diff -u -r1.2 distinfo
--- socket/distinfo 5 Apr 2007 15:38:07 -0000 1.2
+++ socket/distinfo 14 Mar 2013 12:51:03 -0000
@@ -1,5 +1,2 @@
-MD5 (vanessa_socket-0.0.7.tar.gz) = kowxisdGAUEv8jEjTh2nyQ==
-RMD160 (vanessa_socket-0.0.7.tar.gz) = OLjCShiVGy8WEYTlXxVssvHxby8=
-SHA1 (vanessa_socket-0.0.7.tar.gz) = zTKYj/1fhGN7t/RyXVqlacw/P+I=
-SHA256 (vanessa_socket-0.0.7.tar.gz) =
2P3FM5EVkRWBx2PSzJv05xwM1MB/YJPwJLt65uO4mQc=
-SIZE (vanessa_socket-0.0.7.tar.gz) = 321042
+SHA256 (vanessa_socket-0.0.12.tar.gz) =
gJ8R2pUHxp1yg55nIUnTkcA2vlfNScyaNaxkve+/Ubw=
+SIZE (vanessa_socket-0.0.12.tar.gz) = 346375
Index: socket/pkg/PLIST
===================================================================
RCS file: /cvs/ports/devel/vanessa/socket/pkg/PLIST,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 PLIST
--- socket/pkg/PLIST 6 Nov 2006 10:57:38 -0000 1.1.1.1
+++ socket/pkg/PLIST 14 Mar 2013 12:51:03 -0000
@@ -1,7 +1,8 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2006/11/06 10:57:38 msf Exp $
%%SHARED%%
-bin/vanessa_socket_pipe
+@bin bin/vanessa_socket_pipe
include/vanessa_socket.h
lib/libvanessa_socket.a
lib/libvanessa_socket.la
+lib/pkgconfig/vanessa-socket.pc
@man man/man1/vanessa_socket_pipe.1
? patches/patch-perdition_options_h
? patches/patch-perdition_pam_c
? patches/patch-perdition_perdition_8
? patches/patch-perdition_str_c
? patches/patch-perdition_str_h
Index: Makefile
===================================================================
RCS file: /cvs/ports/mail/perdition/Makefile,v
retrieving revision 1.15
diff -u -r1.15 Makefile
--- Makefile 9 Feb 2013 14:49:51 -0000 1.15
+++ Makefile 14 Mar 2013 12:53:08 -0000
@@ -1,22 +1,18 @@
-# $OpenBSD: Makefile,v 1.15 2013/02/09 14:49:51 sthen Exp $
+# $OpenBSD$
-COMMENT-main= fully featured POP3 and IMAP4 proxy server
-COMMENT-ldap= LDAP backend for perdition mail proxy
-COMMENT-mysql= MySQL backend for perdition mail proxy
-COMMENT-pgsql= PostgreSQL backend for perdition mail proxy
-
-DISTVER= 1.17.1
-DISTNAME= perdition-${DISTVER}
-PKGNAME-main= ${DISTNAME}
-PKGNAME-ldap= perdition-ldap-${DISTVER}
-REVISION-main = 2
-REVISION-ldap = 1
-REVISION-mysql = 0
-REVISION-pgsql = 0
-PKGNAME-mysql= perdition-mysql-${DISTVER}
-PKGNAME-pgsql= perdition-pgsql-${DISTVER}
+COMMENT-main = fully featured POP3 and IMAP4 proxy server
+COMMENT-ldap = LDAP backend for perdition mail proxy
+COMMENT-mysql = MySQL backend for perdition mail proxy
+COMMENT-pgsql = PostgreSQL backend for perdition mail proxy
+
+DISTVER = 1.19-rc5
+DISTNAME = perdition-${DISTVER}
+PKGNAME-main = ${DISTNAME}
+PKGNAME-ldap = perdition-ldap-${DISTVER}
+PKGNAME-mysql = perdition-mysql-${DISTVER}
+PKGNAME-pgsql = perdition-pgsql-${DISTVER}
-CATEGORIES= mail
+CATEGORIES = mail
SHARED_LIBS += jain 0.0 # .0.0
SHARED_LIBS += perditiondb_bdb 0.0 # .0.0
@@ -25,25 +21,26 @@
SHARED_LIBS += perditiondb_daemon 0.0 # .0.0
SHARED_LIBS += perditiondb_daemon_base 0.0 # .0.0
-HOMEPAGE= http://www.vergenet.net/linux/perdition/
+HOMEPAGE = http://www.vergenet.net/linux/perdition/
-# GPL
-PERMIT_PACKAGE_CDROM= Yes
-PERMIT_PACKAGE_FTP= Yes
-PERMIT_DISTFILES_CDROM= Yes
-PERMIT_DISTFILES_FTP= Yes
+# GPLv2+
+PERMIT_PACKAGE_CDROM = Yes
+PERMIT_PACKAGE_FTP = Yes
+PERMIT_DISTFILES_CDROM = Yes
+PERMIT_DISTFILES_FTP = Yes
-MASTER_SITES= ${HOMEPAGE}download/${DISTVER}/
+MASTER_SITES = ${HOMEPAGE}download/${DISTVER}/
-USE_GMAKE= Yes
-USE_LIBTOOL= Yes
+USE_GMAKE = Yes
+USE_LIBTOOL = Yes
USE_GROFF = Yes
-CONFIGURE_STYLE=gnu
-CFLAGS+=-I${LOCALBASE}/include -I${LOCALBASE}/include/db4
-CONFIGURE_ENV+="LDFLAGS=-L${LOCALBASE}/lib"
+CONFIGURE_STYLE = gnu
+CFLAGS += -I${LOCALBASE}/include -I${LOCALBASE}/include/db4
+CONFIGURE_ENV += "LDFLAGS=-L${LOCALBASE}/lib"
-CONFIGURE_ARGS+= --enable-ssl \
+CONFIGURE_ARGS += --disable-silent-rules \
+ --enable-ssl \
--with-ssl-includes=/usr/include \
--with-ssl-libraries=/usr/lib \
--disable-gdbm \
@@ -51,19 +48,18 @@
--with-user=_perdition \
--with-group=_perdition
-NO_REGRESS=Yes
PSEUDO_FLAVORS= no_ldap no_mysql no_pgsql
FLAVOR?=
MULTI_PACKAGES= -main
-WANTLIB-main= c crypto ssl util db>=4.2 vanessa_adt>=0.3 \
- vanessa_logger>=0.3 vanessa_socket>=0.3 popt
+WANTLIB-main= c crypto ssl util db>=4.2 vanessa_adt>=0.4 \
+ vanessa_logger>=0.4 vanessa_socket>=0.4 popt
LIB_DEPENDS-main= databases/db/v4 \
- devel/vanessa/adt \
- devel/vanessa/logger \
- devel/vanessa/socket \
+ devel/vanessa/adt>=0.0.9 \
+ devel/vanessa/logger>=0.0.10 \
+ devel/vanessa/socket>=0.0.12 \
devel/popt
.if ${FLAVOR:Mno_ldap}
@@ -91,7 +87,7 @@
devel/vanessa/adt \
devel/vanessa/logger
WANTLIB-mysql= crypto ssl util m z lib/mysql/mysqlclient>=10 \
- vanessa_adt>=0.3 vanessa_logger>=0.3
+ vanessa_adt>=0.4 vanessa_logger>=0.4
.endif
.if ${FLAVOR:Mno_pgsql}
@@ -103,8 +99,8 @@
LIB_DEPENDS-pgsql= databases/postgresql \
devel/vanessa/adt \
devel/vanessa/logger
-WANTLIB-pgsql= crypto ssl util pq>=2 vanessa_adt>=0.3 \
- vanessa_logger>=0.3
+WANTLIB-pgsql= crypto ssl util pq>=2 vanessa_adt>=0.4 \
+ vanessa_logger>=0.4
.endif
EXAMPLE_DIR= ${PREFIX}/share/examples/perdition/
Index: distinfo
===================================================================
RCS file: /cvs/ports/mail/perdition/distinfo,v
retrieving revision 1.3
diff -u -r1.3 distinfo
--- distinfo 8 Jun 2008 10:55:25 -0000 1.3
+++ distinfo 14 Mar 2013 12:53:08 -0000
@@ -1,5 +1,2 @@
-MD5 (perdition-1.17.1.tar.gz) = VGTFF/i+gQUZthh7aUydmA==
-RMD160 (perdition-1.17.1.tar.gz) = LqNRwYmzMDCKAi6XydzIyb04E3c=
-SHA1 (perdition-1.17.1.tar.gz) = 3f3pA/anf4A1XXie7dVLRjEQZzU=
-SHA256 (perdition-1.17.1.tar.gz) = 4qvVeqdrEGWRBW74NeJoFsccOzncVbw666bf7vrHryY=
-SIZE (perdition-1.17.1.tar.gz) = 638162
+SHA256 (perdition-1.19-rc5.tar.gz) =
dgctaV0Y5VofNOPNOM54HS8Tj4WdCLeu37y1GlxIkrU=
+SIZE (perdition-1.19-rc5.tar.gz) = 642566
Index: patches/patch-etc_perdition_perdition_conf
===================================================================
RCS file: /cvs/ports/mail/perdition/patches/patch-etc_perdition_perdition_conf,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 patch-etc_perdition_perdition_conf
--- patches/patch-etc_perdition_perdition_conf 16 Nov 2006 23:26:00
-0000 1.1.1.1
+++ patches/patch-etc_perdition_perdition_conf 14 Mar 2013 12:53:08 -0000
@@ -1,6 +1,6 @@
$OpenBSD: patch-etc_perdition_perdition_conf,v 1.1.1.1 2006/11/16
23:26:00 msf Exp $
---- etc/perdition/perdition.conf.orig Tue Nov 7 11:44:00 2006
-+++ etc/perdition/perdition.conf Tue Nov 7 11:47:50 2006
+--- etc/perdition/perdition.conf.orig Sun Feb 19 09:28:14 2012
++++ etc/perdition/perdition.conf Mon Mar 4 20:03:29 2013
@@ -132,9 +132,9 @@
# g|group GROUP:
@@ -12,9 +12,9 @@
+#g _perdition
+#group _perdition
- # I|capability|pop_capability|imap_capability STRING:
- # Capabilities for the protocol.
-@@ -258,9 +258,9 @@
+ # imap_capability STRING:
+ # Capabilities for IMAP4 and IMAP4S
+@@ -296,9 +296,9 @@
# u|username USERNAME:
# User to run as.
Index: patches/patch-perdition_db_daemon_perditiondb_daemon_c
===================================================================
RCS file:
/cvs/ports/mail/perdition/patches/patch-perdition_db_daemon_perditiondb_daemon_c,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 patch-perdition_db_daemon_perditiondb_daemon_c
--- patches/patch-perdition_db_daemon_perditiondb_daemon_c 16 Nov 2006
23:26:00 -0000 1.1.1.1
+++ patches/patch-perdition_db_daemon_perditiondb_daemon_c 14 Mar 2013
12:53:08 -0000
@@ -1,7 +1,7 @@
-$OpenBSD: patch-perdition_db_daemon_perditiondb_daemon_c,v 1.1.1.1
2006/11/16 23:26:00 msf Exp $
---- perdition/db/daemon/perditiondb_daemon.c.orig Mon Nov 13 13:28:08 2006
-+++ perdition/db/daemon/perditiondb_daemon.c Mon Nov 13 13:29:53 2006
-@@ -176,7 +176,7 @@ dbserver_get2(const char *key_str, const
+$OpenBSD$
+--- perdition/db/daemon/perditiondb_daemon.c.orig Sun Feb 19 09:28:14 2012
++++ perdition/db/daemon/perditiondb_daemon.c Mon Mar 4 20:03:29 2013
+@@ -237,7 +237,7 @@ dbserver_get2(const char *key_str, const char *UNUSED(
perdition_un_init(&sock);
Index: pkg/PFRAG.shared-main
===================================================================
RCS file: /cvs/ports/mail/perdition/pkg/PFRAG.shared-main,v
retrieving revision 1.2
diff -u -r1.2 PFRAG.shared-main
--- pkg/PFRAG.shared-main 8 Jun 2008 10:55:25 -0000 1.2
+++ pkg/PFRAG.shared-main 14 Mar 2013 12:53:08 -0000
@@ -1,5 +1,4 @@
@comment $OpenBSD: PFRAG.shared-main,v 1.2 2008/06/08 10:55:25 simon Exp $
-@lib lib/libjain.so.${LIBjain_VERSION}
@lib lib/libperditiondb_bdb.so.${LIBperditiondb_bdb_VERSION}
@lib lib/libperditiondb_daemon.so.${LIBperditiondb_daemon_VERSION}
@lib lib/libperditiondb_daemon_base.so.${LIBperditiondb_daemon_base_VERSION}
Index: pkg/PLIST-main
===================================================================
RCS file: /cvs/ports/mail/perdition/pkg/PLIST-main,v
retrieving revision 1.3
diff -u -r1.3 PLIST-main
--- pkg/PLIST-main 8 Jun 2008 10:55:25 -0000 1.3
+++ pkg/PLIST-main 14 Mar 2013 12:53:08 -0000
@@ -1,12 +1,9 @@
-@comment $OpenBSD: PLIST-main,v 1.3 2008/06/08 10:55:25 simon Exp $
+@comment $OpenBSD$
@pkgpath mail/perdition
@newgroup _perdition:573
@newuser _perdition:573:573:daemon:Perdition proxy:/var/empty:/sbin/nologin
%%SHARED%%
-bin/makebdb
-include/jain.h
-lib/libjain.a
-lib/libjain.la
+@bin bin/makebdb
lib/libperditiondb_bdb.a
lib/libperditiondb_bdb.la
lib/libperditiondb_daemon.a
@@ -23,14 +20,16 @@
@man man/man8/perdition.imap4.8
@man man/man8/perdition.imap4s.8
@man man/man8/perdition.imaps.8
+@man man/man8/perdition.managesieve.8
@man man/man8/perdition.pop3.8
@man man/man8/perdition.pop3s.8
-sbin/perdition
-sbin/perdition.imap4
-sbin/perdition.imap4s
-sbin/perdition.imaps
-sbin/perdition.pop3
-sbin/perdition.pop3s
+@bin sbin/perdition
+@bin sbin/perdition.imap4
+@bin sbin/perdition.imap4s
+@bin sbin/perdition.imaps
+@bin sbin/perdition.managesieve
+@bin sbin/perdition.pop3
+@bin sbin/perdition.pop3s
share/examples/perdition/
@sample ${SYSCONFDIR}/perdition/
share/examples/perdition/Makefile
vanessa_20130314.tgz
Description: GNU Zip compressed data
perdition-1.19rc5_20130314.tgz
Description: GNU Zip compressed data
