mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
779710c16d
PR: ports/106959 Submitted by: Li-Wen Hsu <lwhsu_AT_lwhsu dot org> Approved by: maintainer (Dryice Liu)
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
# New ports collection makefile for: roundup
|
|
# Date created: 23 Mar 2003
|
|
# Whom: nbm
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= roundup
|
|
PORTVERSION= 1.3.2
|
|
CATEGORIES= www python
|
|
MASTER_SITES= http://cheeseshop.python.org/packages/source/r/roundup/ \
|
|
http://dryice.name/computer/FreeBSD/distfiles/
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= dryice@dryice.name
|
|
COMMENT= An Issue-Tracking System for Knowledge Workers
|
|
|
|
USE_PYTHON= 2.3+
|
|
USE_PYDISTUTILS= yes
|
|
USE_GETTEXT= yes
|
|
|
|
OPTIONS= SQLITE "Support Sqlite as backend" on
|
|
OPTIONS+= METAKIT "Support metakit as backend" off
|
|
OPTIONS+= PGSQL "Support posggresql as backend" off
|
|
OPTIONS+= MYSQL "Support mysql as backend" off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !defined(WITHOUT_SQLITE)
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/sqlite/__init__.py:${PORTSDIR}/databases/py-PySQLite11
|
|
.endif
|
|
|
|
.if defined(WITH_METAKIT)
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/metakit.py:${PORTSDIR}/databases/metakit
|
|
.endif
|
|
|
|
.if defined(WITH_PGSQL)
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/psycopgmodule.so:${PORTSDIR}/databases/py-psycopg
|
|
.endif
|
|
|
|
.if defined(WITH_MYSQL)
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/MySQLdb/__init__.py:${PORTSDIR}/databases/py-MySQLdb
|
|
.endif
|
|
|
|
MAN1= roundup-admin.1 roundup-demo.1 roundup-mailgw.1 \
|
|
roundup-server.1
|
|
|
|
.include <bsd.port.post.mk>
|