freebsd-ports/www/py-google-api-python-client/Makefile
Nicola Vitale cbf8a44f72 - Add the option WITH_WEBTEST (default off)
- Define OPTIONSFILE to bypass infrastructure bug
- Include <bsd.port.options.mk>
- Install devel/py-simplejson only when Python version is
  less than 2.6  [1]
- Install the (optional) dependency www/py-WebTest only
  when the Python version is great than 2.5
- Remove all build dependencies  [1]

Suggested by:	rm  [1]
2012-05-01 08:41:01 +00:00

83 lines
2.3 KiB
Makefile

# New ports collection makefile for: google-api-python-client
# Date created: 2011-04-16
# Whom: Nicola Vitale <nivit@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= google-api-python-client
#PORTVERSION=
#PORTREVISION= 0
DISTVERSION= 1.0beta8
CATEGORIES= www
MASTER_SITES= GOOGLE_CODE
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= nivit@FreeBSD.org
COMMENT= Google API Client Library for Python
LICENSE= AL2
RUN_DEPENDS= ${PKGNAMEPREFIX}gflags>=1.4:${PORTSDIR}/devel/py-gflags \
${PKGNAMEPREFIX}httplib2>=0.6.0:${PORTSDIR}/www/py-httplib2 \
${PKGNAMEPREFIX}oauth2>=1.5.167:${PORTSDIR}/net/py-oauth2
USE_PYTHON= -2.7
USE_PYDISTUTILS= easy_install
USE_ZIP= yes
OPTIONS= GAE "Use the library with Google App Engine" off \
DJANGO "Use the library with Django" off \
WEBTEST "Use WebTest helper to test WSGI apps (Python 2.6+)" off
# bypass infrastructure bug
OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options
.include <bsd.port.options.mk>
PYDISTUTILS_PKGVERSION= ${DISTVERSION}
FIND_FILES= ${WRKSRC} -type f -and \( -name "*.py" -or -name "enable-app-engine-project" \) -print0
FIND_FILES_BAK= ${WRKSRC} -type f -name "*.bak"
XARGS_ARGS= -0
REINPLACE_ARGS= -i.bak -e 's,/usr/bin/env python,&${PYTHON_VER},' \
-e 's,/usr/bin/python.*,${PYTHON_CMD},'
DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
EXAMPLESDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME}
.if defined(WITH_GAE)
RUN_DEPENDS+= google-appengine>=1.4.3:${PORTSDIR}/www/google-appengine
.endif
.if defined(WITH_DJANGO)
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}django>=1.3:${PORTSDIR}/www/py-django
.endif
post-patch:
${FIND} ${FIND_FILES} | ${XARGS} ${XARGS_ARGS} ${REINPLACE_CMD}
@${FIND} ${FIND_FILES_BAK} -delete
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${DOCSDIR}
.endif
.if !defined(NOPORTEXAMPLES)
${MKDIR} ${EXAMPLESDIR}
cd ${WRKSRC}/samples && ${COPYTREE_SHARE} . ${EXAMPLESDIR}
.endif
.include <bsd.port.pre.mk>
# www/py-WebTest depends on www/py-webob, which runs only with Python 2.6+
.if defined(WITH_WEBTEST) && ${PYTHON_VER} >= 2.6
RUN_DEPENDS+= ${PKGNAMEPREFIX}WebTest>=1.3.3:${PORTSDIR}/www/py-WebTest
.endif
.if ${PYTHON_VER} <= 2.5
RUN_DEPENDS+= ${PKGNAMEPREFIX}simplejson>=2.5.0:${PORTSDIR}/devel/py-simplejson
.endif
.include <bsd.port.post.mk>