diff options
author | miwi <miwi@FreeBSD.org> | 2011-11-06 22:42:37 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2011-11-06 22:42:37 +0800 |
commit | 39784b5f1b754767cfbefe79f0e261180153dbff (patch) | |
tree | 4cd8b86c0a757b28e8f6a8f8f88ab86789ff4427 /mail | |
parent | bf484c767203827c0675942f05ac5f69967da616 (diff) | |
download | freebsd-ports-gnome-39784b5f1b754767cfbefe79f0e261180153dbff.tar.gz freebsd-ports-gnome-39784b5f1b754767cfbefe79f0e261180153dbff.tar.zst freebsd-ports-gnome-39784b5f1b754767cfbefe79f0e261180153dbff.zip |
Thunderbird Labels plugin for RoundCube webmail.
Displays the message rows using the same colors as Thunderbird does.
Label of a message can be changed/set exactly like in Thunderbird.
WWW: http://code.google.com/p/rcmail-thunderbird-labels/
PR: ports/162058
Submitted by: Alexander Moisseev <moiseev@mezonplus.ru>
Diffstat (limited to 'mail')
-rw-r--r-- | mail/Makefile | 1 | ||||
-rw-r--r-- | mail/roundcube-thunderbird_labels/Makefile | 40 | ||||
-rw-r--r-- | mail/roundcube-thunderbird_labels/distinfo | 2 | ||||
-rw-r--r-- | mail/roundcube-thunderbird_labels/pkg-descr | 5 | ||||
-rw-r--r-- | mail/roundcube-thunderbird_labels/pkg-plist | 14 |
5 files changed, 62 insertions, 0 deletions
diff --git a/mail/Makefile b/mail/Makefile index 0b299bf57a3c..85fd850dde5e 100644 --- a/mail/Makefile +++ b/mail/Makefile @@ -597,6 +597,7 @@ SUBDIR += roundcube-mobilecube SUBDIR += roundcube-mvision2 SUBDIR += roundcube-sieverules + SUBDIR += roundcube-thunderbird_labels SUBDIR += roundcube-umich SUBDIR += rspamd SUBDIR += rss2email diff --git a/mail/roundcube-thunderbird_labels/Makefile b/mail/roundcube-thunderbird_labels/Makefile new file mode 100644 index 000000000000..293618bcb51c --- /dev/null +++ b/mail/roundcube-thunderbird_labels/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: roundcube-thunderbird_labels +# Date created: 27 Oct 2011 +# Whom: Alexander Moisseev <moiseev@mezonplus.ru> +# +# $FreeBSD$ +# + +PORTNAME= thunderbird_labels +PORTVERSION= 0.3 +CATEGORIES= mail +MASTER_SITES= http://rcmail-thunderbird-labels.googlecode.com/files/ +PKGNAMEPREFIX= roundcube- + +MAINTAINER= moiseev@mezonplus.ru +COMMENT= Thunderbird Labels plugin for RoundCube webmail + +LICENSE= GPLv2 + +RUN_DEPENDS= roundcube>=0.5:${PORTSDIR}/mail/roundcube + +USE_BZIP2= yes +NO_BUILD= yes + +WRKSRC= ${WRKDIR}/${PORTNAME} +WWWDIR?= ${PREFIX}/www/roundcube/plugins/${PORTNAME} + +# This target is only meant to be used by the port maintainer. +x-generate-plist: build + cd ${WRKSRC}; \ + ${FIND} . ! -type d ! -name '*.orig' | ${SORT} | \ + ${SED} -e "s,^\.,%%WWWDIR%%," >${.CURDIR}/pkg-plist.tmp ; \ + ${FIND} . -type d | ${SORT} -r | ${SED} \ + -e "s,^\.$$,@dirrmtry %%WWWDIR%%," \ + -e "s,^\.,@dirrm %%WWWDIR%%," >>${.CURDIR}/pkg-plist.tmp + +do-install: + ${MKDIR} ${WWWDIR} + cd ${WRKSRC} && ${PAX} -r -w . ${WWWDIR} + +.include <bsd.port.mk> diff --git a/mail/roundcube-thunderbird_labels/distinfo b/mail/roundcube-thunderbird_labels/distinfo new file mode 100644 index 000000000000..c5b042624962 --- /dev/null +++ b/mail/roundcube-thunderbird_labels/distinfo @@ -0,0 +1,2 @@ +SHA256 (thunderbird_labels-0.3.tar.bz2) = caa9412e4a5f7d1722b39947bf3c49ea9e481951d7ff1fde03372c4d05363c33 +SIZE (thunderbird_labels-0.3.tar.bz2) = 9492 diff --git a/mail/roundcube-thunderbird_labels/pkg-descr b/mail/roundcube-thunderbird_labels/pkg-descr new file mode 100644 index 000000000000..39f55370cd88 --- /dev/null +++ b/mail/roundcube-thunderbird_labels/pkg-descr @@ -0,0 +1,5 @@ +Thunderbird Labels plugin for RoundCube webmail. +Displays the message rows using the same colors as Thunderbird does. +Label of a message can be changed/set exactly like in Thunderbird. + +WWW: http://code.google.com/p/rcmail-thunderbird-labels/ diff --git a/mail/roundcube-thunderbird_labels/pkg-plist b/mail/roundcube-thunderbird_labels/pkg-plist new file mode 100644 index 000000000000..34fbff747f73 --- /dev/null +++ b/mail/roundcube-thunderbird_labels/pkg-plist @@ -0,0 +1,14 @@ +%%WWWDIR%%/Changelog +%%WWWDIR%%/README +%%WWWDIR%%/localization/de_DE.inc +%%WWWDIR%%/localization/en_US.inc +%%WWWDIR%%/localization/fr_FR.inc +%%WWWDIR%%/localization/ru_RU.inc +%%WWWDIR%%/skins/default/tb_label.css +%%WWWDIR%%/skins/default/thunderbird_32.png +%%WWWDIR%%/tb_label.js +%%WWWDIR%%/thunderbird_labels.php +@dirrm %%WWWDIR%%/skins/default +@dirrm %%WWWDIR%%/skins +@dirrm %%WWWDIR%%/localization +@dirrmtry %%WWWDIR%% |