blob: caf6d46208bbf46429e907b8e30d0750ceaa8683 (
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
|
# New ports collection makefile for: myphpmoney
# Date created: Sun Mar 09, 2003
# Whom: courou <courou@users.sourceforge.net>
#
# $FreeBSD$
PORTNAME= myphpmoney
PORTVERSION= 1.3
CATEGORIES= finance www
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= myphpmoney
DISTNAME= ${PORTNAME}-${PORTVERSION}RC2
MAINTAINER= courou@users.sourceforge.net
COMMENT= A php script for managed your accounts
RUN_DEPENDS= ${LOCALBASE}/libexec/apache/libphp4.so:${PORTSDIR}/www/mod_php4
LIB_DEPENDS= mysqlclient:${PORTSDIR}/databases/mysql323-client
PREFIX= ${LOCALBASE}
WEBOWN?= www
WEBGRP?= www
APACHEDIR= ${PREFIX}/www/data
INSTALLDIR= ${APACHEDIR}/myphpmoney
NO_BUILD= yes
PLIST= ${WRKDIR}/plist
PLIST_SUB+= INSTALLDIR=${INSTALLDIR:S,^${PREFIX}/,,}
post-patch:
${RM} -f ${PLIST}
cd ${WRKSRC};\
${FIND} . ! -type d | ${SORT} | ${SED} "s|^.|%%INSTALLDIR%%|"\
>${PLIST};\
${FIND} . -type d | ${SORT} -r | ${SED} "s|^.|@dirrm %%INSTALLDIR%%|"\
>>${PLIST}
do-install:
${MKDIR} ${INSTALLDIR}
cd ${WRKSRC}; ${FIND} . \
| cpio -pdm -R ${WEBOWN}:${WEBGRP} ${INSTALLDIR}
${CHMOD} -R ${BINMODE} ${INSTALLDIR}
${CHMOD} 777 ${INSTALLDIR}/public_html/dump
${FIND} ${INSTALLDIR} ! -type d | ${XARGS} ${CHMOD} ${NOBINMODE}
.include <bsd.port.mk>
|