40 lines
828 B
Makefile
40 lines
828 B
Makefile
|
# $OpenBSD: Makefile,v 1.1.1.1 2008/02/03 21:14:04 robert Exp $
|
||
|
|
||
|
COMMENT= a framework for developing PHP web applications
|
||
|
|
||
|
V= 1.0.3
|
||
|
DISTNAME= zendframework-${V}
|
||
|
DISTFILES= ZendFramework-${V}.tar.gz
|
||
|
|
||
|
CATEGORIES= www devel
|
||
|
|
||
|
HOMEPAGE= http://framework.zend.com/
|
||
|
|
||
|
MAINTAINER= Robert Nagy <robert@openbsd.org>
|
||
|
|
||
|
# BSD
|
||
|
PERMIT_PACKAGE_CDROM= Yes
|
||
|
PERMIT_PACKAGE_FTP= Yes
|
||
|
PERMIT_DISTFILES_CDROM= Yes
|
||
|
PERMIT_DISTFILES_FTP= Yes
|
||
|
|
||
|
MASTER_SITES= ${HOMEPAGE}releases/ZendFramework-${V}/
|
||
|
|
||
|
NO_BUILD= Yes
|
||
|
NO_REGRESS= Yes
|
||
|
PKG_ARCH= *
|
||
|
|
||
|
WRKDIST= ${WRKDIR}/ZendFramework-${V}
|
||
|
|
||
|
PREFIX= /var/www
|
||
|
INSTDIR= ${PREFIX}/zendframework
|
||
|
SUBST_VARS= INSTDIR
|
||
|
|
||
|
RUN_DEPENDS= :php5-core-*:www/php5/core
|
||
|
|
||
|
do-install:
|
||
|
@-test ! -d ${INSTDIR} && mkdir ${INSTDIR}
|
||
|
@cd ${WRKDIST}/library; tar cf - . | (cd ${INSTDIR}; tar xf -)
|
||
|
|
||
|
.include <bsd.port.mk>
|