Date: Sat, 1 Sep 2012 12:17:56 +0000 (UTC) From: Jase Thew <jase@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r303470 - in head/mail: . roundcube-automatic_addressbook roundcube-automatic_addressbook/files Message-ID: <201209011217.q81CHuhP007328@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jase Date: Sat Sep 1 12:17:56 2012 New Revision: 303470 URL: http://svn.freebsd.org/changeset/ports/303470 Log: The automatic addressbook plugin for Roundcube collects each address you send an email to and records it in an address book, making it available for later use or auto-completion. WWW: http://code.crapouillou.net/projects/roundcube-plugins PR: ports/170993 Submitted by: Anes Mukhametov <anes@anes.su> Approved by: culot (mentor) Added: head/mail/roundcube-automatic_addressbook/ head/mail/roundcube-automatic_addressbook/Makefile (contents, props changed) head/mail/roundcube-automatic_addressbook/distinfo (contents, props changed) head/mail/roundcube-automatic_addressbook/files/ head/mail/roundcube-automatic_addressbook/files/pkg-message.in (contents, props changed) head/mail/roundcube-automatic_addressbook/pkg-descr (contents, props changed) head/mail/roundcube-automatic_addressbook/pkg-plist (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Sat Sep 1 11:42:02 2012 (r303469) +++ head/mail/Makefile Sat Sep 1 12:17:56 2012 (r303470) @@ -596,6 +596,7 @@ SUBDIR += rmilter SUBDIR += roundcube SUBDIR += roundcube-air + SUBDIR += roundcube-automatic_addressbook SUBDIR += roundcube-contextmenu SUBDIR += roundcube-groupvice SUBDIR += roundcube-mobilecube Added: head/mail/roundcube-automatic_addressbook/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/roundcube-automatic_addressbook/Makefile Sat Sep 1 12:17:56 2012 (r303470) @@ -0,0 +1,39 @@ +# $FreeBSD$ + +PORTNAME= automatic_addressbook +PORTVERSION= 0.3.1 +CATEGORIES= mail +MASTER_SITES= http://code.crapouillou.net/attachments/download/16/ +PKGNAMEPREFIX= roundcube- + +MAINTAINER= anes@anes.su +COMMENT= Roundcube webmail automatic addressbook plugin + +LICENSE= GPLv3 + +RUN_DEPENDS= roundcube>=0.8:${PORTSDIR}/mail/roundcube + +USE_BZIP2= yes +NO_BUILD= yes + +RCDIR= ${PREFIX}/www/roundcube +WWWDIR= ${RCDIR}/plugins/automatic_addressbook + +SUB_FILES= pkg-message +SUB_LIST= RCDIR=${RCDIR} PLUGINDIR=${WWWDIR} + +# 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} + @${CAT} ${PKGMESSAGE} + +.include <bsd.port.mk> Added: head/mail/roundcube-automatic_addressbook/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/roundcube-automatic_addressbook/distinfo Sat Sep 1 12:17:56 2012 (r303470) @@ -0,0 +1,2 @@ +SHA256 (automatic_addressbook-0.3.1.tar.bz2) = 0a4f43de2a9938ddbabc31ef0f47eaf70073aaf3e3f415d76f2c7f67cb5604a2 +SIZE (automatic_addressbook-0.3.1.tar.bz2) = 20630 Added: head/mail/roundcube-automatic_addressbook/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/roundcube-automatic_addressbook/files/pkg-message.in Sat Sep 1 12:17:56 2012 (r303470) @@ -0,0 +1,28 @@ +--------------------------------------------------------------------- +FIRST INSTALLATION + +If this is a first installation of automatic addressbook plugin, you +have to execute the relevant initialisation SQL script for your +chosen database backend : + +%%PLUGINDIR%%/SQL/<dbtype>.initial.sql + +You will also need to copy : +%%PLUGINDIR%%/config/config.inc.php.dist to +%%PLUGINDIR%%/config/config.inc.php +and edit as you need. + +Finally, you will need to add the plugin to your list of loadable +plugins in %%RCDIR%%/config/main.inc.php : + +E.g. : $rcmail_config['plugins'] = array('automatic_addressbook'); + +UPGRADING + +If you already had a previous version of automatic addressbook plugin +installed, you should update your database schema by executing the +relevant upgrade SQL script for your chosen database backend : + +%%WWWDIR%%/SQL/<dbtype>.upgrade.sql + +--------------------------------------------------------------------- Added: head/mail/roundcube-automatic_addressbook/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/roundcube-automatic_addressbook/pkg-descr Sat Sep 1 12:17:56 2012 (r303470) @@ -0,0 +1,5 @@ +The automatic addressbook plugin for Roundcube collects each address you +send an email to and records it in an address book, making it available +for later use or auto-completion. + +WWW: http://code.crapouillou.net/projects/roundcube-plugins Added: head/mail/roundcube-automatic_addressbook/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/roundcube-automatic_addressbook/pkg-plist Sat Sep 1 12:17:56 2012 (r303470) @@ -0,0 +1,34 @@ +%%WWWDIR%%/package.xml +%%WWWDIR%%/Changelog +%%WWWDIR%%/INSTALL +%%WWWDIR%%/LICENSE +%%WWWDIR%%/README +%%WWWDIR%%/SQL/mssql.initial.sql +%%WWWDIR%%/SQL/mssql.update.sql +%%WWWDIR%%/SQL/mysql.initial.sql +%%WWWDIR%%/SQL/mysql.update.sql +%%WWWDIR%%/SQL/postgres.initial.sql +%%WWWDIR%%/SQL/postgres.update.sql +%%WWWDIR%%/SQL/sqlite.initial.sql +%%WWWDIR%%/SQL/sqlite.update.sql +%%WWWDIR%%/automatic_addressbook.php +%%WWWDIR%%/automatic_addressbook_backend.php +%%WWWDIR%%/config/config.inc.php.dist +%%WWWDIR%%/localization/bg_BG.inc +%%WWWDIR%%/localization/de_DE.inc +%%WWWDIR%%/localization/el_GR.inc +%%WWWDIR%%/localization/en_EN.inc +%%WWWDIR%%/localization/en_US.inc +%%WWWDIR%%/localization/es_ES.inc +%%WWWDIR%%/localization/fr_FR.inc +%%WWWDIR%%/localization/gl_ES.inc +%%WWWDIR%%/localization/hu_HU.inc +%%WWWDIR%%/localization/it_IT.inc +%%WWWDIR%%/localization/nl_NL.inc +%%WWWDIR%%/localization/ru_RU.inc +%%WWWDIR%%/localization/vi_VN.inc +%%WWWDIR%%/localization/zh_CN.inc +@dirrm %%WWWDIR%%/localization +@dirrm %%WWWDIR%%/SQL +@dirrmtry %%WWWDIR%%/config +@dirrmtry %%WWWDIR%%
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209011217.q81CHuhP007328>