summaryrefslogtreecommitdiff
path: root/deskutils/myitcrm/Makefile
blob: 9ce1084c9a4a2762f89968efebaaa6b1a7968af0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Created by: jamrich.majo@gmail.com
# $FreeBSD$

PORTNAME=	myitcrm
PORTVERSION=	0.2.9.3
CATEGORIES=	deskutils
MASTER_SITES=	SF/myitcrm/
DISTNAME=	MyITCRM1-${PORTVERSION}

MAINTAINER=	ports@FreeBSD.org
COMMENT=	MyIT CRM is a CRM project designed for Computer Servicing and Repairs

LICENSE=	GPLv3

USE_ZIP=	yes
USE_PHP=	mysql session xml
NO_BUILD=	yes
WRKSRC=		${WRKDIR}/MyITCRM-${PORTVERSION}

SUB_FILES=	pkg-message
PLIST_DIRSTRY=	%%WWWDIR%%
PATCH_STRIP=	-p1
WRITEABLE=	conf.php log/access.log cache
PORTEXAMPLES=	htaccess.txt
PORTDOCS=	changelog.txt README.textile
USE_DOS2UNIX=	yes

OPTIONS_DEFINE=	APACHE PHPMOD LIGHTTPD NGINX
OPTIONS_DEFAULT=	APACHE
PHPMOD_DESC=	Use PHP module for Apache
NGINX_DESC=	Use Nginx

NO_STAGE=	yes
.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MPHPMOD}
WANT_PHP_MOD=	yes
.else
WANT_PHP_CGI=	yes
.endif

.if ${PORT_OPTIONS:MAPACHE}
USE_APACHE_RUN=	22+
.endif
.if ${PORT_OPTIONS:MLIGHTTPD}
RUN_DEPENDS+=	lighttpd:${PORTSDIR}/www/lighttpd
.endif
.if ${PORT_OPTIONS:MNGINX}
RUN_DEPENDS+=	nginx:${PORTSDIR}/www/nginx
.endif

# Set files to ignore.
.for file in ${PORTEXAMPLES} ${PORTDOCS} LICENSE.txt
WWW_IGNORE+=	-not -name ${file}
.endfor

.if defined(MAINTAINER_MODE)
trace-distfile: distclean
	@cd ${.CURDIR} && make FETCH_ARGS=-vFpr makesum

rm-install:
	${SU_CMD} '${RM} -rf ${WWWDIR}/install'

.endif

do-install:
	@${MKDIR} ${WWWDIR}
	@cd ${WRKSRC} && ${COPYTREE_SHARE} . ${WWWDIR} '${WWW_IGNORE}'
	@if [ ! -f ${WWWDIR}/conf.php ]; then \
		${CP} ${WWWDIR}/conf-default.php ${WWWDIR}/conf.php; \
	 fi
.for ent in ${WRITEABLE}
	@${CHOWN} ${WWWOWN}:${WWWGRP} ${WWWDIR}/${ent}
	@${CHMOD} u+w ${WWWDIR}/${ent}
.endfor
.if ${PORT_OPTIONS:MEXAMPLES}
	@${MKDIR} ${EXAMPLESDIR}
.for ex in ${PORTEXAMPLES}
	@${INSTALL_DATA} ${WRKSRC}/${ex} ${EXAMPLESDIR}
.endfor
.endif # PORTEXAMPLES
.if ${PORT_OPTIONS:MDOCS}
	@${MKDIR} ${DOCSDIR}
.for doc in ${PORTDOCS}
	@${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR}
.endfor
.endif # PORTDOCS

post-install:
	@${CAT} ${PKGMESSAGE}
.if defined(MAINTAINER_MODE)
	@${MAKE} -C ${.CURDIR} rm-install
.endif

.include <bsd.port.mk>