diff options
author | pav <pav@FreeBSD.org> | 2006-04-29 22:58:22 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2006-04-29 22:58:22 +0800 |
commit | b31c347f801f59af50df7aaa8748c4dcc2d728e8 (patch) | |
tree | f0e40923b5606feb870d32af8a5f90fb561328dd /mail/claws-mail-att_remover | |
parent | b15a94e2f48e8258e1d09541a26862bcee75b3c0 (diff) | |
download | freebsd-ports-gnome-b31c347f801f59af50df7aaa8748c4dcc2d728e8.tar.gz freebsd-ports-gnome-b31c347f801f59af50df7aaa8748c4dcc2d728e8.tar.zst freebsd-ports-gnome-b31c347f801f59af50df7aaa8748c4dcc2d728e8.zip |
This plugin lets you remove attachments from emails.
PR: ports/95456
Submitted by: Pawel Pekala <c0rn@o2.pl>
Diffstat (limited to 'mail/claws-mail-att_remover')
-rw-r--r-- | mail/claws-mail-att_remover/Makefile | 28 | ||||
-rw-r--r-- | mail/claws-mail-att_remover/distinfo | 3 | ||||
-rw-r--r-- | mail/claws-mail-att_remover/files/patch-configure.ac | 15 | ||||
-rw-r--r-- | mail/claws-mail-att_remover/pkg-descr | 1 |
4 files changed, 47 insertions, 0 deletions
diff --git a/mail/claws-mail-att_remover/Makefile b/mail/claws-mail-att_remover/Makefile new file mode 100644 index 000000000000..322ceee50f65 --- /dev/null +++ b/mail/claws-mail-att_remover/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: sylpheed-claws-att_remover +# Date created: 3 April 2006 +# Whom: Pawel Pekala <c0rn@o2.pl> +# +# $FreeBSD$ +# + +PORTNAME= att_remover +PORTVERSION= 1.0 +CATEGORIES= mail +MASTER_SITES= http://claws.sylpheed.org/downloads/plugins/ +PKGNAMEPREFIX= sylpheed-claws- + +MAINTAINER= c0rn@o2.pl +COMMENT= Attachments removing 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 + +PLIST_FILES= lib/sylpheed-claws/plugins/att_remover.a \ + lib/sylpheed-claws/plugins/att_remover.la \ + lib/sylpheed-claws/plugins/att_remover.so + +.include <bsd.port.mk> diff --git a/mail/claws-mail-att_remover/distinfo b/mail/claws-mail-att_remover/distinfo new file mode 100644 index 000000000000..604b38db908f --- /dev/null +++ b/mail/claws-mail-att_remover/distinfo @@ -0,0 +1,3 @@ +MD5 (att_remover-1.0.tar.gz) = 2bcc8bfa17a3a0c649126a6fd1821250 +SHA256 (att_remover-1.0.tar.gz) = 524a5cfa69c687593c5ef7b8554aa225e05dbc02c9f34a68140176473c85f5ce +SIZE (att_remover-1.0.tar.gz) = 316733 diff --git a/mail/claws-mail-att_remover/files/patch-configure.ac b/mail/claws-mail-att_remover/files/patch-configure.ac new file mode 100644 index 000000000000..f050c6e7fb81 --- /dev/null +++ b/mail/claws-mail-att_remover/files/patch-configure.ac @@ -0,0 +1,15 @@ +--- configure.ac.orig Wed Apr 5 19:44:43 2006 ++++ configure.ac Wed Apr 5 19:49:44 2006 +@@ -42,7 +42,11 @@ + + dnl check for sylpheed-claws + PKG_CHECK_MODULES(SYLPHEED_CLAWS, sylpheed-claws >= 1.9.100.93) +-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) diff --git a/mail/claws-mail-att_remover/pkg-descr b/mail/claws-mail-att_remover/pkg-descr new file mode 100644 index 000000000000..812ae6aadab9 --- /dev/null +++ b/mail/claws-mail-att_remover/pkg-descr @@ -0,0 +1 @@ +This plugin lets you remove attachments from emails. |