diff options
author | Pawel Pekala <pawel@FreeBSD.org> | 2016-01-07 16:53:44 +0000 |
---|---|---|
committer | Pawel Pekala <pawel@FreeBSD.org> | 2016-01-07 16:53:44 +0000 |
commit | ebcab3f0e5875b5ad8a39aa171d6d1a9a4e53ac0 (patch) | |
tree | 82b2906b00ce0e497f9ef31cc90fd01b9abc851e | |
parent | - Modernize pkg-plist, remove deprecated @dirrm (diff) |
- Remove x-generate-plist target using deprecated @dirrm, our make makeplist
generates proper plists now
- Add NO_ARCH
PR: 205969
Submitted by: myself
Approved by: maintainer
-rw-r--r-- | mail/roundcube-html5_notifier/Makefile | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/mail/roundcube-html5_notifier/Makefile b/mail/roundcube-html5_notifier/Makefile index 7a78e2612f7e..df32b2d02922 100644 --- a/mail/roundcube-html5_notifier/Makefile +++ b/mail/roundcube-html5_notifier/Makefile @@ -19,17 +19,10 @@ USE_GITHUB= yes GH_ACCOUNT= kitist NO_BUILD= yes +NO_ARCH= 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,^\.$$,@dirrmtry %%WWWDIR%%," \ - -e "s,^\.,@dirrm %%WWWDIR%%," >>${WRKDIR}/pkg-plist.tmp - do-install: ${MKDIR} ${STAGEDIR}${WWWDIR} cd ${WRKSRC} && ${PAX} -r -w . ${STAGEDIR}${WWWDIR} |