63e6cc58b5
An integrated interface to current and future infrastructural services offered by Amazon Web Services. Currently, this includes: - Simple Storage Service (S3) - Simple Queue Service (SQS) - Elastic Compute Cloud (EC2) - Mechanical Turk - SimpleDB (SDB) based on the original submission by Bruno Bigras <bruno@burnbox.net> feedback and ok wcmaier@ merdely@
34 lines
858 B
Makefile
34 lines
858 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2008/06/09 18:20:36 okan Exp $
|
|
|
|
COMMENT = Python interface to Amazon Web Services
|
|
|
|
MODPY_EGG_VERSION = 1.3a
|
|
DISTNAME = boto-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
CATEGORIES = net
|
|
|
|
HOMEPAGE = http://code.google.com/p/boto/
|
|
MASTER_SITES = http://boto.googlecode.com/files/ \
|
|
http://pypi.python.org/packages/source/b/boto/ \
|
|
http://release.ingeniweb.com/pypi.python.org-mirror/boto/
|
|
|
|
MAINTAINER = Bruno Bigras <bruno@burnbox.net>
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MODULES = lang/python
|
|
MODPY_SETUPTOOLS = Yes
|
|
|
|
NO_REGRESS = Yes
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/boto
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/boto
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.txt ${PREFIX}/share/doc/boto
|
|
|
|
.include <bsd.port.mk>
|