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

(-)distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (ocaml-sqlite3-1.0.3.tar.bz2) = 2e8890fb3cf93675d8746f7631a399f8c1aec08617af7ccedf5ec597bcfb6950
1
SHA256 (release-1.6.1.tar.bz2) = 9d5ed422de61497436475329c3a9956870cfb8d0a272f764a9e57faff7ebea9f
2
SIZE (ocaml-sqlite3-1.0.3.tar.bz2) = 44085
2
SIZE (release-1.6.1.tar.bz2) = 54462
(-)files/patch-configure.ac (+11 lines)
Line 0 Link Here
1
--- configure.ac.orig	2011-12-17 13:30:46.622160436 +0100
2
+++ configure.ac	2011-12-17 13:30:56.046163766 +0100
3
@@ -26,7 +26,7 @@
4
 AC_CHECKING(for sqlite3 library)
5
 AC_CHECK_LIB(
6
   sqlite3, sqlite3_open,,
7
-  AC_ERROR([SQLite is required.  See the --with-sqlite3 configure option.]), -ldl)
8
+  AC_ERROR([SQLite is required.  See the --with-sqlite3 configure option.]))
9
 
10
 AC_CHECKING(for Sqlite header files)
11
 AC_CHECK_HEADER(sqlite3.h,,
(-)Makefile (-6 / +8 lines)
Lines 6-21 Link Here
6
#
6
#
7
7
8
PORTNAME=	sqlite3
8
PORTNAME=	sqlite3
9
PORTVERSION=	1.0.3
9
PORTVERSION=	1.6.1
10
PORTREVISION=	1
11
CATEGORIES=	databases
10
CATEGORIES=	databases
12
MASTER_SITES=	http://www.ocaml.info/ocaml_sources/
11
MASTER_SITES=	http://hg.ocaml.info/release/${PKGNAMEPREFIX}${PORTNAME}/archive/
13
PKGNAMEPREFIX=	ocaml-
12
PKGNAMEPREFIX=	ocaml-
14
DISTNAME=	${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION}
13
DISTNAME=	release-${PORTVERSION}
15
14
16
MAINTAINER=	jaapb@kerguelen.org
15
MAINTAINER=	jaapb@kerguelen.org
17
COMMENT=	OCaml bindings to sqlite3 library
16
COMMENT=	OCaml bindings to sqlite3 library
18
17
18
WRKSRC=		${WRKDIR}/${PKGNAMEPREFIX}${PORTNAME}-release-${PORTVERSION}
19
20
USE_AUTOTOOLS=		autoconf
21
USE_GMAKE=		yes
19
USE_SQLITE=		yes
22
USE_SQLITE=		yes
20
USE_OCAML=		yes
23
USE_OCAML=		yes
21
USE_OCAML_FINDLIB=	yes
24
USE_OCAML_FINDLIB=	yes
Lines 33-44 Link Here
33
USE_BZIP2=	yes
36
USE_BZIP2=	yes
34
37
35
DOCSDIR=	${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
38
DOCSDIR=	${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
36
PORTDOCS=	README style.css *.html
39
PORTDOCS=	style.css *.html
37
40
38
post-install:
41
post-install:
39
.if !defined(NOPORTDOCS)
42
.if !defined(NOPORTDOCS)
40
	@${MKDIR} ${DOCSDIR}
43
	@${MKDIR} ${DOCSDIR}
41
	@( cd ${WRKSRC}; ${INSTALL_DATA} README ${DOCSDIR} )
42
	@( cd ${WRKSRC}/doc;\
44
	@( cd ${WRKSRC}/doc;\
43
	   for f in `${FIND} . -type f -print`; do\
45
	   for f in `${FIND} . -type f -print`; do\
44
		${INSTALL_DATA} $${f} ${DOCSDIR};\
46
		${INSTALL_DATA} $${f} ${DOCSDIR};\

Return to bug 163409