mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
acd94e936f
Such fields can contain any picklable objects. It is incredibly useful for storing just about anything in the database (provided it is Pickle-able, of course) when there isn't a 'proper' field for the job. WWW: https://pypi.python.org/pypi/django-picklefield/ PR: ports/185548 Submitted by: Johannes Jost Meixner <xmj@chaot.net>
32 lines
698 B
Makefile
32 lines
698 B
Makefile
# Created by: Johannes Meixner <xmj@chaot.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= picklefield
|
|
PORTVERSION= 0.3.1
|
|
CATEGORIES= www python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}django-
|
|
DISTNAME= django-${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= xmj@chaot.net
|
|
COMMENT= Pickled object field for Django
|
|
|
|
LICENSE= MIT
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django>=0:${PORTSDIR}/www/py-django \
|
|
${PYTHON_PKGNAMEPREFIX}six>=0:${PORTSDIR}/devel/py-six
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
PYDISTUTILS_AUTOPLIST= yes
|
|
|
|
PORTDOCS= README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|