# Ports collection makefile for: pear-Auth # Date created: 2 February 2003 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= Auth PORTVERSION= 1.2.0 CATEGORIES= security www MASTER_SITES= http://pear.php.net/get/ PKGNAMEPREFIX= pear- EXTRACT_SUFX= .tgz DIST_SUBDIR= PEAR MAINTAINER= ports@FreeBSD.org COMMENT= PEAR authentication methods BUILD_DEPENDS= ${PEARDIR}/PEAR.php.dist:${PORTSDIR}/devel/pear-PEAR RUN_DEPENDS= ${BUILD_DEPENDS} NO_BUILD= yes .include .if exists(${LOCALBASE}/bin/php-config) PHP_BASE!= ${LOCALBASE}/bin/php-config --prefix .else PHP_BASE= ${LOCALBASE} .endif PEAR= ${LOCALBASE}/bin/pear LPHP_LIB= lib/php PEARDIR= ${PHP_BASE}/${LPHP_LIB} PLIST_SUB= PEARDIR=${LPHP_LIB} MANIFEST= Auth.php Container Container.php do-install: @${MKDIR} ${PEARDIR}/Auth .for FILE in ${MANIFEST} @${CP} -Rp ${WRKSRC}/${FILE} ${PEARDIR}/Auth .endfor @${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PEARDIR}/Auth @${CHMOD} -R a-x ${PEARDIR}/Auth/Container/*.php post-install: # Register a new package @${PEAR} install -r -f ${WRKDIR}/package.xml .include