mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
90 lines
2.2 KiB
Makefile
90 lines
2.2 KiB
Makefile
# New ports collection makefile for: django-devel
|
|
# Date created: Jul 04 2006
|
|
# Whom: Florent Thoumie <flz@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= django
|
|
PORTVERSION= ${SNAPSHOT}
|
|
PORTREVISION= 1
|
|
CATEGORIES= www python
|
|
MASTER_SITES= http://www.cs.nctu.edu.tw/~lwhsu/ports/distfiles/ \
|
|
${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= lwhsu/django
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
PKGNAMESUFFIX= -devel
|
|
DISTNAME= Django-${PORTVERSION}
|
|
DIST_SUBDIR= python
|
|
|
|
MAINTAINER= lwhsu@FreeBSD.org
|
|
COMMENT= High-level Python Web framework
|
|
|
|
SNAPSHOT= 20080514
|
|
|
|
USE_BZIP2= yes
|
|
USE_GETTEXT= yes
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
|
|
INSTALLS_EGGINFO= yes
|
|
PYDISTUTILS_PKGNAME= Django
|
|
PYDISTUTILS_PKGVERSION= 0.97_pre
|
|
|
|
CONFLICTS= py2[0-9]-django-[0-9]*
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/py-django
|
|
|
|
OPTIONS= MOD_PYTHON3 "Install Apache2 with mod_python3" off \
|
|
POSTGRESQL "PostgreSQL support" off \
|
|
MYSQL "MySQL support" off \
|
|
SQLITE "SQLite support" off \
|
|
FASTCGI "FastCGI support" off
|
|
|
|
MAN1= compile-messages.1 \
|
|
daily_cleanup.1 \
|
|
django-admin.1 \
|
|
gather_profile_stats.1 \
|
|
make-messages.1
|
|
|
|
# bypass infrastructure bug
|
|
OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_MOD_PYTHON3)
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/mod_python/_psp.so:${PORTSDIR}/www/mod_python3
|
|
.endif
|
|
|
|
.if defined(WITH_POSTGRESQL)
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/psycopgmodule.so:${PORTSDIR}/databases/py-psycopg
|
|
.endif
|
|
|
|
.if defined(WITH_MYSQL)
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/_mysql.so:${PORTSDIR}/databases/py-MySQLdb
|
|
.endif
|
|
|
|
.if defined(WITH_SQLITE)
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/pysqlite2/__init__.py:${PORTSDIR}/databases/py-pysqlite20
|
|
.endif
|
|
|
|
.if defined(WITH_FASTCGI)
|
|
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}flup>0:${PORTSDIR}/www/py-flup
|
|
.endif
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/docs/man/* ${MAN1PREFIX}/man/man1
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/docs/*.txt ${DOCSDIR}
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} " * See ${DOCSDIR} for complete documentation"
|
|
@${ECHO_MSG} ""
|
|
.else
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} " * See http://www.djangoproject.com/documentation/ for complete documentation"
|
|
@${ECHO_MSG} ""
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|