Sat Jan 21 15:38:25 2012 UTC ()
Mark as not-for-python24 (uses if statement that doesn't work in python-2.4.x)


(wiz)
diff -r1.7 -r1.8 pkgsrc/www/py-gdata/Makefile

cvs diff -r1.7 -r1.8 pkgsrc/www/py-gdata/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/www/py-gdata/Attic/Makefile 2012/01/20 12:21:39 1.7
+++ pkgsrc/www/py-gdata/Attic/Makefile 2012/01/21 15:38:25 1.8
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile,v 1.7 2012/01/20 12:21:39 wiz Exp $ 1# $NetBSD: Makefile,v 1.8 2012/01/21 15:38:25 wiz Exp $
2 2
3DISTNAME= gdata-2.0.16 3DISTNAME= gdata-2.0.16
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
5CATEGORIES= www python 5CATEGORIES= www python
6MASTER_SITES= http://gdata-python-client.googlecode.com/files/ 6MASTER_SITES= http://gdata-python-client.googlecode.com/files/
7 7
8MAINTAINER= mj@mjturner.net 8MAINTAINER= mj@mjturner.net
9HOMEPAGE= http://code.google.com/p/gdata-python-client/ 9HOMEPAGE= http://code.google.com/p/gdata-python-client/
10COMMENT= Google Data API Python client library 10COMMENT= Google Data API Python client library
11LICENSE= apache-2.0 11LICENSE= apache-2.0
12 12
13PKG_DESTDIR_SUPPORT= user-destdir 13PKG_DESTDIR_SUPPORT= user-destdir
14 14
@@ -117,21 +117,23 @@ REPLACE_PYTHON+= src/gdata/spreadsheet/t @@ -117,21 +117,23 @@ REPLACE_PYTHON+= src/gdata/spreadsheet/t
117REPLACE_PYTHON+= src/gdata/spreadsheets/client.py 117REPLACE_PYTHON+= src/gdata/spreadsheets/client.py
118REPLACE_PYTHON+= src/gdata/spreadsheets/data.py 118REPLACE_PYTHON+= src/gdata/spreadsheets/data.py
119REPLACE_PYTHON+= src/gdata/test_config.py 119REPLACE_PYTHON+= src/gdata/test_config.py
120REPLACE_PYTHON+= src/gdata/test_data.py 120REPLACE_PYTHON+= src/gdata/test_data.py
121REPLACE_PYTHON+= src/gdata/urlfetch.py 121REPLACE_PYTHON+= src/gdata/urlfetch.py
122REPLACE_PYTHON+= src/gdata/webmastertools/__init__.py 122REPLACE_PYTHON+= src/gdata/webmastertools/__init__.py
123REPLACE_PYTHON+= src/gdata/webmastertools/data.py 123REPLACE_PYTHON+= src/gdata/webmastertools/data.py
124REPLACE_PYTHON+= src/gdata/webmastertools/service.py 124REPLACE_PYTHON+= src/gdata/webmastertools/service.py
125REPLACE_PYTHON+= src/gdata/youtube/__init__.py 125REPLACE_PYTHON+= src/gdata/youtube/__init__.py
126REPLACE_PYTHON+= src/gdata/youtube/client.py 126REPLACE_PYTHON+= src/gdata/youtube/client.py
127REPLACE_PYTHON+= src/gdata/youtube/data.py 127REPLACE_PYTHON+= src/gdata/youtube/data.py
128REPLACE_PYTHON+= src/gdata/youtube/service.py 128REPLACE_PYTHON+= src/gdata/youtube/service.py
129 129
 130# 2.0.16 introduced a neologism
 131PYTHON_VERSIONS_INCOMPATIBLE= 24
130.include "../../lang/python/application.mk" 132.include "../../lang/python/application.mk"
131.include "../../lang/python/extension.mk" 133.include "../../lang/python/extension.mk"
132.if !empty(PYPKGPREFIX:Mpy24) 134.if !empty(PYPKGPREFIX:Mpy24)
133DEPENDS+= ${PYPKGPREFIX}-elementtree-[0-9]*:../../textproc/py-elementtree 135DEPENDS+= ${PYPKGPREFIX}-elementtree-[0-9]*:../../textproc/py-elementtree
134.else 136.else
135DEPENDS+= ${PYPKGPREFIX}-cElementTree-[0-9]*:../../textproc/py-cElementTree 137DEPENDS+= ${PYPKGPREFIX}-cElementTree-[0-9]*:../../textproc/py-cElementTree
136.endif 138.endif
137.include "../../mk/bsd.pkg.mk" 139.include "../../mk/bsd.pkg.mk"