Thu Jun 7 13:51:03 2012 UTC ()
Fix broken shell syntax


(fhajny)
diff -r1.41 -r1.42 pkgsrc/mail/roundcube/Makefile

cvs diff -r1.41 -r1.42 pkgsrc/mail/roundcube/Makefile (expand / switch to unified diff)

--- pkgsrc/mail/roundcube/Makefile 2012/06/05 18:48:02 1.41
+++ pkgsrc/mail/roundcube/Makefile 2012/06/07 13:51:03 1.42
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile,v 1.41 2012/06/05 18:48:02 jym Exp $ 1# $NetBSD: Makefile,v 1.42 2012/06/07 13:51:03 fhajny Exp $
2 2
3DISTNAME= roundcubemail-0.7.2-dep 3DISTNAME= roundcubemail-0.7.2-dep
4PKGNAME= ${DISTNAME:S/mail-/-/:S/-dep//} 4PKGNAME= ${DISTNAME:S/mail-/-/:S/-dep//}
5PKGREVISION= 1 5PKGREVISION= 1
6CATEGORIES= mail 6CATEGORIES= mail
7MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=roundcubemail/} 7MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=roundcubemail/}
8 8
9MAINTAINER= taca@NetBSD.org 9MAINTAINER= taca@NetBSD.org
10HOMEPAGE= http://roundcube.net/ 10HOMEPAGE= http://roundcube.net/
11COMMENT= Browser-based multilingual IMAP client 11COMMENT= Browser-based multilingual IMAP client
12LICENSE= gnu-gpl-v3 12LICENSE= gnu-gpl-v3
13 13
14PKG_DESTDIR_SUPPORT= user-destdir 14PKG_DESTDIR_SUPPORT= user-destdir
@@ -124,19 +124,19 @@ do-install: @@ -124,19 +124,19 @@ do-install:
124 ${INSTALL_SCRIPT} ${WRKSRC}/bin/*.sh ${DESTDIR}${RCDIR}/bin/ 124 ${INSTALL_SCRIPT} ${WRKSRC}/bin/*.sh ${DESTDIR}${RCDIR}/bin/
125 125
126.for i in ${PAX_DIRS} 126.for i in ${PAX_DIRS}
127 cd ${WRKSRC}/${i} && ${PAX} -rw . ${DESTDIR}${RCDIR}/${i} 127 cd ${WRKSRC}/${i} && ${PAX} -rw . ${DESTDIR}${RCDIR}/${i}
128 ${FIND} ${DESTDIR}${RCDIR}/${i} -type f | \ 128 ${FIND} ${DESTDIR}${RCDIR}/${i} -type f | \
129 ${XARGS} ${CHMOD} ${SHAREMODE} 129 ${XARGS} ${CHMOD} ${SHAREMODE}
130 ${FIND} ${DESTDIR}${RCDIR}/${i} -type d | \ 130 ${FIND} ${DESTDIR}${RCDIR}/${i} -type d | \
131 ${XARGS} ${CHMOD} ${PKGDIRMODE} 131 ${XARGS} ${CHMOD} ${PKGDIRMODE}
132 ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DESTDIR}${RCDIR}/${i} 132 ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DESTDIR}${RCDIR}/${i}
133.endfor 133.endfor
134 134
135.for f in ${CONF_PLUGINS} 135.for f in ${CONF_PLUGINS}
136 ${MKDIR} ${DESTDIR}${EGDIR}/plugins/${f} 136 ${MKDIR} ${DESTDIR}${EGDIR}/plugins/${f}
137 test -f ${DESTDIR}${EGDIR}/plugins/${f}/config.inc.php ] || 137 test -f ${DESTDIR}${EGDIR}/plugins/${f}/config.inc.php || \
138 ${MV} ${DESTDIR}${RCDIR}/plugins/${f}/config.inc.php.dist \ 138 ${MV} ${DESTDIR}${RCDIR}/plugins/${f}/config.inc.php.dist \
139 ${DESTDIR}${EGDIR}/plugins/${f}/config.inc.php 139 ${DESTDIR}${EGDIR}/plugins/${f}/config.inc.php
140.endfor 140.endfor
141 141
142.include "../../mk/bsd.pkg.mk" 142.include "../../mk/bsd.pkg.mk"