mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
4630fc839b
- Fix dependencies (add USE_PHP) - Remove BROKEN and DEPRECATED - Correct URL - Add SIZE Approved by: nork (mentor/implicitly)
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
# New ports collection makefile for: myphpmoney
|
|
# Date created: Sun Mar 09, 2003
|
|
# Whom: courou <courou@users.sourceforge.net>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= myphpmoney
|
|
PORTVERSION= 1.3.r3
|
|
PORTEPOCH= 1
|
|
CATEGORIES= finance www
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= myphpmoney
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.r/RC/}
|
|
|
|
MAINTAINER= courou@users.sourceforge.net
|
|
COMMENT= A PHP script for managing your accounts
|
|
|
|
PREFIX= ${LOCALBASE}
|
|
WEBOWN?= www
|
|
WEBGRP?= www
|
|
APACHEDIR= ${PREFIX}/www/data
|
|
INSTALLDIR= ${APACHEDIR}/myphpmoney
|
|
USE_BZIP2= yes
|
|
USE_PHP= yes
|
|
WANT_PHP_WEB= yes
|
|
NO_BUILD= yes
|
|
PLIST= ${WRKDIR}/plist
|
|
|
|
PLIST_SUB+= INSTALLDIR=${INSTALLDIR:S,^${PREFIX}/,,}
|
|
|
|
post-patch:
|
|
@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>
|