aboutsummaryrefslogtreecommitdiffstats
path: root/www/entrans/Makefile
blob: d767577899c6b9fdf79bc729ffd61ee01ed7133c (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
# New ports collection makefile for:    entrans
# Date created:     Jan-25-2007
# Whom:         Prudhvi Krishna <prudhvikrishna@gmail.com>
#
# $FreeBSD$
#

PORTNAME=   entrans
PORTVERSION=    0.3.2
CATEGORIES= www
MASTER_SITES=   SF

MAINTAINER= prudhvi-krishna-bsd@surapaneni.in
COMMENT=    Entrans is an online, collaborative translation tool

WRKSRC=     ${WRKDIR}/${PORTNAME}-${PORTVERSION}

USE_PHP=    mysql
NO_BUILD=   YES
WANT_PHP_WEB=   YES
ENTRANS?=   www/entrans
PLIST_SUB+= ENTRANS=${ENTRANS}
PLIST=      ${WRKDIR}/pkg-plist

PORTDOCS=   README INSTALL COPYING AUTHORS HACKING THANKS

pre-install:
    cd ${WRKSRC} && ${FIND} -s * -type f | \
        ${SED} -e 's|^|${ENTRANS}/|' > ${PLIST} \
        && ${FIND} -d * -type d | \
        ${SED} -e 's|^|@dirrm ${ENTRANS}/|' >> ${PLIST} \
        && ${ECHO_CMD} @dirrm ${ENTRANS} >> ${PLIST} \
        && ${ECHO_CMD} @dirrmtry www/data >> ${PLIST}
    if [ ! -f ${WRKSRC}/conf/database.conf.php.sample ]; then ${CP} \
        ${WRKSRC}/conf/database.conf.php.sample ${WRKSRC}/conf/database.conf.php; fi

do-install:
    -@${MKDIR} ${PREFIX}/${ENTRANS}
    @${CHOWN} ${WWWOWN}:${WWWGRP} ${PREFIX}/${ENTRANS}
    @${CHMOD} 755 ${PREFIX}/${ENTRANS}
    ${CP} -R ${WRKSRC}/ ${PREFIX}/${ENTRANS}
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
.for i in ${PORTDOCS}
    ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}/${i}
.endfor
.endif

post-install:
    @${CAT} ${PKGMESSAGE}

.include <bsd.port.mk>