openbsd-ports/devel/smarty/Makefile
benoit af45000d08 - update smarty to 2.6.26
ok ajacoutot@
2009-06-20 14:31:56 +00:00

55 lines
1.3 KiB
Makefile

# $OpenBSD: Makefile,v 1.10 2009/06/20 14:31:56 benoit Exp $
COMMENT-main = template engine for PHP
COMMENT-docs = documentation for Smarty
VERSION = 2.6.26
DISTNAME = Smarty-${VERSION}
PKGNAME-main = smarty-${VERSION}
DISTNAME-docs = Smarty-2.6.14-docs
PKGNAME-docs = smarty-docs-${VERSION}
CATEGORIES = devel www
HOMEPAGE = http://www.smarty.net
MAINTAINER = Benoit Lecocq <benoit@openbsd.org>
# PHP License
PERMIT_PACKAGE_CDROM = Yes
PERMIT_PACKAGE_FTP = Yes
PERMIT_DISTFILES_CDROM =Yes
PERMIT_DISTFILES_FTP = Yes
MASTER_SITES = ${HOMEPAGE}/do_download.php?download_file=
MASTER_SITES0 = ${HOMEPAGE}/distributions/manual/en/
DISTFILES = ${DISTNAME}${EXTRACT_SUFX} \
${DISTNAME-docs}${EXTRACT_SUFX}:0
MULTI_PACKAGES = -main -docs
PHP_VERSION = 5
RUN_DEPENDS-main = ::www/php${PHP_VERSION}/core
CHROOT_DIR = /var/www
PREFIX-main = ${CHROOT_DIR}
NO_BUILD = Yes
NO_REGRESS = Yes
PKG_ARCH = *
do-install:
${INSTALL_DATA_DIR} ${WRKINST}${CHROOT_DIR}/smarty
cd ${WRKSRC}/libs; tar cf - . | \
tar xf - -C ${WRKINST}${CHROOT_DIR}/smarty
${CHOWN} -R ${LIBOWN}:${LIBGRP} ${WRKINST}${CHROOT_DIR}/smarty
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/smarty
cd ${WRKDIR}/manual; tar cf - . | \
tar xf - -C ${PREFIX}/share/doc/smarty
${CHOWN} -R ${DOCOWN}:${DOCGRP} ${PREFIX}/share/doc/smarty
.include <bsd.port.mk>