ad23595a89
httplib2 is a comprehensive HTTP client library that supports many features left out of other HTTP libraries. from maintainer Benoit Chesneau with tweaks by me and CATEGORIES reordering by ajacoutot@. ok ajacoutot@
32 lines
681 B
Makefile
32 lines
681 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2007/12/10 21:32:42 martynas Exp $
|
|
|
|
COMMENT= Python HTTP client library
|
|
|
|
DISTNAME= httplib2-0.4.0
|
|
PKGNAME= py-${DISTNAME}
|
|
|
|
CATEGORIES= www net
|
|
|
|
HOMEPAGE= http://code.google.com/p/httplib2/
|
|
|
|
MAINTAINER= Benoit Chesneau <benoitc@metavers.net>
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
|
|
MASTER_SITES= http://httplib2.googlecode.com/files/
|
|
|
|
MODULES= lang/python
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/py-httplib2
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/py-httplib2
|
|
|
|
do-regress:
|
|
${MODPY_BIN} ${WRKSRC}/httplib2/iri2uri.py
|
|
|
|
.include <bsd.port.mk>
|