View | Details | Raw Unified | Return to bug 194529 | Differences between
and this patch

Collapse All | Expand All

(-)b/devel/ocaml-opam/Makefile (-4 / +27 lines)
Lines 2-12 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	opam
4
PORTNAME=	opam
5
PORTVERSION=	1.1.1
5
PORTVERSION=	1.2.0
6
CATEGORIES=	devel
6
CATEGORIES=	devel
7
MASTER_SITES=	http://www.ocamlpro.com/pub/
7
8
PKGNAMEPREFIX=	ocaml-
8
USE_GITHUB=	yes
9
DISTNAME=	opam-full-${PORTVERSION}
9
10
GH_ACCOUNT=	ocaml
11
GH_PROJECT=	opam
12
GH_TAGNAME=	1.2.0
13
GH_COMMIT=	cbe460b
10
14
11
MAINTAINER=	joris@giovannangeli.fr
15
MAINTAINER=	joris@giovannangeli.fr
12
COMMENT=	Source-based package manager for OCaml
16
COMMENT=	Source-based package manager for OCaml
Lines 15-20 LICENSE= GPLv3 Link Here
15
19
16
BUILD_DEPENDS=	curl:${PORTSDIR}/ftp/curl
20
BUILD_DEPENDS=	curl:${PORTSDIR}/ftp/curl
17
21
22
23
OPTIONS_DEFINE=	RSYNC GIT WGET HG ASPCUD
24
25
RSYNC_DESC=	"Support remote repository synchronized with Rsync"
26
WGET_DESC=	"Support remote repository synchronized with git"
27
GIT_DESC=	"Support remote repository synchronized with HTTP"
28
HG_DESC=	"Support remote repository synchronized with mercurial"
29
ASPCUD_DESC=	"Use aspcud as an external dependencies solver"
30
31
OTIONS_DEFAULT=	RSYNC GIT WGET
32
33
WGET_RUN_DEPENDS:=wget:${PORTSDIR}/ftp/wget
34
RSYNC_RUN_DEPENDS:=rsync:${PORTSDIR}/net/rsync
35
GIT_RUN_DEPENDS:=git:${PORTSDIR}/devel/git
36
HG_RUN_DEPENDS:=hg:${PORTSDIR}/devel/mercurial
37
ASPCUD_RUN_DEPENDS:=${PORTSDIR}/math/aspcud
38
39
ALL_TARGET= lib-ext all
40
18
USES=		gmake
41
USES=		gmake
19
USE_OCAML=	yes
42
USE_OCAML=	yes
20
GNU_CONFIGURE=	yes
43
GNU_CONFIGURE=	yes
(-)b/devel/ocaml-opam/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (opam-full-1.1.1.tar.gz) = bfcb78109cf88612b5170b25bb96aa576ed3908c8a68b9164a7ae16f9f59ae38
1
SHA256 (opam-1.2.0.tar.gz) = d5d8941d7795660f2a78f918e98bd2e827193c6e2ba9874574507a79814fda8d
2
SIZE (opam-full-1.1.1.tar.gz) = 2278273
2
SIZE (opam-1.2.0.tar.gz) = 596559
(-)a/devel/ocaml-opam/files/patch-Makefile (-10 lines)
Removed Link Here
1
--- Makefile.orig	2014-01-14 17:04:37.000000000 +0100
2
+++ Makefile
3
@@ -1,6 +1,6 @@
4
 -include Makefile.config
5
 
6
-LOCAL_OCPBUILD=./ocp-build/ocp-build -no-use-ocamlfind
7
+LOCAL_OCPBUILD=./ocp-build/ocp-build -no-use-ocamlfind -no-user-prefs
8
 OCPBUILD ?= $(LOCAL_OCPBUILD)
9
 SRC_EXT=src_ext
10
 TARGETS = opam opam-admin opam-installer

Return to bug 194529