diff options
author | Martin Matuska <mm@FreeBSD.org> | 2012-01-26 09:36:58 +0000 |
---|---|---|
committer | Martin Matuska <mm@FreeBSD.org> | 2012-01-26 09:36:58 +0000 |
commit | eb6983914f946276d0dbd9b53e478217051af94a (patch) | |
tree | 69cf010f212eb8b2adc5781b4dfa9a6fded835ad /databases | |
parent | Somehow a character got lost (diff) |
This is the MySQL backend module for ProFTPD
WWW: http://www.proftpd.org/docs/contrib/mod_sql.html
Notes
Notes:
svn path=/head/; revision=289834
Diffstat (limited to 'databases')
-rw-r--r-- | databases/Makefile | 1 | ||||
-rw-r--r-- | databases/proftpd-mod_sql_mysql/Makefile | 28 | ||||
-rw-r--r-- | databases/proftpd-mod_sql_mysql/pkg-descr | 3 |
3 files changed, 32 insertions, 0 deletions
diff --git a/databases/Makefile b/databases/Makefile index 6eac8506bfdd..8462aaabfa33 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -636,6 +636,7 @@ SUBDIR += postgresql91-server SUBDIR += postgresql_autodoc SUBDIR += powerarchitect + SUBDIR += proftpd-mod_sql_mysql SUBDIR += pure-sql3 SUBDIR += puredb SUBDIR += pxlib diff --git a/databases/proftpd-mod_sql_mysql/Makefile b/databases/proftpd-mod_sql_mysql/Makefile new file mode 100644 index 000000000000..987112149151 --- /dev/null +++ b/databases/proftpd-mod_sql_mysql/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: proftpd-mod_sql_mysql +# Date created: 25 Jan 2012 +# Whom: Martin Matuska <mm@FreeBSD.org> +# +# $FreeBSD$ + +PORTNAME= mod_sql_mysql +CATEGORIES= databases ftp +PKGNAMEPREFIX= proftpd- + +MAINTAINER= mm@FreeBSD.org +COMMENT= MySQL module for ProFTPD + +LICENSE= GPLv2 + +DESCR= ${.CURDIR}/pkg-descr + +LATEST_LINK= ${PKGNAMEPREFIX}-${PORTNAME} +MASTERDIR= ${.CURDIR}/../../ftp/proftpd + +USE_MYSQL= yes + +INCLUDEDIRS= ${LOCALBASE}/include:${LOCALBASE}/include/mysql +LIBDIRS= ${LOCALBASE}/lib + +_PROFTPD_MODULE= ${PORTNAME} + +.include "${MASTERDIR}/Makefile" diff --git a/databases/proftpd-mod_sql_mysql/pkg-descr b/databases/proftpd-mod_sql_mysql/pkg-descr new file mode 100644 index 000000000000..23d1b8da987e --- /dev/null +++ b/databases/proftpd-mod_sql_mysql/pkg-descr @@ -0,0 +1,3 @@ +This is the MySQL module for ProFTPD + +WWW: http://www.proftpd.org/docs/contrib/mod_sql.html |