aboutsummaryrefslogtreecommitdiffstats
path: root/net/py-google/Makefile
blob: 1f362bfee53dc2a04c5748a1ac97b718d9a685b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# New ports collection makefile for:    py-google
# Date created:     22 April 2002
# Whom:         Hye-Shik Chang <perky@fallin.lv>
#
# $FreeBSD$
#

PORTNAME=   google
PORTVERSION=    0.6
CATEGORIES= net python
MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= pygoogle
PKGNAMEPREFIX=  ${PYTHON_PKGNAMEPREFIX}
DISTNAME=   pygoogle-${PORTVERSION}

MAINTAINER= perky@FreeBSD.org
COMMENT=    Python wrapper for the Google web API

RUN_DEPENDS=    ${PYXML}

USE_PYTHON= yes
USE_PYDISTUTILS=    yes

.if !defined(NOPORTDOCS)
PORTDOCS=   *
DOCSDIR=    ${PREFIX}/share/doc/py-google
EXAMPLESDIR=    ${PREFIX}/share/examples/py-google
.endif

post-patch:
# www/py-websvcs has an incompatible version of SOAP.py
    @${MV} ${WRKSRC}/SOAP.py ${WRKSRC}/SOAPgoogle.py
    @cd ${WRKSRC}; for f in *.py; do \
        ${REINPLACE_CMD} -e 's,import SOAP,import SOAPgoogle as SOAP,g' $$f; \
    done
    @${MKDIR} ${WRKSRC}/tests
    @${MV} ${WRKSRC}/*test*.py ${WRKSRC}/tests
    @${REINPLACE_CMD} -e 's,.*extra_path.*,,g' ${WRKSRC}/setup.py

post-install:
.if !defined(NOPORTDOCS)
    @${MKDIR} ${EXAMPLESDIR}
    @${INSTALL_SCRIPT} ${WRKSRC}/tests/*.py ${EXAMPLESDIR}
    @${MKDIR} ${DOCSDIR}
    @${CP} -R ${WRKSRC}/doc/ ${DOCSDIR}
.endif
    @${CAT} ${PKGMESSAGE}

.include <bsd.port.mk>