diff options
author | Rene Ladan <rene@FreeBSD.org> | 2017-03-08 12:18:28 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2017-03-08 12:18:28 +0000 |
commit | 0062a39db9825e1dd900f7c6716cb175e8121991 (patch) | |
tree | ea245e9c3909d4577c0dcdf8428d48928ad75087 /www/rt42 | |
parent | 6efa11f9d46a3e7eb7db5ad192b78e9113b8b699 (diff) | |
download | ports-0062a39db9825e1dd900f7c6716cb175e8121991.tar.gz ports-0062a39db9825e1dd900f7c6716cb175e8121991.zip |
www/rt42: remove optional dependency on expired databases/p5-DBD-Oracle
Notes
Notes:
svn path=/head/; revision=435678
Diffstat (limited to 'www/rt42')
-rw-r--r-- | www/rt42/Makefile | 14 | ||||
-rw-r--r-- | www/rt42/Makefile.cpan | 6 |
2 files changed, 4 insertions, 16 deletions
diff --git a/www/rt42/Makefile b/www/rt42/Makefile index 79f895dde832..99e3117a348b 100644 --- a/www/rt42/Makefile +++ b/www/rt42/Makefile @@ -26,14 +26,14 @@ NO_ARCH= yes # builtin webserver, simply deselect all of the web options. # # See doc/full_text_indexing.pod if you need to set up full text -# indexes on your ticket database. PostgreSQL or Oracle are +# indexes on your ticket database. PostgreSQL is # recommended in this case: the MYSQL / SphinxSearch combination # mentioned in the docs is currently unsupported in the ports, but see # http://www.infracaninophile.co.uk/articles/sphinxse.html OPTIONS_DEFINE= DEVELOPER GD GPG GRAPHVIZ SMIME DOCS OPTIONS_SINGLE= DB -OPTIONS_SINGLE_DB= MYSQL ORACLE PGSQL SQLITE +OPTIONS_SINGLE_DB= MYSQL PGSQL SQLITE OPTIONS_RADIO= WEB OPTIONS_RADIO_WEB= AP_MODFASTCGI AP_MODPERL LIGHTTPD SPAWN_FCGI @@ -83,8 +83,6 @@ MYSQL_RUN_DEPENDS= ${MYSQL_DEPS} PGSQL_RUN_DEPENDS= ${PGSQL_DEPS} -ORACLE_RUN_DEPENDS= ${ORACLE_DEPS} - SQLITE_RUN_DEPENDS= ${SQLITE_DEPS} DEVELOPER_DESC= Configure for Developers @@ -111,8 +109,8 @@ BUILD_DEPENDS+= ${RUN_DEPENDS} .include <bsd.port.options.mk> .if !${PORT_OPTIONS:MMYSQL} && !${PORT_OPTIONS:MPGSQL} && \ - ! ${PORT_OPTIONS:MORACLE} && !${PORT_OPTIONS:MSQLITE} -IGNORE= please select one of MYSQL, PGSQL, ORACLE or SQLITE + !${PORT_OPTIONS:MSQLITE} +IGNORE= please select one of MYSQL, PGSQL or SQLITE .endif .if ${PORT_OPTIONS:MMYSQL} @@ -123,10 +121,6 @@ DB_TYPE= mysql DB_TYPE= Pg .endif -.if ${PORT_OPTIONS:MORACLE} -DB_TYPE= Oracle -.endif - .if ${PORT_OPTIONS:MSQLITE} DB_TYPE= SQLite .endif diff --git a/www/rt42/Makefile.cpan b/www/rt42/Makefile.cpan index 4a9c15804716..b5dfc766b3aa 100644 --- a/www/rt42/Makefile.cpan +++ b/www/rt42/Makefile.cpan @@ -223,11 +223,6 @@ MODPERL2_DEPS= p5-libapreq2>0:www/p5-libapreq2 \ MYSQL_DEPS= p5-DBD-mysql>=2.1018:databases/p5-DBD-mysql -### --- ORACLE --- -### DBD::Oracle (avoid 1.23 -- ports has 1.19) - -ORACLE_DEPS= p5-DBD-Oracle>0:databases/p5-DBD-Oracle - ### --- PGSQL --- ### DBD::Pg 3.3.1 @@ -298,6 +293,5 @@ USERLOGO_DEPS= p5-Convert-Color>0:graphics/p5-Convert-Color HTML_DOC_DEPS= p5-HTML-Parser>0:www/p5-HTML-Parser ### --- AVOID --- -### 'DBD::Oracle' => [qw(1.23)], ### 'Devel::StackTrace' => [qw(1.28 1.29)], ### 'DBD::Pg' => [qw(3.3.0)], |