aboutsummaryrefslogblamecommitdiff
path: root/www/vtiger/Makefile
blob: 8ead9e19fd4518132ac17d33249c5cff4696d432 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                 
           

                      
                     
                   
                                                                                      

                                                                  
 

                                                                                   
 
                   
                           
 



                                              
                                   
 
                             
 
                              
 

                          
                          


                                                                                          
                         
















                                                                                        
 
           














                                                                                           

             






                                                                  
                         




                                                    
                             
 




























                                                                                              
                      
# Created by: Edwin Groothuis <edwin@mavetju.org>
# $FreeBSD$

PORTNAME=	vtiger
PORTVERSION=	5.0.3
CATEGORIES=	www
MASTER_SITES=	SF/${PORTNAME}crm/${PORTNAME}%20CRM%20${PORTVERSION}/Core%20%20Product
DISTFILES=	${PORTNAME}crm-${DISTVERSION}.tar.gz \
		${PORTNAME}CRM-${DISTVERSION}-PHP5.2-Patch1.tar.gz

MAINTAINER=	as@bsdgroup.de
COMMENT=	Vtiger CRM is open source Customer Relationship Management software

NO_BUILD=	yes
SUB_FILES=	pkg-message

USE_PHP=	mysql gd imap session pcre xml
WANT_PHP_WEB=	YES
IGNORE_WITH_PHP=	4

WRKSRC=		${WRKDIR}/vtigercrm

OPTIONS_DEFINE=		MYSQL

.include <bsd.port.options.mk>

CONFLICTS=	vtiger-4.*

.if ${PORT_OPTIONS:MMYSQL}
RUN_DEPENDS+=	${LOCALBASE}/libexec/mysqld:${PORTSDIR}/databases/mysql${MYSQL_VER}-server
.endif

.if ${PORT_OPTIONS:MDOCS}
PORTDOCS=	Release_Notes.html DEPENDENCIES.txt README.txt
.endif

CONFIGS=	config.db.php config.inc.php config.php config.template.php
DIRS=		themes modules include Image cron log4php adodb Smarty \
		license test jscalendar schema cache data install database \
		logs user_privileges soap class_http storage class_http_dir
PATCHDIRS=	data include include/utils modules/Migration modules/Migration/DBChanges
WRITEABLES=	cache storage install tabdata.php parent_tabdata.php \
		install.php user_privileges Smarty/cache Smarty/templates_c \
		modules/Emails/templates/ test/wordtemplatedownload test/product/ \
		test/user test/contact test/logo logs modules/Webmails/tmp

do-patch:
.for DIR in ${PATCHDIRS}
	@${INSTALL_DATA} -v ${WRKDIR}/${DIR}/*.php ${WRKSRC}/${DIR}
.endfor

do-install:
.for DIR in ${DIRS}
	${MKDIR} ${WWWDIR}/${DIR}
	( cd ${WRKSRC} && ${COPYTREE_SHARE} ${DIR} ${WWWDIR} )
.endfor
	@( ${FIND} ${WRKSRC} -type f -maxdepth 1 \( -name \*.php -or -name \*.properties \
		-or -name Copyright.txt \) -and -not -name config\* ; ${ECHO} ${WWWDIR} ) \
		| ${XARGS} ${INSTALL_DATA} -v
.for FILE in ${CONFIGS}
	${INSTALL_DATA}	${WRKSRC}/${FILE} ${WWWDIR}/${FILE}.sample
.endfor
.for FILE in ${WRITEABLES}
	@${CHOWN} -R ${WWWOWN} ${WWWDIR}/${FILE}
	@${CHMOD} -R u+w ${WWWDIR}/${FILE}
.endfor
	@( cd ${WWWDIR} && ${CHMOD} u+w install.php tabdata.php parent_tabdata.php )

post-install:
.for FILE in ${CONFIGS}
. if !exists(${WWWDIR}/${FILE})
	${INSTALL_DATA} ${WWWDIR}/${FILE}.sample ${WWWDIR}/${FILE}
	@${CHOWN} ${WWWOWN} ${WWWDIR}/${FILE}
	@${CHMOD} u+w ${WWWDIR}/${FILE}
. endif
.endfor
.if ${PORT_OPTIONS:MDOCS}
	${MKDIR} ${DOCSDIR}
. for FILE in ${PORTDOCS}
	${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
. endfor
.endif
	@${CAT} ${PKGMESSAGE}

create-plist:
	@${FIND} -s ${WRKSRC} -type f -mindepth 2 \
		| ${SED} -e 's,^${WRKSRC},%%WWWDIR%%,' > ${PLIST}
	@${FIND} -s ${WRKSRC} -type f \( -maxdepth 1 \( -name \*.php -or -name \*.properties \
		-or -name Copyright.txt \) -and -not -name config\* \) \
		| ${SED} -e 's,^${WRKSRC},%%WWWDIR%%,' >> ${PLIST}
.for FILE in ${CONFIGS}
	@${ECHO_CMD} '@unexec if cmp -s %D/%%WWWDIR%%/${FILE}.sample %D/%%WWWDIR%%/${FILE}; \
		then ${RM} -f %D/%%WWWDIR%%/${FILE}; fi' >> ${PLIST}
.endfor
	@${FIND} -s ${WRKSRC} -type f -maxdepth 1 -name config\* \
		| ${SED} -e 's,^${WRKSRC},%%WWWDIR%%,' -e 's,$$,.sample,' >> ${PLIST}
.for FILE in ${CONFIGS}
	@${ECHO_CMD} '@exec if [ ! -f %D/%%WWWDIR%%/${FILE} ]; then \
		${INSTALL_DATA} %D/%%WWWDIR%%/${FILE}.sample %D/%%WWWDIR%%/${FILE}; \
		${CHOWN} ${WWWOWN} %D/%%WWWDIR%%/${FILE}; \
		${CHMOD} u+w %D/%%WWWDIR%%/${FILE}; fi' >> ${PLIST}
.endfor
	@${ECHO_CMD} '@exec (cd %D/%%WWWDIR%% && \
		${CHMOD} u+w install.php tabdata.php parent_tabdata.php )' >> ${PLIST}
	@${FIND} ${WRKSRC} -type d -empty \
		| ${SED} -e 's,^${WRKSRC},@exec ${MKDIR} %D/%%WWWDIR%%,' >> ${PLIST}
.for FILE in ${WRITEABLES}
	@${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN} %D/%%WWWDIR%%/${FILE}; \
		${CHMOD} -R u+w %D/%%WWWDIR%%/${FILE}' >> ${PLIST}
.endfor
	@${FIND} -ds ${WRKSRC} -type d \
		| ${SED} -e 's,^${WRKSRC},@dirrm %%WWWDIR%%,' >> ${PLIST}

.include <bsd.port.mk>