diff options
author | pav <pav@FreeBSD.org> | 2006-04-30 21:07:44 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2006-04-30 21:07:44 +0800 |
commit | 1bb38b83ab6caf689cba079433426f8f2cb15f42 (patch) | |
tree | 6ff1fea4484ef7411467896a1b567576e334153a /mail/sylpheed-claws-maildir | |
parent | c4efaabfdcece11a273818da2939b9ce55453dc8 (diff) | |
download | freebsd-ports-gnome-1bb38b83ab6caf689cba079433426f8f2cb15f42.tar.gz freebsd-ports-gnome-1bb38b83ab6caf689cba079433426f8f2cb15f42.tar.zst freebsd-ports-gnome-1bb38b83ab6caf689cba079433426f8f2cb15f42.zip |
This plugin provides direct support for Maildir++ mailboxes.
With this plugin you can share your Maildir++ mailbox with other
mailers or IMAP servers.
PR: ports/95455
Submitted by: Pawel Pekala <c0rn@o2.pl>
Diffstat (limited to 'mail/sylpheed-claws-maildir')
-rw-r--r-- | mail/sylpheed-claws-maildir/Makefile | 32 | ||||
-rw-r--r-- | mail/sylpheed-claws-maildir/distinfo | 3 | ||||
-rw-r--r-- | mail/sylpheed-claws-maildir/files/patch-configure.ac | 24 | ||||
-rw-r--r-- | mail/sylpheed-claws-maildir/pkg-descr | 3 |
4 files changed, 62 insertions, 0 deletions
diff --git a/mail/sylpheed-claws-maildir/Makefile b/mail/sylpheed-claws-maildir/Makefile new file mode 100644 index 000000000000..f5f4401d99f7 --- /dev/null +++ b/mail/sylpheed-claws-maildir/Makefile @@ -0,0 +1,32 @@ +# New ports collection makefile for: sylpheed-claws-maildir +# Date created: 3 April 2006 +# Whom: Pawel Pekala <c0rn@o2.pl> +# +# $FreeBSD$ +# + +PORTNAME= maildir +PORTVERSION= 0.20 +CATEGORIES= mail +MASTER_SITES= http://claws.sylpheed.org/downloads/plugins/ +PKGNAMEPREFIX= sylpheed-claws- + +MAINTAINER= c0rn@o2.pl +COMMENT= Maildir++ plugin for sylpheed-claws + +BUILD_DEPENDS= sylpheed-claws>=2.0:${PORTSDIR}/mail/sylpheed-claws +RUN_DEPENDS= sylpheed-claws>=2.0:${PORTSDIR}/mail/sylpheed-claws + +USE_GMAKE= yes +USE_X_PREFIX= yes +USE_AUTOTOOLS= autoconf:259 +USE_BDB= yes + +CONFIGURE_ENV= CFLAGS="-I${BDB_INCLUDE_DIR}" \ + LDFLAGS="-l${BDB_LIB_NAME} -L${BDB_LIB_DIR}" + +PLIST_FILES= lib/sylpheed-claws/plugins/maildir.a \ + lib/sylpheed-claws/plugins/maildir.la \ + lib/sylpheed-claws/plugins/maildir.so + +.include <bsd.port.mk> diff --git a/mail/sylpheed-claws-maildir/distinfo b/mail/sylpheed-claws-maildir/distinfo new file mode 100644 index 000000000000..e23eb0fa71c7 --- /dev/null +++ b/mail/sylpheed-claws-maildir/distinfo @@ -0,0 +1,3 @@ +MD5 (maildir-0.20.tar.gz) = 14678362400c69f5ea2cb19ca45fba3b +SHA256 (maildir-0.20.tar.gz) = f12e54a80ad4291de7800787fe9ad43096f13ac98a862295cb6ff3856eec2987 +SIZE (maildir-0.20.tar.gz) = 337961 diff --git a/mail/sylpheed-claws-maildir/files/patch-configure.ac b/mail/sylpheed-claws-maildir/files/patch-configure.ac new file mode 100644 index 000000000000..12955e6651e9 --- /dev/null +++ b/mail/sylpheed-claws-maildir/files/patch-configure.ac @@ -0,0 +1,24 @@ +--- configure.ac.orig Mon Feb 13 09:04:05 2006 ++++ configure.ac Sun Apr 30 00:25:32 2006 +@@ -28,7 +28,11 @@ + # Check for sylpheed-claws + # + PKG_CHECK_MODULES(SYLPHEED_CLAWS, sylpheed-claws >= 1.9.100.160) +-SYLPHEED_CLAWS_PLUGINDIR=$( $PKG_CONFIG --variable=plugindir sylpheed-claws ) ++if test -z $prefix ; then ++ SYLPHEED_CLAWS_PLUGINDIR=$( $PKG_CONFIG --variable=plugindir sylpheed-claws ) ++else ++ SYLPHEED_CLAWS_PLUGINDIR=$prefix/lib/sylpheed-claws/plugins ++fi + AC_SUBST(SYLPHEED_CLAWS_CFLAGS) + AC_SUBST(SYLPHEED_CLAWS_LIBS) + AC_SUBST(SYLPHEED_CLAWS_PLUGINDIR) +@@ -88,7 +92,7 @@ + case "$DBVERS" in + 3) + AC_MSG_RESULT([version 3.x or above]) +- for lib in db-4.2 db-4.1 db-4.0 db-4 db4 db-3.2 db-3 db3 db; do ++ for lib in db-4.4 db-4.3 db-4.2 db41 db-4.0 db-4 db4 db-3.2 db-3 db3 db; do + if test "x$DBLINKED" = "x0"; then + dnl AC_CHECK_LIB($lib, db_create, [DBLIB="-l$lib"; DBLINKED=1], []) + dnl installations of libdb4 function names are defined in db.h diff --git a/mail/sylpheed-claws-maildir/pkg-descr b/mail/sylpheed-claws-maildir/pkg-descr new file mode 100644 index 000000000000..5c0db8cba099 --- /dev/null +++ b/mail/sylpheed-claws-maildir/pkg-descr @@ -0,0 +1,3 @@ +This plugin provides direct support for Maildir++ mailboxes. +With this plugin you can share your Maildir++ mailbox with other +mailers or IMAP servers. |