blob: 552f96f803fccb41028a87ebf01beb667b493940 (
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
|
# Created by: Kevin Golding <ports@caomhin.org>
# $FreeBSD$
PORTNAME= django-photologue
PORTVERSION= 2.6.1
PORTREVISION= 1
CATEGORIES= www python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= ports@caomhin.org
COMMENT= Reusable gallery application for Django
LICENSE= BSD
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/django/bin/django-admin.py:${PORTSDIR}/www/py-django \
${LOCALBASE}/bin/pildriver.py:${PORTSDIR}/graphics/py-imaging
USES= zip
USE_PYTHON= yes
USE_PYDISTUTILS= yes
PYDISTUTILS_AUTOPLIST= yes
OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options
OPTIONS_DEFINE= TAGGING
OPTIONS_DEFAULT= TAGGING
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MTAGGING}
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/tagging/models.py:${PORTSDIR}/www/py-django-tagging
.endif
.include <bsd.port.mk>
|