1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-02 11:09:29 +00:00

Update to 1.4

PR:		151156
Submitted by:	maintainer
This commit is contained in:
Tilman Keskinoz 2010-11-17 12:23:11 +00:00
parent 6262816694
commit 6d88a65a06
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=264686
5 changed files with 7 additions and 47 deletions

View File

@ -6,10 +6,11 @@
#
PORTNAME= pgocaml
PORTVERSION= 1.1
PORTVERSION= 1.4
CATEGORIES= databases
MASTER_SITES= BERLIOS
PKGNAMEPREFIX= ocaml-
EXTRACT_SUFX= .tgz
MAINTAINER= tcrimi@gmail.com
COMMENT= An OCaml interface to PostgreSQL
@ -26,6 +27,9 @@ OCAML_PKGDIRS= pgocaml
INSTALL_TARGET= findlib_install
pre-build:
cd ${WRKSRC}; ${GMAKE} depend
post-install:
@${FIND} ${OCAMLFIND_DESTDIR}/${PORTNAME} -type f | \
${SED} "s,^${PREFIX}/,," >> ${TMPPLIST}

View File

@ -1,3 +1,2 @@
MD5 (pgocaml-1.1.tar.gz) = e52d0f88b4ce850aa592a033c7e7b64d
SHA256 (pgocaml-1.1.tar.gz) = 9ab3808bb9f2f29bf12a80aac8ca722524b7d6e0e75a1f1a9be5058322be665a
SIZE (pgocaml-1.1.tar.gz) = 37039
SHA256 (pgocaml-1.4.tgz) = ee041b2efcf071b0b0e7f48428b2cfd8a1b4550bfe402dbe2a259af2b7b5c190
SIZE (pgocaml-1.4.tgz) = 41256

View File

@ -1,22 +0,0 @@
--- Makefile.orig 2007-12-17 18:15:17.332386495 -0500
+++ Makefile 2007-12-17 18:19:21.926038900 -0500
@@ -36,7 +36,7 @@
OBJS := pGOCaml_config.cmo pGOCaml.cmo
XOBJS := $(OBJS:.cmo=.cmx)
-all: pGOCaml_config.ml pgocaml.cma pgocaml.cmxa pa_pgsql.cmo test_pgocaml_lowlevel$(EXECUTABLE_SUFFIX) test_pgocaml$(EXECUTABLE_SUFFIX) pgocaml_prof$(EXECUTABLE_SUFFIX) META
+all: pGOCaml_config.ml pgocaml.cma pgocaml.cmxa pa_pgsql.cmo pgocaml_prof$(EXECUTABLE_SUFFIX) META
test_pgocaml_lowlevel$(EXECUTABLE_SUFFIX): test_pgocaml_lowlevel.cmo pgocaml.cma
ocamlfind ocamlc $(OCAMLCFLAGS) $(OCAMLCPACKAGES) $(OCAMLCLIBS) \
@@ -99,8 +99,8 @@
.depend: pGOCaml_config.ml
rm -f .depend
- ocamldep pGOCaml.mli pGOCaml.ml test_pgocaml_lowlevel.ml > $@
- -ocamldep -pp "camlp4o $(FOR_P4) ./pa_pgsql.cmo" test_pgocaml.ml >> $@
+ ocamldep pGOCaml.mli pGOCaml.ml > $@
+ -ocamldep -pp "camlp4o $(FOR_P4) ./pa_pgsql.cmo" >> $@
ifeq ($(wildcard .depend),.depend)
include .depend

View File

@ -1,10 +0,0 @@
--- pGOCaml.ml.orig 2009-03-01 09:59:13.864728737 -0500
+++ pGOCaml.ml 2009-03-01 09:59:53.353002107 -0500
@@ -22,6 +22,7 @@
open Printf
open ExtString
+open CalendarLib
type 'a t = {
ichan : in_channel; (* In_channel wrapping socket. *)

View File

@ -1,11 +0,0 @@
--- pGOCaml.mli.orig 2009-03-01 09:59:09.188523102 -0500
+++ pGOCaml.mli 2009-03-01 09:59:43.562605632 -0500
@@ -20,6 +20,8 @@
* Boston, MA 02111-1307, USA.
*)
+open CalendarLib
+
type 'a t (** Database handle. *)
exception Error of string