diff options
author | miwi <miwi@FreeBSD.org> | 2007-07-10 02:33:40 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2007-07-10 02:33:40 +0800 |
commit | a54e45f6e64fd7c5cdcf7cf7149cfdfc0784b6ea (patch) | |
tree | 3cfc8a1f2ba0b3ab9c8073edcce6f4e55f5e0cd0 /mail | |
parent | 8e4d76f45099ee8e46338ce5b1c94190f7c10550 (diff) | |
download | freebsd-ports-gnome-a54e45f6e64fd7c5cdcf7cf7149cfdfc0784b6ea.tar.gz freebsd-ports-gnome-a54e45f6e64fd7c5cdcf7cf7149cfdfc0784b6ea.tar.zst freebsd-ports-gnome-a54e45f6e64fd7c5cdcf7cf7149cfdfc0784b6ea.zip |
- Fix build with claws-mail 2.10.0
- Bump PORTREVISION
PR: 114454
Submitted by: Pawel Pekala" <c0rn@o2.pl> (maintainer)
Obtained from: claws-mail cvs
Diffstat (limited to 'mail')
-rw-r--r-- | mail/claws-mail-etpan_privacy/Makefile | 6 | ||||
-rw-r--r-- | mail/claws-mail-etpan_privacy/files/patch-update-plugin-api | 30 |
2 files changed, 33 insertions, 3 deletions
diff --git a/mail/claws-mail-etpan_privacy/Makefile b/mail/claws-mail-etpan_privacy/Makefile index 4c34b92daca4..d9a32dcfe2e7 100644 --- a/mail/claws-mail-etpan_privacy/Makefile +++ b/mail/claws-mail-etpan_privacy/Makefile @@ -7,7 +7,7 @@ PORTNAME= etpan_privacy PORTVERSION= 0.15.5 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= mail MASTER_SITES= http://www.claws-mail.org/downloads/plugins/ PKGNAMEPREFIX= claws-mail- @@ -16,8 +16,8 @@ DISTNAME= etpan-privacy-${PORTVERSION} MAINTAINER= c0rn@o2.pl COMMENT= S/MIME, PGP verification and decryption plugin for claws-mail -BUILD_DEPENDS= claws-mail>=2.6:${PORTSDIR}/mail/claws-mail -RUN_DEPENDS= claws-mail>=2.6:${PORTSDIR}/mail/claws-mail +BUILD_DEPENDS= claws-mail>=2.10:${PORTSDIR}/mail/claws-mail +RUN_DEPENDS= claws-mail>=2.10:${PORTSDIR}/mail/claws-mail USE_GMAKE= yes USE_XLIB= yes diff --git a/mail/claws-mail-etpan_privacy/files/patch-update-plugin-api b/mail/claws-mail-etpan_privacy/files/patch-update-plugin-api new file mode 100644 index 000000000000..be4b61e5c752 --- /dev/null +++ b/mail/claws-mail-etpan_privacy/files/patch-update-plugin-api @@ -0,0 +1,30 @@ +=================================================================== +RCS file: /pack/anoncvs/sylpheedclaws/plugins/etpan-privacy/src/plugin.c,v +retrieving revision 1.1.1.1.2.10 +retrieving revision 1.1.1.1.2.11 +diff -u -r1.1.1.1.2.10 -r1.1.1.1.2.11 +--- src/plugin.c 2006/12/15 19:06:14 1.1.1.1.2.10 ++++ src/plugin.c 2007/06/21 17:12:30 1.1.1.1.2.11 +@@ -46,7 +46,7 @@ + { + int r; + +- if( !check_plugin_version(MAKE_NUMERIC_VERSION(2, 6, 1, 41), ++ if( !check_plugin_version(MAKE_NUMERIC_VERSION(2,9,2,72), + VERSION_NUMERIC, _("etPan! Privacy"), error) ) + return -1; + +@@ -63,11 +63,12 @@ + return 0; + } + +-void plugin_done(void) ++gboolean plugin_done(void) + { + etpan_privacy_prefs_done(); + etpan_privacy_done(); + debug_print(_("etPan! - Privacy plugin unloaded\n")); ++ return TRUE; + } + + const gchar *plugin_name(void) |