summaryrefslogtreecommitdiff
path: root/databases/py-MySQLdb-devel
diff options
context:
space:
mode:
Diffstat (limited to 'databases/py-MySQLdb-devel')
-rw-r--r--databases/py-MySQLdb-devel/Makefile39
-rw-r--r--databases/py-MySQLdb-devel/distinfo1
-rw-r--r--databases/py-MySQLdb-devel/files/patch-ab13
-rw-r--r--databases/py-MySQLdb-devel/pkg-comment1
-rw-r--r--databases/py-MySQLdb-devel/pkg-descr15
-rw-r--r--databases/py-MySQLdb-devel/pkg-plist25
6 files changed, 0 insertions, 94 deletions
diff --git a/databases/py-MySQLdb-devel/Makefile b/databases/py-MySQLdb-devel/Makefile
deleted file mode 100644
index 3a47c650a2fe..000000000000
--- a/databases/py-MySQLdb-devel/Makefile
+++ /dev/null
@@ -1,39 +0,0 @@
-# New ports collection makefile for: py-MySQLdb
-# Date created: 04 April 2000
-# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= py-MySQLdb
-PORTVERSION= 0.3.0b2
-CATEGORIES= databases python
-MASTER_SITES= http://dustman.net/andy/python/MySQLdb/0.3.0/
-DISTNAME= MySQLdb-${PORTVERSION}
-
-MAINTAINER= sobomax@FreeBSD.org
-
-BUILD_DEPENDS= ${PYDISTUTILS}
-LIB_DEPENDS= mysqlclient.6:${PORTSDIR}/databases/mysql322-client
-
-WRKSRC= ${WRKDIR}/MySQLdb-${PORTVERSION}
-
-USE_PYTHON= yes
-SETUP_CMD= cd ${WRKSRC} && ${PYTHON_CMD} setup.py
-
-do-configure:
- @${PERL} -pi -e 's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/setup.py
-
-do-build:
- ${SETUP_CMD} build
-
-do-install:
- ${SETUP_CMD} install
-.if !defined(NOPORTDOCS)
- @${MKDIR} ${PREFIX}/share/doc/py-MySQLdb/examples
- @${INSTALL_MAN} ${WRKSRC}/doc/* ${PREFIX}/share/doc/py-MySQLdb
- @${INSTALL_MAN} \
- ${WRKSRC}/examples/* ${PREFIX}/share/doc/py-MySQLdb/examples
-.endif
-
-.include <bsd.port.mk>
diff --git a/databases/py-MySQLdb-devel/distinfo b/databases/py-MySQLdb-devel/distinfo
deleted file mode 100644
index b5870381710a..000000000000
--- a/databases/py-MySQLdb-devel/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (MySQLdb-0.3.0b2.tar.gz) = 21adb1a9c3aeed1de14918d239e1ed0b
diff --git a/databases/py-MySQLdb-devel/files/patch-ab b/databases/py-MySQLdb-devel/files/patch-ab
deleted file mode 100644
index 12b44feae719..000000000000
--- a/databases/py-MySQLdb-devel/files/patch-ab
+++ /dev/null
@@ -1,13 +0,0 @@
---- setup.py.orig Tue Oct 31 21:28:16 2000
-+++ setup.py Wed Nov 1 13:51:41 2000
-@@ -32,8 +32,8 @@
- runtime_library_dirs = []
- extra_objects = [r'c:\mysql\lib\opt\mysqlclient.lib']
- elif os.name == "posix": # most Linux/UNIX platforms
-- include_dirs = ['/usr/include/mysql']
-- library_dirs = ['/usr/lib/mysql']
-+ include_dirs = ['%%LOCALBASE%%/include/mysql']
-+ library_dirs = ['%%LOCALBASE%%/lib/mysql']
- # MySQL-3.23 seems to need libz
- libraries = [mysqlclient, "z"]
- # On some platorms, this can be used to find the shared libraries
diff --git a/databases/py-MySQLdb-devel/pkg-comment b/databases/py-MySQLdb-devel/pkg-comment
deleted file mode 100644
index f3e147950f10..000000000000
--- a/databases/py-MySQLdb-devel/pkg-comment
+++ /dev/null
@@ -1 +0,0 @@
-Access a MySQL database through Python
diff --git a/databases/py-MySQLdb-devel/pkg-descr b/databases/py-MySQLdb-devel/pkg-descr
deleted file mode 100644
index 5c4095d67f35..000000000000
--- a/databases/py-MySQLdb-devel/pkg-descr
+++ /dev/null
@@ -1,15 +0,0 @@
-You can easily access a MySQL database through the Python MySQL module.
-
-This module should be mostly compatible with an older interface written by
-Joe Skinner and others. However, the older version is
-
- a) not thread-friendly (database operations could cause all other threads to
- block),
- b) written for MySQL 3.21 (does not compile against newer versions without
- patches),
- c) apparently not actively maintained.
-
-MySQLdb is a completely new module, distributed free of charge under a license
-derived from the Python license.
-
-WWW: http://dustman.net/andy/python/
diff --git a/databases/py-MySQLdb-devel/pkg-plist b/databases/py-MySQLdb-devel/pkg-plist
deleted file mode 100644
index e428681309de..000000000000
--- a/databases/py-MySQLdb-devel/pkg-plist
+++ /dev/null
@@ -1,25 +0,0 @@
-lib/%%PYTHON_VERSION%%/site-packages/MySQLdb.py
-lib/%%PYTHON_VERSION%%/site-packages/MySQLdb.pyc
-lib/%%PYTHON_VERSION%%/site-packages/CompatMysqldb.py
-lib/%%PYTHON_VERSION%%/site-packages/CompatMysqldb.pyc
-lib/%%PYTHON_VERSION%%/site-packages/_mysqlmodule.so
-share/doc/py-MySQLdb/MySQLdb-1.html
-share/doc/py-MySQLdb/MySQLdb-2.html
-share/doc/py-MySQLdb/MySQLdb-3.html
-share/doc/py-MySQLdb/MySQLdb-4.html
-share/doc/py-MySQLdb/MySQLdb-FAQ-1.html
-share/doc/py-MySQLdb/MySQLdb-FAQ-2.html
-share/doc/py-MySQLdb/MySQLdb-FAQ-3.html
-share/doc/py-MySQLdb/MySQLdb-FAQ.html
-share/doc/py-MySQLdb/MySQLdb-FAQ.sgml
-share/doc/py-MySQLdb/MySQLdb.html
-share/doc/py-MySQLdb/MySQLdb.sgml
-share/doc/py-MySQLdb/examples/README
-share/doc/py-MySQLdb/examples/dbtrainer0
-share/doc/py-MySQLdb/examples/dbtrainer1
-share/doc/py-MySQLdb/examples/dbtrainer2
-share/doc/py-MySQLdb/examples/dbtrainer3
-share/doc/py-MySQLdb/examples/dbtrainer4
-share/doc/py-MySQLdb/examples/test.sql
-@dirrm share/doc/py-MySQLdb/examples
-@dirrm share/doc/py-MySQLdb