diff options
author | Alastair Tse <liquidx@gentoo.org> | 2004-02-13 10:06:01 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2004-02-13 10:06:01 +0000 |
commit | bd7a2b9804af1af85fb767824005f728bf61ed06 (patch) | |
tree | 3389d80493c7242330b1aecf5cfd6368d0a16755 /dev-python/bsddb3/files | |
parent | Fixed typo and added more plugins: compatibility, secure_login, and show_ssl_... (diff) | |
download | historical-bd7a2b9804af1af85fb767824005f728bf61ed06.tar.gz historical-bd7a2b9804af1af85fb767824005f728bf61ed06.tar.bz2 historical-bd7a2b9804af1af85fb767824005f728bf61ed06.zip |
version bump to work with db-4.2, peg bsddb3-4.1 at db-4.0 and bsddb3-4.2 at db-4.2 and add patches to change references to version specific include files and libraries. removed sparc and ppc keyword for bsdb3-4.2.4.
Diffstat (limited to 'dev-python/bsddb3/files')
-rw-r--r-- | dev-python/bsddb3/files/bsddb3-4.1.3-db4.0.patch | 26 | ||||
-rw-r--r-- | dev-python/bsddb3/files/bsddb3-4.2.4-db4.2.patch | 26 | ||||
-rw-r--r-- | dev-python/bsddb3/files/digest-bsddb3-3.4.0 | 1 | ||||
-rw-r--r-- | dev-python/bsddb3/files/digest-bsddb3-4.2.4 | 1 |
4 files changed, 53 insertions, 1 deletions
diff --git a/dev-python/bsddb3/files/bsddb3-4.1.3-db4.0.patch b/dev-python/bsddb3/files/bsddb3-4.1.3-db4.0.patch new file mode 100644 index 000000000000..6b7c86a0aad9 --- /dev/null +++ b/dev-python/bsddb3/files/bsddb3-4.1.3-db4.0.patch @@ -0,0 +1,26 @@ +--- setup.py.old 2004-02-13 09:45:59.291327848 +0000 ++++ setup.py 2004-02-13 09:49:39.189898184 +0000 +@@ -70,11 +70,11 @@ + + # figure out from the base setting where the lib and .h are + if not incdir: +- incdir = os.path.join(BERKELEYDB_DIR, 'include') ++ incdir = os.path.join(BERKELEYDB_DIR, 'include/db4') + if not libdir: + libdir = os.path.join(BERKELEYDB_DIR, 'lib') +- if not '-ldb' in LIBS: +- libname = ['db'] ++ if not '-ldb-4.0' in LIBS: ++ libname = ['db-4.0'] + else: + libname = [] + utils = [] +@@ -93,7 +93,7 @@ + fp = os.popen('ldd %s 2>&1' % sys.executable) + results = fp.read() + status = fp.close() +- if not status and results.find('libdb.') >= 0: ++ if not status and results.find('libdb-4.0.') >= 0: + static = 1 + + if static: diff --git a/dev-python/bsddb3/files/bsddb3-4.2.4-db4.2.patch b/dev-python/bsddb3/files/bsddb3-4.2.4-db4.2.patch new file mode 100644 index 000000000000..7b601f3cba90 --- /dev/null +++ b/dev-python/bsddb3/files/bsddb3-4.2.4-db4.2.patch @@ -0,0 +1,26 @@ +--- setup.py.old 2004-02-13 09:53:33.220320152 +0000 ++++ setup.py 2004-02-13 09:54:06.966190000 +0000 +@@ -75,11 +75,11 @@ + + # figure out from the base setting where the lib and .h are + if not incdir: +- incdir = os.path.join(BERKELEYDB_DIR, 'include') ++ incdir = os.path.join(BERKELEYDB_DIR, 'include/db4.2') + if not libdir: + libdir = os.path.join(BERKELEYDB_DIR, 'lib') +- if not '-ldb' in LIBS: +- libname = ['db'] ++ if not '-ldb-4.2' in LIBS: ++ libname = ['db-4.2'] + else: + libname = [] + utils = [] +@@ -98,7 +98,7 @@ + fp = os.popen('ldd %s 2>&1' % sys.executable) + results = fp.read() + status = fp.close() +- if not status and results.find('libdb.') >= 0: ++ if not status and results.find('libdb-4.2.') >= 0: + static = 1 + + if static: diff --git a/dev-python/bsddb3/files/digest-bsddb3-3.4.0 b/dev-python/bsddb3/files/digest-bsddb3-3.4.0 deleted file mode 100644 index f6508a3a2493..000000000000 --- a/dev-python/bsddb3/files/digest-bsddb3-3.4.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 e433307b4ee1dd7be4fa1177b8be575a bsddb3-3.4.0.tar.gz 473854 diff --git a/dev-python/bsddb3/files/digest-bsddb3-4.2.4 b/dev-python/bsddb3/files/digest-bsddb3-4.2.4 new file mode 100644 index 000000000000..364dcb216cce --- /dev/null +++ b/dev-python/bsddb3/files/digest-bsddb3-4.2.4 @@ -0,0 +1 @@ +MD5 e7cf57b849e63e0a2dd791d9ad5a377a bsddb3-4.2.4.tar.gz 508095 |