diff options
author | mm <mm@FreeBSD.org> | 2012-01-26 17:38:14 +0800 |
---|---|---|
committer | mm <mm@FreeBSD.org> | 2012-01-26 17:38:14 +0800 |
commit | 548fb00afb0374b09db1b1c7bccb3e56403948b2 (patch) | |
tree | a3e2a017231fa5525cc8f9e37756ec941398c877 /databases | |
parent | 34ad1ea2cbab63e2b204e5bf7411b78f87a71d59 (diff) | |
download | freebsd-ports-gnome-548fb00afb0374b09db1b1c7bccb3e56403948b2.tar.gz freebsd-ports-gnome-548fb00afb0374b09db1b1c7bccb3e56403948b2.tar.zst freebsd-ports-gnome-548fb00afb0374b09db1b1c7bccb3e56403948b2.zip |
This is the PostgreSQL backend module for ProFTPD
WWW: http://www.proftpd.org/docs/contrib/mod_sql.html
Diffstat (limited to 'databases')
-rw-r--r-- | databases/Makefile | 1 | ||||
-rw-r--r-- | databases/proftpd-mod_sql_postgres/Makefile | 28 | ||||
-rw-r--r-- | databases/proftpd-mod_sql_postgres/pkg-descr | 3 |
3 files changed, 32 insertions, 0 deletions
diff --git a/databases/Makefile b/databases/Makefile index 8462aaabfa33..cd2298871c6d 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -637,6 +637,7 @@ SUBDIR += postgresql_autodoc SUBDIR += powerarchitect SUBDIR += proftpd-mod_sql_mysql + SUBDIR += proftpd-mod_sql_postgres SUBDIR += pure-sql3 SUBDIR += puredb SUBDIR += pxlib diff --git a/databases/proftpd-mod_sql_postgres/Makefile b/databases/proftpd-mod_sql_postgres/Makefile new file mode 100644 index 000000000000..69504beb9de4 --- /dev/null +++ b/databases/proftpd-mod_sql_postgres/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: proftpd-mod_sql_postgres +# Date created: 25 Jan 2012 +# Whom: Martin Matuska <mm@FreeBSD.org> +# +# $FreeBSD$ + +PORTNAME= mod_sql_postgres +CATEGORIES= databases ftp +PKGNAMEPREFIX= proftpd- + +MAINTAINER= mm@FreeBSD.org +COMMENT= PostgreSQL backend module for ProFTPD + +LICENSE= GPLv2 + +DESCR= ${.CURDIR}/pkg-descr + +LATEST_LINK= ${PKGNAMEPREFIX}-${PORTNAME} +MASTERDIR= ${.CURDIR}/../../ftp/proftpd + +USE_PGSQL= yes + +INCLUDEDIRS= ${LOCALBASE}/include +LIBDIRS= ${LOCALBASE}/lib + +_PROFTPD_MODULE= ${PORTNAME} + +.include "${MASTERDIR}/Makefile" diff --git a/databases/proftpd-mod_sql_postgres/pkg-descr b/databases/proftpd-mod_sql_postgres/pkg-descr new file mode 100644 index 000000000000..44499986fb55 --- /dev/null +++ b/databases/proftpd-mod_sql_postgres/pkg-descr @@ -0,0 +1,3 @@ +This is the PostgreSQL backend module for ProFTPD + +WWW: http://www.proftpd.org/docs/contrib/mod_sql.html |