1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-10 07:04:03 +00:00
freebsd-ports/security/php-Auth_OpenID2/Makefile
Martin Matuska 407a59395a - Update to 1.2.3
- fix MASTER_SITES
- add CONFLICTS with PEARized version 2 (security/pear-Auth_OpenID)

PR:		ports/121315
Submitted by:	mm
Approved by:	Gea-Suan Lin <gslin at gslin.org> (maintainer)
2008-03-04 11:32:02 +00:00

62 lines
1.3 KiB
Makefile

# New ports collection makefile for: php-Auth_OpenID
# Date created: 2007-04-24
# Whom: Gea-Suan Lin <gslin@gslin.org>
#
# $FreeBSD$
#
PORTNAME= Auth_OpenID
PORTVERSION= 1.2.3
CATEGORIES= security www pear
MASTER_SITES= http://openidenabled.com/files/php-openid/packages/
PKGNAMEPREFIX= php-
DISTNAME= php-openid-${PORTVERSION}
MAINTAINER= gslin@gslin.org
COMMENT= PHP OpenID library
RUN_DEPENDS= pear:${PORTSDIR}/devel/pear
BUILD_DEPENDS= ${RUN_DEPENDS}
CONFLICTS= pear-Auth_OpenID-2.*
USE_BZIP2= yes
NO_BUILD= yes
OPTIONS= BCMATH "Use bcmath instead of libgmp" off \
MYSQL "Use mysql" off \
PGSQL "Use pgsql" off \
SQLITE "Use sqlite" off
USE_PHP= curl
.include <bsd.port.pre.mk>
.ifdef(WITH_BCMATH)
USE_PHP+= bcmath
.else
USE_PHP+= gmp
.endif
.ifdef(WITH_MYSQL)
USE_PHP+= mysql
.endif
.ifdef(WITH_PGSQL)
USE_PHP+= pgsql
.endif
.ifdef(WITH_SQLITE)
USE_PHP+= sqlite
.endif
do-install:
${MKDIR} ${PREFIX}/share/pear/Auth/OpenID
${CP} ${WRKSRC}/Auth/OpenID.php ${PREFIX}/share/pear/Auth
${CP} ${WRKSRC}/Auth/OpenID/* ${PREFIX}/share/pear/Auth/OpenID
${MKDIR} ${PREFIX}/share/pear/Services/Yadis
${CP} ${WRKSRC}/Services/Yadis/* ${PREFIX}/share/pear/Services/Yadis
${MKDIR} ${EXAMPLESDIR}
${CP} -R ${WRKSRC}/examples/ ${EXAMPLESDIR}
.include <bsd.port.post.mk>