blob: 63a600a7ca54c4d1dbbd19fd10c3eb2c16fbb065 (
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
|
# New ports collection makefile for: PostgreSQL PL/Python
# Date created: March 4, 2004
# Whom: Dima Dorfman <dd@FreeBSD.org>
#
# $FreeBSD$
#
CATEGORIES= databases python
PKGNAMESUFFIX= -plpython
MAINTAINER= dd@FreeBSD.org
COMMENT= A module for using Python to write SQL functions
POSTGRESQL_PORT?= databases/postgresql7
POSTGRESQL_SUBPORT=YES
.include "../../${POSTGRESQL_PORT}/Makefile"
RUN_DEPENDS= postgres:${PORTSDIR}/${POSTGRESQL_PORT}
USE_PYTHON= yes
MAKE_ARGS+= -C src/pl/plpython
CONFIGURE_ARGS= --with-python
.include <bsd.port.mk>
|