From owner-svn-ports-head@FreeBSD.ORG Mon Feb 18 02:12:24 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 328F7AFD; Mon, 18 Feb 2013 02:12:24 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 15FEE38B; Mon, 18 Feb 2013 02:12:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r1I2CNne071037; Mon, 18 Feb 2013 02:12:23 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r1I2CNVZ071030; Mon, 18 Feb 2013 02:12:23 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201302180212.r1I2CNVZ071030@svn.freebsd.org> From: Martin Wilke Date: Mon, 18 Feb 2013 02:12:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r312470 - in head/mail: . roundcube-sauserprefs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2013 02:12:24 -0000 Author: miwi Date: Mon Feb 18 02:12:22 2013 New Revision: 312470 URL: http://svnweb.freebsd.org/changeset/ports/312470 Log: Roundcube plugin to manage SpamAssassin preferences. Adds a 'Spam' tab to the 'Personal Settings' to allow the user to change their SpamAssassin preferences. Preferences must be stored in a SQL database. Default preferences are used when no user preference is found. WWW: http://www.tehinterweb.co.uk/roundcube/ PR: ports/176212 Submitted by: Stefan Bethke Added: head/mail/roundcube-sauserprefs/ head/mail/roundcube-sauserprefs/Makefile (contents, props changed) head/mail/roundcube-sauserprefs/distinfo (contents, props changed) head/mail/roundcube-sauserprefs/pkg-descr (contents, props changed) head/mail/roundcube-sauserprefs/pkg-plist (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Mon Feb 18 01:05:35 2013 (r312469) +++ head/mail/Makefile Mon Feb 18 02:12:22 2013 (r312470) @@ -600,6 +600,7 @@ SUBDIR += roundcube-login_info SUBDIR += roundcube-mobilecube SUBDIR += roundcube-mvision2 + SUBDIR += roundcube-sauserprefs SUBDIR += roundcube-sieverules SUBDIR += roundcube-thunderbird_labels SUBDIR += roundcube-umich Added: head/mail/roundcube-sauserprefs/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/roundcube-sauserprefs/Makefile Mon Feb 18 02:12:22 2013 (r312470) @@ -0,0 +1,35 @@ +# Created by: Stefan Bethke +# $FreeBSD$ + +PORTNAME= sauserprefs +PORTVERSION= 1.9.1 +CATEGORIES= mail +MASTER_SITES= http://www.tehinterweb.co.uk/roundcube/plugins/ +PKGNAMEPREFIX= roundcube- +DISTNAME= ${PORTNAME} + +MAINTAINER= stb@lassitu.de +COMMENT= Roundcube plugin to manage SpamAssassin prefs + +LICENSE= GPLv3 + +RUN_DEPENDS= roundcube>=0.8:${PORTSDIR}/mail/roundcube + +NO_BUILD= yes + +WWWDIR= ${PREFIX}/www/roundcube/plugins/sauserprefs + +# 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 Added: head/mail/roundcube-sauserprefs/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/roundcube-sauserprefs/distinfo Mon Feb 18 02:12:22 2013 (r312470) @@ -0,0 +1,2 @@ +SHA256 (sauserprefs.tar.gz) = 820863c7b69e6a11977caf4b9ddd45b08038200fe496ee559d458e58c1856452 +SIZE (sauserprefs.tar.gz) = 60103 Added: head/mail/roundcube-sauserprefs/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/roundcube-sauserprefs/pkg-descr Mon Feb 18 02:12:22 2013 (r312470) @@ -0,0 +1,7 @@ +Roundcube plugin to manage SpamAssassin preferences. + +Adds a 'Spam' tab to the 'Personal Settings' to allow the user to change +their SpamAssassin preferences. Preferences must be stored in a SQL +database. Default preferences are used when no user preference is found. + +WWW: http://www.tehinterweb.co.uk/roundcube/ Added: head/mail/roundcube-sauserprefs/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/roundcube-sauserprefs/pkg-plist Mon Feb 18 02:12:22 2013 (r312470) @@ -0,0 +1,50 @@ +%%WWWDIR%%/CHANGELOG +%%WWWDIR%%/README +%%WWWDIR%%/composer.json +%%WWWDIR%%/config.inc.php.dist +%%WWWDIR%%/include/rcube_sauserprefs_storage.php +%%WWWDIR%%/localization/de_CH.inc +%%WWWDIR%%/localization/de_DE.inc +%%WWWDIR%%/localization/en_GB.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/pl_PL.inc +%%WWWDIR%%/localization/pt_BR.inc +%%WWWDIR%%/localization/ro_RO.inc +%%WWWDIR%%/localization/ru_RU.inc +%%WWWDIR%%/localization/sk_SK.inc +%%WWWDIR%%/localization/sv_SE.inc +%%WWWDIR%%/package.xml +%%WWWDIR%%/sauserprefs.js +%%WWWDIR%%/sauserprefs.php +%%WWWDIR%%/skins/classic/help.gif +%%WWWDIR%%/skins/classic/icons.gif +%%WWWDIR%%/skins/classic/icons.png +%%WWWDIR%%/skins/classic/ie6hacks.css +%%WWWDIR%%/skins/classic/iehacks.css +%%WWWDIR%%/skins/classic/safari.css +%%WWWDIR%%/skins/classic/sauserprefs.css +%%WWWDIR%%/skins/classic/tabstyles.css +%%WWWDIR%%/skins/classic/templates/sauserprefs.html +%%WWWDIR%%/skins/classic/templates/settingsedit.html +%%WWWDIR%%/skins/larry/help.png +%%WWWDIR%%/skins/larry/icons.png +%%WWWDIR%%/skins/larry/iehacks.css +%%WWWDIR%%/skins/larry/listicons.png +%%WWWDIR%%/skins/larry/safari.css +%%WWWDIR%%/skins/larry/sauserprefs.css +%%WWWDIR%%/skins/larry/tabstyles.css +%%WWWDIR%%/skins/larry/templates/sauserprefs.html +%%WWWDIR%%/skins/larry/templates/settingsedit.html +@dirrm %%WWWDIR%%/skins/larry/templates +@dirrm %%WWWDIR%%/skins/larry +@dirrm %%WWWDIR%%/skins/classic/templates +@dirrm %%WWWDIR%%/skins/classic +@dirrm %%WWWDIR%%/skins +@dirrm %%WWWDIR%%/localization +@dirrm %%WWWDIR%%/include +@dirrmtry %%WWWDIR%%