Mon Jul 19 10:43:05 2021 UTC ()
ocamlgraph: fix typos


(adam)
diff -r1.54 -r1.55 pkgsrc/devel/ocamlgraph/Makefile

cvs diff -r1.54 -r1.55 pkgsrc/devel/ocamlgraph/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/ocamlgraph/Makefile 2021/04/21 11:41:29 1.54
+++ pkgsrc/devel/ocamlgraph/Makefile 2021/07/19 10:43:05 1.55
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile,v 1.54 2021/04/21 11:41:29 adam Exp $ 1# $NetBSD: Makefile,v 1.55 2021/07/19 10:43:05 adam Exp $
2 2
3DISTNAME= ocamlgraph-1.8.8 3DISTNAME= ocamlgraph-1.8.8
4PKGREVISION= 30 4PKGREVISION= 30
5CATEGORIES= devel 5CATEGORIES= devel
6MASTER_SITES= http://ocamlgraph.lri.fr/download/ 6MASTER_SITES= http://ocamlgraph.lri.fr/download/
7 7
8MAINTAINER= jaapb@NetBSD.org 8MAINTAINER= jaapb@NetBSD.org
9HOMEPAGE= http://ocamlgraph.lri.fr/ 9HOMEPAGE= http://ocamlgraph.lri.fr/
10COMMENT= Graph library for OCaml 10COMMENT= Graph library for OCaml
11LICENSE= gnu-lgpl-v2.1 11LICENSE= gnu-lgpl-v2.1
12 12
13GNU_CONFIGURE= yes 13GNU_CONFIGURE= yes
14USE_TOOLS+= gmake 14USE_TOOLS+= gmake
@@ -23,19 +23,19 @@ MAKE_ENV+= USE_LABLGTK="${USE_LABLGTK}" @@ -23,19 +23,19 @@ MAKE_ENV+= USE_LABLGTK="${USE_LABLGTK}"
23 23
24.if ${OCAML_USE_OPT_COMPILER} == "yes" 24.if ${OCAML_USE_OPT_COMPILER} == "yes"
25MAKE_ENV+= OCAMLBEST="opt" 25MAKE_ENV+= OCAMLBEST="opt"
26.else 26.else
27MAKE_ENV+= OCAMLBEST="byte" 27MAKE_ENV+= OCAMLBEST="byte"
28.endif 28.endif
29 29
30post-install: 30post-install:
31.if ${USE_LABLGTK} == "yes" 31.if ${USE_LABLGTK} == "yes"
32. if ${OCAML_USE_OPT_COMPILER} == "yes" 32. if ${OCAML_USE_OPT_COMPILER} == "yes"
33 ${INSTALL_PROGRAM} ${WRKSRC}/editor/editor.opt ${DESTDIR}${PREFIX}/bin/graph-editor 33 ${INSTALL_PROGRAM} ${WRKSRC}/editor/editor.opt ${DESTDIR}${PREFIX}/bin/graph-editor
34 ${INSTALL_PROGRAM} ${WRKSRC}/dgraph/dgraph.opt ${DESTDIR}${PREFIX}/bin/graph-viewer 34 ${INSTALL_PROGRAM} ${WRKSRC}/dgraph/dgraph.opt ${DESTDIR}${PREFIX}/bin/graph-viewer
35. else 35. else
36 ${INSTALL_PROGRAM} ${WKRSRC}/editor/editor.byte ${DESTDIR}${PREFIX}/bin/graph-editor 36 ${INSTALL_PROGRAM} ${WRKSRC}/editor/editor.byte ${DESTDIR}${PREFIX}/bin/graph-editor
37 ${INSTALL_PROGRAM} ${WKRSRC}/dgraph/dgraph.byte ${DESTDIR}${PREFIX}/bin/graph-viewer 37 ${INSTALL_PROGRAM} ${WRKSRC}/dgraph/dgraph.byte ${DESTDIR}${PREFIX}/bin/graph-viewer
38. endif 38. endif
39.endif 39.endif
40 40
41.include "../../mk/bsd.pkg.mk" 41.include "../../mk/bsd.pkg.mk"