mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 07:30:32 -04:00
- Unbreak this port - switch to GitHub Approved by: miwi (mentor) Differential Revision: https://reviews.freebsd.org/D12152
33 lines
769 B
Makefile
33 lines
769 B
Makefile
# Created by: Martin Matuska <mm@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= File_Iterator
|
|
PORTVERSION= 1.4.2
|
|
CATEGORIES= devel www pear
|
|
PKGNAMEPREFIX= pear-
|
|
|
|
MAINTAINER= joneum@FreeBSD.org
|
|
COMMENT= PEAR FileIterator implementation
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= pear-channel-phpunit>=20110327:devel/pear-channel-phpunit
|
|
RUN_DEPENDS= pear-channel-phpunit>=20110327:devel/pear-channel-phpunit
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= sebastianbergmann
|
|
GH_PROJECT= php-file-iterator
|
|
|
|
NO_BUILD= yes
|
|
|
|
PHP_DIR= share/PHP
|
|
|
|
PLIST_FILES= ${PHP_DIR}/${PORTNAME}/Iterator.php
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/${PHP_DIR}/${PORTNAME}
|
|
${INSTALL_SCRIPT} ${WRKSRC}/src/Iterator.php \
|
|
${STAGEDIR}${PREFIX}/${PHP_DIR}/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|