aboutsummaryrefslogtreecommitdiffstats
path: root/ftp/phpwebftp/Makefile
blob: bb6b376cc14cfa5cbf0a6bf21f32ffe4b2987337 (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
# New ports collection makefile for:    phpwebftp
# Date created:     2005-09-15
# Whom:         Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
#
# $FreeBSD$
#

PORTNAME=   phpwebftp
PORTVERSION=    3.3
CATEGORIES= ftp
MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= phpwebftp
DISTNAME=   ${PORTNAME}33

MAINTAINER= acardenas@bsd.org.pe
COMMENT=    A set of PHP-scripts to manage FTP over the web

USE_ZIP=    yes
NO_BUILD=   yes
USE_PHP=    ftp
PHPWEBFTPDIR?=  www/data-dist/${PORTNAME}
PLIST_SUB+= PHPWEBFTPDIR=${PHPWEBFTPDIR}
WRKSRC= ${WRKDIR}/${PORTNAME}

do-configure:
    @${FIND} -d ${WRKSRC} -name CVS -type d -print0 | ${XARGS} -0 ${RM} -R

do-install:
    ${MKDIR} ${PREFIX}/${PHPWEBFTPDIR}
    @cd ${WRKSRC} && \
        ${FIND} * -type d -exec ${MKDIR} "${PREFIX}/${PHPWEBFTPDIR}/{}" \; && \
        ${FIND} -E * -type f -iregex ".*\.(php|html|css|gif|js)" \
            -exec ${INSTALL_DATA} "{}" "${PREFIX}/${PHPWEBFTPDIR}/{}" \;
    @${CHGRP} -R ${WWWGRP} ${PREFIX}/${PHPWEBFTPDIR}

.include <bsd.port.mk>