aboutsummaryrefslogtreecommitdiffstats
path: root/deskutils/myitcrm/Makefile
blob: ab47b39933d45f21501521c19c58e49ce7578c15 (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
96
97
98
# New ports collection makefile for:    myitcrm
# Date created:             9 January 2011
# Whom:                 jamrich.majo@gmail.com
#
# $FreeBSD$
#

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

MAINTAINER= rflynn@acsalaska.net
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=    APACHE      "Use Apache webserver" on \
        PHPMOD      "Use php module for Apache" off \
        LIGHTTPD    "Use Lighttpd webserver" off \
        NGINX       "Use Nginx" off

.include <bsd.port.options.mk>

.if defined(WITH_PHPMOD)
WANT_PHP_MOD=   yes
.else
WANT_PHP_CGI=   yes
.endif

.if !defined(WITHOUT_APACHE)
USE_APACHE= 22+
.endif
.if defined(WITH_LIGHTTPD)
RUN_DEPENDS+=   lighttpd:${PORTSDIR}/www/lighttpd
.endif
.if defined(WITH_NGINX)
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 !defined(NOPORTEXAMPLES)
    @${MKDIR} ${EXAMPLESDIR}
.for ex in ${PORTEXAMPLES}
    @${INSTALL_DATA} ${WRKSRC}/${ex} ${EXAMPLESDIR}
.endfor
.endif # NOPORTEXAMPLES
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
.for doc in ${PORTDOCS}
    @${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR}
.endfor
.endif #NOPORTDOCS

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

.include <bsd.port.mk>