summaryrefslogtreecommitdiff
path: root/databases/py-bsddb/files/setup.py
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2020-12-29 11:53:43 +0000
committerRene Ladan <rene@FreeBSD.org>2020-12-29 11:53:43 +0000
commit91408dc2935d9f09ae0b4d44bd99b401d75de23f (patch)
tree8288e899820bef4d4cfdcf4a493c4a4f63691751 /databases/py-bsddb/files/setup.py
parentRequire kld before starting virtual_oss in case cuse(3) is loaded from there. (diff)
Remove expired ports:
2020-12-12 textproc/py-hypua2jamo: Uses deprecated version of python 2020-12-12 devel/py-delfick_error: Uses deprecated version of python 2020-12-12 devel/py-fusefs: Uses deprecated version of python 2020-08-15 devel/py-noseofyeti: Uses deprecated version of python 2020-12-29 databases/py-bsddb: Uses deprecated version of python 2020-12-29 www/py-webhelpers: Uses deprecated version of python 2020-12-29 security/py-pyptlib: Uses deprecated version of python 2020-12-29 japanese/py-zinnia: Uses deprecated version of python 2020-12-29 math/slepc: Broken, uses deprecated version of python 2020-12-29 www/py-pastescript: Uses deprecated version of python 2020-12-29 databases/ldb14: Uses deprecated version of python 2020-12-29 math/py-slepc4py: Depends on broken and expiring math/slepc 2020-12-29 multimedia/py-kaa-base: Uses deprecated version of python 2020-12-29 devel/py-ydbf: Uses deprecated version of python 2020-12-29 devel/py-SymbolType: Uses deprecated version of python
Diffstat (limited to 'databases/py-bsddb/files/setup.py')
-rw-r--r--databases/py-bsddb/files/setup.py32
1 files changed, 0 insertions, 32 deletions
diff --git a/databases/py-bsddb/files/setup.py b/databases/py-bsddb/files/setup.py
deleted file mode 100644
index b8a0f7183f2b..000000000000
--- a/databases/py-bsddb/files/setup.py
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/usr/bin/env python
-# To use:
-# python setup.py install
-#
-
-__version__ = "$FreeBSD: /tmp/pcvs/ports/databases/py-bsddb/files/setup.py,v 1.1 2003-07-31 20:03:51 perky Exp $"
-
-import os
-try:
- import distutils
- from distutils import sysconfig
- from distutils.command.install import install
- from distutils.core import setup, Extension
-except:
- raise SystemExit, "Distutils problem"
-
-install.sub_commands = filter(lambda (cmd, avl): 'egg' not in cmd,
- install.sub_commands)
-
-prefix = sysconfig.PREFIX
-inc_dirs = [prefix + "/include"]
-lib_dirs = [prefix + "/lib"]
-libs = [os.environ['BSDDB_VERSION']]
-
-setup(name = "bsddb",
- description = "BSDDB Extension to Python",
-
- ext_modules = [Extension('_bsddb', ['_bsddb.c'],
- include_dirs = inc_dirs,
- libraries = libs,
- library_dirs = lib_dirs)]
- )