summaryrefslogtreecommitdiff
path: root/mail/roundcube/Makefile
diff options
context:
space:
mode:
authoradrianp <adrianp@pkgsrc.org>2007-11-08 23:35:33 +0000
committeradrianp <adrianp@pkgsrc.org>2007-11-08 23:35:33 +0000
commite227ad2f862e3bc7db6460cf08f9681656a117df (patch)
tree7435cf846d756562a5fc501ef1eacde75bad61a6 /mail/roundcube/Makefile
parentb97a05575076022ee4f9cd579dbc12341305612c (diff)
downloadpkgsrc-e227ad2f862e3bc7db6460cf08f9681656a117df.tar.gz
Update to RC2
New message parser (less memory consuming) Works with PHP safe_mode Create valid HTML New LDAP integration Search for contacts Improve message compose screen IPv6 Compatability Improved XHTML validation Identify mailboxes case-sensitive Lowered status message time from 5 to 3 seconds to improve responsiveness See http://trac.roundcube.net/wiki/Changelog for all the details
Diffstat (limited to 'mail/roundcube/Makefile')
-rw-r--r--mail/roundcube/Makefile24
1 files changed, 11 insertions, 13 deletions
diff --git a/mail/roundcube/Makefile b/mail/roundcube/Makefile
index 58062ad1adc..8aaa0205ab3 100644
--- a/mail/roundcube/Makefile
+++ b/mail/roundcube/Makefile
@@ -1,11 +1,10 @@
-# $NetBSD: Makefile,v 1.5 2007/07/04 20:54:47 jlam Exp $
+# $NetBSD: Makefile,v 1.6 2007/11/08 23:35:33 adrianp Exp $
#
-DISTNAME= roundcube-0.1-20070528
-PKGNAME= ${DISTNAME:S/-0.1//}
+DISTNAME= roundcubemail-0.1-rc2
+PKGNAME= roundcube-0.1rc2
CATEGORIES= mail
-MASTER_SITES= http://www.farrokhi.net/roundcube/
-EXTRACT_SUFX= .tar.bz2
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=roundcubemail/}
MAINTAINER= adrianp@NetBSD.org
HOMEPAGE= http://roundcube.net/
@@ -13,7 +12,6 @@ COMMENT= Browser-based multilingual IMAP client
USE_LANGUAGES= # none
NO_BUILD= yes
-WRKSRC= ${WRKDIR}/roundcubemail
.include "../../mk/bsd.prefs.mk"
@@ -21,7 +19,7 @@ PKG_SYSCONFSUBDIR?= httpd
PKG_GROUPS_VARS+= APACHE_GROUP
PKG_USERS_VARS+= APACHE_USER
-BUILD_DEFS+= VARBASE
+BUILD_DEFS+= VARBASE APACHE_USER APACHE_GROUP
RCDIR= ${PREFIX}/share/roundcube
EGDIR= ${PREFIX}/share/examples/roundcube
@@ -59,10 +57,10 @@ INSTALLATION_DIRS= ${RCDIR}/program ${RCDIR}/skins ${EGDIR}/SQL ${DOCDIR}
.include "../../mk/apache.mk"
post-extract:
- cp ${FILESDIR}/roundcube.conf ${WRKSRC}/roundcube.conf
+ ${CP} ${FILESDIR}/roundcube.conf ${WRKSRC}/roundcube.conf
pre-install:
- find ${WRKSRC} -name "*.orig" -print | xargs rm -f
+ ${FIND} ${WRKSRC} -name "*.orig" -print | ${XARGS} ${RM} -f
do-install:
${INSTALL_DATA} ${WRKSRC}/roundcube.conf ${EGDIR}/roundcube.conf
@@ -81,10 +79,10 @@ do-install:
${INSTALL_DATA} ${WRKSRC}/config/main.inc.php.dist ${EGDIR}/main.inc.php
.for i in ${PAX_DIRS}
- cd ${WRKSRC}/${i} && pax -rw . ${RCDIR}/${i}
- find ${RCDIR}/${i} -type f | xargs chmod ${SHAREMODE}
- find ${RCDIR}/${i} -type d | xargs chmod ${PKGDIRMODE}
- chown -R ${SHAREOWN}:${SHAREGRP} ${RCDIR}/${i}
+ cd ${WRKSRC}/${i} && ${PAX} -rw . ${RCDIR}/${i}
+ ${FIND} ${RCDIR}/${i} -type f | ${XARGS} ${CHMOD} ${SHAREMODE}
+ ${FIND} ${RCDIR}/${i} -type d | ${XARGS} ${CHMOD} ${PKGDIRMODE}
+ ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${RCDIR}/${i}
.endfor
.include "../../mk/bsd.pkg.mk"