c36aae1c69
-- The Horde Project is a group of developers who write Web applications using the Horde Application Framework, itself a product of the Project. The Horde Application Framework is written in PHP, and provides the common tools a Web application requires: classes for dealing with preferences, compression, browser detection, connection tracking, MIME, and more.
39 lines
899 B
Makefile
39 lines
899 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2002/01/26 18:42:05 avsm Exp $
|
|
|
|
COMMENT= "modular framework for web-based applications"
|
|
|
|
V= 2.0
|
|
DISTNAME= horde-${V}
|
|
CATEGORIES= devel www
|
|
NEED_VERSION= 1.502
|
|
HOMEPAGE= http://www.horde.org/
|
|
|
|
MAINTAINER= Anil Madhavapeddy <avsm@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ftp://ftp.horde.org/pub/horde/tarballs/ \
|
|
ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/horde/tarballs
|
|
|
|
NO_BUILD= Yes
|
|
NO_REGRESS= Yes
|
|
NO_CONFIGURE= Yes
|
|
EXTRACT_ONLY=
|
|
|
|
PREFIX= /var/www
|
|
INSTDIR= ${PREFIX}/horde
|
|
SUBST_VARS= INSTDIR
|
|
|
|
RUN_DEPENDS= :php4->=4.0.6-gettext-imap-mysql-mcrypt:www/php4,gettext,imap,mysql,mcrypt \
|
|
:php4-pear->=4.1.0:www/php4,-pear
|
|
|
|
do-install:
|
|
@cd ${PREFIX} && tar zxf ${FULLDISTDIR}/${DISTNAME}${EXTRACT_SUFX}
|
|
@mv ${INSTDIR}-${V} ${INSTDIR}
|
|
|
|
.include <bsd.port.mk>
|