svn commit: r356618 - in head/mail: . roundcube-html5_notifier

Martin Wilke miwi at FreeBSD.org
Thu Jun 5 09:19:17 UTC 2014


Author: miwi
Date: Thu Jun  5 09:19:16 2014
New Revision: 356618
URL: http://svnweb.freebsd.org/changeset/ports/356618
QAT: https://qat.redports.org/buildarchive/r356618/

Log:
  HTML5_Notifier is a Roundcube plugin. It displays Desktop Notifications
  like the ones you might know from Google Mail. Just keep Roundcube
  opened in a (minimized) tab and enjoy getting notifications every
  time a new mail arrives.
  
  WWW: http://stremlau.net/html5_notifier/
  
  PR:		ports/190053
  Submitted by:	Koichiro IWAO <meta+ports at vmeta.jp>

Added:
  head/mail/roundcube-html5_notifier/
  head/mail/roundcube-html5_notifier/Makefile   (contents, props changed)
  head/mail/roundcube-html5_notifier/distinfo   (contents, props changed)
  head/mail/roundcube-html5_notifier/pkg-descr   (contents, props changed)
  head/mail/roundcube-html5_notifier/pkg-plist   (contents, props changed)
Modified:
  head/mail/Makefile

Modified: head/mail/Makefile
==============================================================================
--- head/mail/Makefile	Thu Jun  5 09:17:12 2014	(r356617)
+++ head/mail/Makefile	Thu Jun  5 09:19:16 2014	(r356618)
@@ -592,6 +592,7 @@
     SUBDIR += roundcube-automatic_addressbook
     SUBDIR += roundcube-contextmenu
     SUBDIR += roundcube-groupvice
+    SUBDIR += roundcube-html5_notifier
     SUBDIR += roundcube-login_info
     SUBDIR += roundcube-mobilecube
     SUBDIR += roundcube-mvision2

Added: head/mail/roundcube-html5_notifier/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/roundcube-html5_notifier/Makefile	Thu Jun  5 09:19:16 2014	(r356618)
@@ -0,0 +1,39 @@
+# Created by: Koichiro IWAO <meta+ports at vmeta.jp>
+# $FreeBSD$
+
+PORTNAME=	html5_notifier
+PORTVERSION=	0.5.2
+CATEGORIES=	mail
+PKGNAMEPREFIX=	roundcube-
+
+MAINTAINER=	meta+ports at vmeta.jp
+COMMENT=	HTML5 desktop notifier plugin for roundcube
+
+LICENSE=	GPLv3
+
+RUN_DEPENDS=	roundcube>=1.0:${PORTSDIR}/mail/roundcube
+BUILD_DEPENDS=	roundcube>=1.0:${PORTSDIR}/mail/roundcube
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	kitist
+GH_PROJECT=	html5_notifier
+GH_TAGNAME=	v${PORTVERSION}
+GH_COMMIT=	968f570
+
+NO_BUILD=	yes
+
+WWWDIR=		${PREFIX}/www/roundcube/plugins/${PORTNAME}
+
+x-generate-plist: build
+	cd ${WRKSRC}; \
+	${FIND} . ! -type d ! -name '*.orig' | ${SORT} | \
+		${SED} -e "s,^\.,%%WWWDIR%%," >${WRKDIR}/pkg-plist.tmp ; \
+	${FIND} . -type d | ${SORT} -r | ${SED} \
+		-e "s,^\.$$, at dirrmtry %%WWWDIR%%," \
+		-e "s,^\., at dirrm %%WWWDIR%%," >>${WRKDIR}/pkg-plist.tmp
+
+do-install:
+	${MKDIR} ${STAGEDIR}${WWWDIR}
+	cd ${WRKSRC} && ${PAX} -r -w . ${STAGEDIR}${WWWDIR}
+
+.include <bsd.port.mk>

Added: head/mail/roundcube-html5_notifier/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/roundcube-html5_notifier/distinfo	Thu Jun  5 09:19:16 2014	(r356618)
@@ -0,0 +1,2 @@
+SHA256 (html5_notifier-0.5.2.tar.gz) = 99df20dd8dbecb4bded8da7574f9c9e9605df68a8b2f5cf5fda2927959d5e5af
+SIZE (html5_notifier-0.5.2.tar.gz) = 8002

Added: head/mail/roundcube-html5_notifier/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/roundcube-html5_notifier/pkg-descr	Thu Jun  5 09:19:16 2014	(r356618)
@@ -0,0 +1,6 @@
+HTML5_Notifier is a Roundcube plugin. It displays Desktop Notifications
+like the ones you might know from Google Mail. Just keep Roundcube
+opened in a (minimized) tab and enjoy getting notifications every
+time a new mail arrives.
+
+WWW: http://stremlau.net/html5_notifier/

Added: head/mail/roundcube-html5_notifier/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/roundcube-html5_notifier/pkg-plist	Thu Jun  5 09:19:16 2014	(r356618)
@@ -0,0 +1,19 @@
+%%WWWDIR%%/.gitignore
+%%WWWDIR%%/README.md
+%%WWWDIR%%/changelog.txt
+%%WWWDIR%%/composer.json
+%%WWWDIR%%/config/config.inc.php.dist
+%%WWWDIR%%/html5_notifier.js
+%%WWWDIR%%/html5_notifier.php
+%%WWWDIR%%/images/new_mail.png
+%%WWWDIR%%/localization/de_DE.inc
+%%WWWDIR%%/localization/en_US.inc
+%%WWWDIR%%/localization/es_ES.inc
+%%WWWDIR%%/localization/fr_FR.inc
+%%WWWDIR%%/localization/ja_JP.inc
+%%WWWDIR%%/localization/nl_NL.inc
+%%WWWDIR%%/localization/sk_SK.inc
+ at dirrm %%WWWDIR%%/localization
+ at dirrm %%WWWDIR%%/images
+ at dirrm %%WWWDIR%%/config
+ at dirrmtry %%WWWDIR%%


More information about the svn-ports-head mailing list