summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Marino <marino@FreeBSD.org>2014-05-09 13:09:22 +0000
committerJohn Marino <marino@FreeBSD.org>2014-05-09 13:09:22 +0000
commit2bd4b61f01fe1c66c184c1792d6e10d73f70420b (patch)
tree6f3c5bdbb079ed9b107ce927c449f1a0b8949299
parent- Add staging support (diff)
devel/ocaml-pomap: Update version 3.0.1 => 3.0.3 to unbreak and stage
This port apparently broke when Ocaml was updated to 4.0.1. Add stage support as part of the upgrade which restores the build. Also remove author line from pkg-descr.
-rw-r--r--devel/ocaml-pomap/Makefile12
-rw-r--r--devel/ocaml-pomap/distinfo4
-rw-r--r--devel/ocaml-pomap/pkg-descr1
3 files changed, 8 insertions, 9 deletions
diff --git a/devel/ocaml-pomap/Makefile b/devel/ocaml-pomap/Makefile
index 53e52bfe8df6..1ae05a8bace8 100644
--- a/devel/ocaml-pomap/Makefile
+++ b/devel/ocaml-pomap/Makefile
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= pomap
-PORTVERSION= 3.0.1
+PORTVERSION= 3.0.3
CATEGORIES= devel
MASTER_SITES= http://cdn.bitbucket.org/mmottl/pomap/downloads/
PKGNAMEPREFIX= ocaml-
@@ -29,7 +29,6 @@ EXAMPLESDIR= ${OCAML_EXAMPLESDIR}/${PORTNAME}
PORTDOCS= *
PORTEXAMPLES= *
-NO_STAGE= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDOCS}
@@ -42,14 +41,15 @@ PLIST_DIRSTRY+= ${OCAML_EXAMPLESDIR:S,^${PREFIX}/,,}
post-install:
.if ${PORT_OPTIONS:MDOCS}
- @${MKDIR} ${DOCSDIR}
+ @${MKDIR} ${STAGEDIR}${DOCSDIR}
.for i in AUTHORS.txt CHANGES.txt README.md
- (cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${DOCSDIR})
+ (cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${STAGEDIR}${DOCSDIR})
.endfor
.endif
.if ${PORT_OPTIONS:MEXAMPLES}
- @${MKDIR} ${EXAMPLESDIR}
- @(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${EXAMPLESDIR})
+ @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
+ @(cd ${WRKSRC}/examples && \
+ ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})
.endif
.include <bsd.port.mk>
diff --git a/devel/ocaml-pomap/distinfo b/devel/ocaml-pomap/distinfo
index 0f183b22f4bd..47a2da926776 100644
--- a/devel/ocaml-pomap/distinfo
+++ b/devel/ocaml-pomap/distinfo
@@ -1,2 +1,2 @@
-SHA256 (pomap-3.0.1.tar.gz) = 1afbedafedb6922937cb58b3bbef057e69f2908cac899288257ba608fbf534ce
-SIZE (pomap-3.0.1.tar.gz) = 69989
+SHA256 (pomap-3.0.3.tar.gz) = ff35571fb06230d4448ec61d57dc46d38019ceba1e650600c7eedf26590a5256
+SIZE (pomap-3.0.3.tar.gz) = 73040
diff --git a/devel/ocaml-pomap/pkg-descr b/devel/ocaml-pomap/pkg-descr
index 2eb9c2a56c01..378909d5b568 100644
--- a/devel/ocaml-pomap/pkg-descr
+++ b/devel/ocaml-pomap/pkg-descr
@@ -3,5 +3,4 @@ ordered elements. Whereas a total order allows you to say whether some
element is lower, equal or greater than another one, partial orders also
allow for a "don-t know" case.
-Author: Markus Mottl <markus.mottl@gmail.com>
WWW: https://bitbucket.org/mmottl/pomap