diff options
Diffstat (limited to 'databases/mysql-xql')
-rw-r--r-- | databases/mysql-xql/Makefile | 28 | ||||
-rw-r--r-- | databases/mysql-xql/distinfo | 2 | ||||
-rw-r--r-- | databases/mysql-xql/files/patch-Makefile.in | 11 | ||||
-rw-r--r-- | databases/mysql-xql/files/patch-configure | 20 | ||||
-rw-r--r-- | databases/mysql-xql/pkg-descr | 10 | ||||
-rw-r--r-- | databases/mysql-xql/pkg-message | 34 |
6 files changed, 0 insertions, 105 deletions
diff --git a/databases/mysql-xql/Makefile b/databases/mysql-xql/Makefile deleted file mode 100644 index 91b19b1c3567..000000000000 --- a/databases/mysql-xql/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# Created by: Mina R Waheeb <syncer@gmail.com> -# $FreeBSD$ - -PORTNAME= mysql-xql -PORTVERSION= 1.0.0 -PORTREVISION= 3 -CATEGORIES= databases -MASTER_SITES= http://www.mysqludf.org/lib_mysqludf_xql/ -DISTNAME= lib_mysqludf_xql-${PORTVERSION} - -MAINTAINER= syncer@gmail.com -COMMENT= Library provides XML output functions to MySQL server - -BROKEN= unfetchable -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2016-07-04 - -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-static -INSTALL_TARGET= install-strip -USES= gmake libtool -USE_GNOME= libxml2 -USE_MYSQL= yes -USE_LDCONFIG= yes - -PLIST_FILES= lib/mysql/plugin/lib_mysqludf_xql.so - -.include <bsd.port.mk> diff --git a/databases/mysql-xql/distinfo b/databases/mysql-xql/distinfo deleted file mode 100644 index 0603e11cbabc..000000000000 --- a/databases/mysql-xql/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (lib_mysqludf_xql-1.0.0.tar.gz) = f992fcd77f7596aee32ddeccbd9b31aa67c9cf2cd04f84959db63f87e1ca0321 -SIZE (lib_mysqludf_xql-1.0.0.tar.gz) = 328273 diff --git a/databases/mysql-xql/files/patch-Makefile.in b/databases/mysql-xql/files/patch-Makefile.in deleted file mode 100644 index 81f053c03bac..000000000000 --- a/databases/mysql-xql/files/patch-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.org 2009-11-20 13:25:51.000000000 +0000 -+++ Makefile.in 2009-12-28 02:12:35.000000000 +0000 -@@ -226,7 +226,7 @@ - includedir = @includedir@ - infodir = @infodir@ - install_sh = @install_sh@ --libdir = @libdir@ -+libdir = @MYSQL_PLUGINDIR@ - libexecdir = @libexecdir@ - localedir = @localedir@ - localstatedir = @localstatedir@ diff --git a/databases/mysql-xql/files/patch-configure b/databases/mysql-xql/files/patch-configure deleted file mode 100644 index 06a15e87fd23..000000000000 --- a/databases/mysql-xql/files/patch-configure +++ /dev/null @@ -1,20 +0,0 @@ ---- configure.org 2009-11-19 14:51:20.000000000 +0000 -+++ configure 2009-12-28 00:24:17.000000000 +0000 -@@ -14555,7 +14555,7 @@ - - - --if test -n "$MYSQL_PLUGINDIR" && test "$libdir" == '${exec_prefix}/lib' ; then -+if test -n "$MYSQL_PLUGINDIR" ; then - { $as_echo "$as_me:${as_lineno-$LINENO}: setting libdir to mysql plugin dir $MYSQL_PLUGINDIR" >&5 - $as_echo "$as_me: setting libdir to mysql plugin dir $MYSQL_PLUGINDIR" >&6;} - libdir=$MYSQL_PLUGINDIR -@@ -14599,6 +14599,8 @@ - for i in /usr /usr/local ; do - if test -f "$i/lib/xml2Conf.sh" ; then - XML2_CONFIG="$i/lib/xml2Conf.sh" -+ elif test -f "$i/etc/xml2Conf.sh" ; then -+ XML2_CONFIG="$i/etc/xml2Conf.sh" - elif test -f "$i/lib/libxml2.so"; then - XML2_DIR="$i" - fi diff --git a/databases/mysql-xql/pkg-descr b/databases/mysql-xql/pkg-descr deleted file mode 100644 index c0205ccc2f2e..000000000000 --- a/databases/mysql-xql/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -The lib_mysqludf_xql library provides an array of functions, -which can be used to create XML output directly from MySQL -using a single SQL query. This prevents having to convert a -MySQL result to XML in a PHP script, Ruby script, etc. - -The library provides the same functionality as SQL/XML, seen -in MS SQL server and Oracle. However it uses normal functions. -By using subqueries the same results as SQL/XML can be generated. - -WWW: http://www.mysqludf.org/lib_mysqludf_xql/index.php diff --git a/databases/mysql-xql/pkg-message b/databases/mysql-xql/pkg-message deleted file mode 100644 index d8cd261b60c4..000000000000 --- a/databases/mysql-xql/pkg-message +++ /dev/null @@ -1,34 +0,0 @@ -To add the custom functions to your MySQL server use the following syntax: -(you may install only the functions you need): - -USE mysql; - -DROP FUNCTION IF EXISTS lib_mysqludf_xql_info; -DROP FUNCTION IF EXISTS xql_textdecl; -DROP FUNCTION IF EXISTS xql_pi; -DROP FUNCTION IF EXISTS xql_dtd; -DROP FUNCTION IF EXISTS xql_element; -DROP FUNCTION IF EXISTS xql_forest; -DROP FUNCTION IF EXISTS xql_concat; -DROP FUNCTION IF EXISTS xql_agg; -DROP FUNCTION IF EXISTS xql_comment; -DROP FUNCTION IF EXISTS xql_cdata; -DROP FUNCTION IF EXISTS xql_encode; - -CREATE FUNCTION lib_mysqludf_xql_info RETURNS STRING SONAME 'lib_mysqludf_xql.so'; -CREATE FUNCTION xql_textdecl RETURNS STRING SONAME 'lib_mysqludf_xql.so'; -CREATE FUNCTION xql_pi RETURNS STRING SONAME 'lib_mysqludf_xql.so'; -CREATE FUNCTION xql_dtd RETURNS STRING SONAME 'lib_mysqludf_xql.so'; -CREATE FUNCTION xql_element RETURNS STRING SONAME 'lib_mysqludf_xql.so'; -CREATE FUNCTION xql_forest RETURNS STRING SONAME 'lib_mysqludf_xql.so'; -CREATE FUNCTION xql_concat RETURNS STRING SONAME 'lib_mysqludf_xql.so'; -CREATE AGGREGATE FUNCTION xql_agg RETURNS STRING SONAME 'lib_mysqludf_xql.so'; -CREATE FUNCTION xql_comment RETURNS STRING SONAME 'lib_mysqludf_xql.so'; -CREATE FUNCTION xql_cdata RETURNS STRING SONAME 'lib_mysqludf_xql.so'; -CREATE FUNCTION xql_encode RETURNS STRING SONAME 'lib_mysqludf_xql.so'; - -Example for deinstalling a function: -DROP FUNCTION xql_encode; - -For function descriptions, see the following webpage: -http://http://www.mysqludf.org/lib_mysqludf_xql/index.php |