3f5897f716
Changelog ========= Since 2.5.1-rc ---------------- bugfix: can't view object link in notification when an email does not have a subject. Since 2.5.1-beta ---------------- bugfix: cannot add milestones in templates bugfix: when adding template, after adding milestone cannot select it when adding a task Since 2.5.0.6 ---------------- bugfix: Template view broken by single quote in property name. bugfix: when edit a template if have milestones you can't see tasks. bugfix: don't show members that cannot be used in member selector. Since 2.5.0.5 ---------------- bugfix: Tasks grouping by dimension fixed. Since 2.5.0.4 ---------------- performance: Issue when loading persons dim. bugfix: Imap folders are not saved when editing an email account. bugfix: Cannot unclassify mails from classify form. bugfix: Emessage not shown when inputing dates with incorrect format. bugfix: Add start date to task view. bugfix: Get tasks by range query does not include logged user's timezone. bugfix: In task complete edition form, assigned to are not displayed correctly. bugfix: Issue in include myself in document notifications. bugfix: Set db charset when reconnecting in abstract db adapter. Since 2.5.0.3 ---------------- bugfix: Add attachments column in queued_emails in upgrade scripts. bugfix: Set db charset when reconnecting in abstract db adapter. Since 2.5.0.2 ---------------- bugfix: Render member selectors with preloaded member info. bugfix: Order by name doesn't work on object list. bugfix: People widget only display users. Since 2.5.0.1 ---------------- bugfix: on mysql 5.6 have_innodb variable is deprecated Since 2.5 ---------------- feature: Allow to configure dashboard widget position and order for each user. feature: Allow to configure default dashboard widget position and order for all users. feature: Comments dashboard widget. feature: Email dashboard widget. feature: choose to filter calendar widget or not. feature: choose the user to filter the tasks widget. bugfix: when add a timeslot by clock on tasks update the percent complete. bugfix: if a file doesn't have revision when classify create one. bugfix: several minor fixes of undefined variables, missing langs, etc. bugfix: when disabling or reactivating users from company view, users list is not reloaded. bugfix: member selector displayed wrong data bugfix: on task add/edit view, assignee combo displayed wrong data bugfix: subscribers and invited people were not shown correctly bugfix: encoding when receiving emails bugfix: when editing a classified timeslot, its context was not shown bugfix: in file upload, the name is not changed if a new name is entered bugfix: missing langs and sql changes for email user config options Since 2.5-rc ---------------- bugfix: general search form submitted by enter key doesn't work in Google Chrome bugfix: links are now saved as such when using WYSIWYG bugfix: primary-breadcrumb show exact context bugfix: mysql transaction problem when sending emails without using a cronjob bugfix: when making a new installation, users were not shown by default Since 2.5-beta ---------------- bugfix: if a file doesn't have a revision, when classifying an email create one. bugfix: when adding a timeslot by clock on tasks, task progress bar was not updated correctly. bugfix: fixed custom reports using boolean conditions in false. bugfix: problems with paging on the overview list. bugfix: on activity widget, when clicking on a member, change dimension.
68 lines
2.1 KiB
Makefile
68 lines
2.1 KiB
Makefile
# $NetBSD: Makefile,v 1.29 2014/03/29 14:17:06 taca Exp $
|
|
#
|
|
|
|
DISTNAME= fengoffice_2.5.1
|
|
PKGNAME= ${DISTNAME:S/_/-/:C/.rc$/rc1/}
|
|
CATEGORIES= www
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=opengoo/}
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= taca@NetBSD.org
|
|
HOMEPAGE= http://fengoffice.com/web/community/community_index.php
|
|
COMMENT= Easy to use Open Source Web Office
|
|
LICENSE= gnu-agpl-v3
|
|
|
|
CONFLICTS+= opengoo-[0-9]*
|
|
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-mysql>=5.1.0:../../databases/php-mysql
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-mbstring>=5.1.0:../../converters/php-mbstring
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-zip>=5.1.0:../../archivers/php-zip
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-gd>=5.1.0:../../graphics/php-gd
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-dom>=5.1.0:../../textproc/php-dom
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-imap>=5.1.0:../../mail/php-imap
|
|
|
|
EXTRACT_DIR= ${WRKDIR}/fengoffice
|
|
WRKSRC= ${WRKDIR}/fengoffice
|
|
USE_TOOLS= pax
|
|
NO_BUILD= yes
|
|
|
|
OWN_DIRS_PERMS+= ${FO_DIR}/public/files ${REAL_ROOT_USER} ${APACHE_GROUP} 0775
|
|
OWN_DIRS_PERMS+= ${FO_DIR}/upload ${REAL_ROOT_USER} ${APACHE_GROUP} 0770
|
|
OWN_DIRS_PERMS+= ${FO_DIR}/cache ${REAL_ROOT_USER} ${APACHE_GROUP} 0770
|
|
OWN_DIRS_PERMS+= ${FO_DIR}/config ${REAL_ROOT_USER} ${APACHE_GROUP} 0770
|
|
OWN_DIRS_PERMS+= ${FO_DIR}/tmp ${REAL_ROOT_USER} ${APACHE_GROUP} 0770
|
|
|
|
BUILD_DEFS+= APACHE_GROUP APACHE_USER
|
|
FILES_SUBST+= FO_DIR=${FO_DIR} APACHE_USER=${APACHE_USER}
|
|
PLIST_SUBST+= FO_DIR=${FO_DIR}
|
|
|
|
PRINT_PLIST_AWK+= \
|
|
/^${FO_DIR:S|/|\\/|g}/ \
|
|
{ gsub(/${FO_DIR:S|/|\\/|g}/, "$${FO_DIR}"); \
|
|
print; next; }
|
|
|
|
REPLACE_INTERPRETER+= sh
|
|
REPLACE.sh.old= bash
|
|
REPLACE.sh.new= /bin/sh
|
|
REPLACE_FILES.sh= \
|
|
public/assets/javascript/ckeditor/_samples/adobeair/run.sh
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
FO_DIR?= share/fengoffice
|
|
INSTALLATION_DIRS= ${FO_DIR}
|
|
|
|
post-extract:
|
|
cd ${WRKSRC}; ${FIND} . -type f -exec ${CHMOD} -x {} \;
|
|
|
|
pre-install:
|
|
${RM} -f ${WRKSRC}/config/empty.config.php
|
|
${FIND} ${WRKSRC} -type f \
|
|
\( -name .project -o -name .cvsignore \) -exec ${RM} -f {} \;
|
|
|
|
do-install:
|
|
cd ${WRKSRC}; ${FIND} . -type f \! -name '*.orig' -print | \
|
|
pax -rw ${DESTDIR}${PREFIX}/${FO_DIR}
|
|
|
|
.include "../../lang/php/phpversion.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|