36f21cbc67
PHP iCalendar is a php-based iCal file parser. Its based on v2.0 of the IETF spec. It displays iCal files in a nice logical, clean manner with day, week, month, and year navigation, printer view, RSS-enabled, and searchable. It supports 12 languages, is fully theme-able, and has complete timezone support.
39 lines
744 B
Makefile
39 lines
744 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2004/07/18 17:50:15 xsa Exp $
|
|
|
|
COMMENT= "web-based iCal file parser"
|
|
|
|
V= 1.1
|
|
DISTNAME= phpicalendar-${V}
|
|
CATEGORIES= www
|
|
|
|
HOMEPAGE= http://phpicalendar.sourceforge.net/
|
|
|
|
MAINTAINER= Xavier Santolaria <xsa@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=phpicalendar/}
|
|
EXTRACT_SUFX= .tgz
|
|
EXTRACT_ONLY=
|
|
|
|
RUN_DEPENDS= :php4-core-*:www/php4/core
|
|
|
|
NO_BUILD= Yes
|
|
NO_REGRESS= Yes
|
|
PKG_ARCH= *
|
|
|
|
PREFIX= /var/www
|
|
INSTDIR= ${PREFIX}/phpicalendar
|
|
|
|
SUBST_VARS= INSTDIR
|
|
|
|
do-install:
|
|
@cd ${PREFIX} && tar zxf ${FULLDISTDIR}/${DISTNAME}${EXTRACT_SUFX}
|
|
@mv ${INSTDIR}-${V} ${INSTDIR}
|
|
|
|
.include <bsd.port.mk>
|