View | Details | Raw Unified | Return to bug 156018
Collapse All | Expand All

(-)Makefile (-5 / +5 lines)
Lines 7-18 Link Here
7
7
8
PORTNAME=	bdb
8
PORTNAME=	bdb
9
PORTVERSION=	0.6.5
9
PORTVERSION=	0.6.5
10
PORTREVISION=	1
10
PORTREVISION=	2
11
CATEGORIES=	databases ruby
11
CATEGORIES=	databases ruby
12
MASTER_SITES=	RF
12
MASTER_SITES=	https://download.github.com/
13
PKGNAMEPREFIX=	${RUBY_PKGNAMEPREFIX}
13
PKGNAMEPREFIX=	${RUBY_PKGNAMEPREFIX}
14
PKGNAMESUFFIX=	${WITH_BDB_VER}
14
PKGNAMESUFFIX=	${WITH_BDB_VER}
15
DIST_SUBDIR=	ruby
15
DISTNAME=	knu-ruby-bdb-v0.6.5-8-g6feba54
16
16
17
MAINTAINER=	knu@FreeBSD.org
17
MAINTAINER=	knu@FreeBSD.org
18
COMMENT=	Ruby interface to Sleepycat's Berkeley DB revision 2 or later
18
COMMENT=	Ruby interface to Sleepycat's Berkeley DB revision 2 or later
Lines 30-40 Link Here
30
		--with-db-version=${BDB_LIB_NAME:S/^db//}
30
		--with-db-version=${BDB_LIB_NAME:S/^db//}
31
INSTALL_TARGET=	site-install
31
INSTALL_TARGET=	site-install
32
32
33
WRKSRC=		${WRKDIR}/knu-ruby-bdb-6feba54
34
33
DOCS=	Changes \
35
DOCS=	Changes \
34
	README.en \
36
	README.en \
35
	bdb.html \
36
	bdb.rd \
37
	bdb.rd \
37
	docs/*.html \
38
	docs/*.rd
38
	docs/*.rd
39
39
40
.include <bsd.port.pre.mk>
40
.include <bsd.port.pre.mk>
(-)distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (ruby/bdb-0.6.5.tar.gz) = edba29bb720fa32a93a80b2746667d52a30d63e418e89958b17896ef0f25889d
1
SHA256 (knu-ruby-bdb-v0.6.5-8-g6feba54.tar.gz) = 88582a29003fa0fb61c9136187db9cca575f5d11d64d5f5eec6e0c49f5416067
2
SIZE (ruby/bdb-0.6.5.tar.gz) = 321865
2
SIZE (knu-ruby-bdb-v0.6.5-8-g6feba54.tar.gz) = 286058
(-)files/patch-src_common.c (-20 lines)
Removed Link Here
1
--- src/common.c.orig	2009-05-02 19:19:39.000000000 +0400
2
+++ src/common.c	2009-05-02 19:20:04.000000000 +0400
3
@@ -941,7 +941,7 @@
4
 		}
5
 	    }
6
 	    if (!(dbst->options & BDB_NOT_OPEN)) {
7
-		bdb_test_error(dbst->dbp->close(dbst->dbp, flags));
8
+		dbst->dbp->close(dbst->dbp, flags);
9
 	    }
10
 	}
11
 	else {
12
@@ -950,7 +950,7 @@
13
 		bdb_ary_delete(&envst->db_ary, dbst->ori_val);
14
 	    }
15
 	    if (!(dbst->options & BDB_NOT_OPEN)) {
16
-		bdb_test_error(dbst->dbp->close(dbst->dbp, flags));
17
+		dbst->dbp->close(dbst->dbp, flags);
18
 	    }
19
 	}
20
     }

Return to bug 156018