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

(-)Makefile (-7 / +8 lines)
Lines 2-13 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	fsharp
4
PORTNAME=	fsharp
5
PORTVERSION=	3.0.25
5
PORTVERSION=	3.0.27
6
PORTREVISION=	1
7
CATEGORIES=	lang
6
CATEGORIES=	lang
8
MASTER_SITES=	https://nodeload.github.com/fsharp/fsharp/tar.gz/ \
7
MASTER_SITES=	GH
9
		CRITICAL
10
DISTFILES=	${PORTVERSION}
11
8
12
MAINTAINER=	mono@FreeBSD.org
9
MAINTAINER=	mono@FreeBSD.org
13
COMMENT=	Functional and object-oriented language for the .NET platform
10
COMMENT=	Functional and object-oriented language for the .NET platform
Lines 16-27 Link Here
16
BUILD_DEPENDS=	mono>=3.0:${PORTSDIR}/lang/mono
13
BUILD_DEPENDS=	mono>=3.0:${PORTSDIR}/lang/mono
17
RUN_DEPENDS=	mono>=3.0:${PORTSDIR}/lang/mono
14
RUN_DEPENDS=	mono>=3.0:${PORTSDIR}/lang/mono
18
15
16
USE_GITHUB=	yes
17
GH_ACCOUNT=	fsharp
18
GH_PROJECT=	fsharp
19
GH_TAGNAME=	${PORTVERSION}
20
GH_COMMIT=	f3c8ea8
21
19
USES=		pkgconfig
22
USES=		pkgconfig
20
USE_GMAKE=	yes
23
USE_GMAKE=	yes
21
USE_AUTOTOOLS=	autoconf
24
USE_AUTOTOOLS=	autoconf
22
25
23
WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
24
25
# This is currently a workaround for the differences between pkg_* and pkg(8).
26
# This is currently a workaround for the differences between pkg_* and pkg(8).
26
.if defined(WITH_PKGNG)
27
.if defined(WITH_PKGNG)
27
PLIST_SUB+=	LB="${LOCALBASE}/"
28
PLIST_SUB+=	LB="${LOCALBASE}/"
(-)distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (3.0.25) = 1252ada65996f80d31e1bcc5c6718015ec5172c40288429d7dd2d2656ed4b7f0
1
SHA256 (fsharp-3.0.27.tar.gz) = 96bd8aa8d84dc6f72d02f9eec56fd0d72dc469dd5d2bc36c822cbc9aa38e5337
2
SIZE (3.0.25) = 10693900
2
SIZE (fsharp-3.0.27.tar.gz) = 13145181
(-)files/patch-configure.ac (-20 lines)
Lines 1-20 Link Here
1
--- ./configure.ac.orig	2013-01-22 19:39:23.000000000 -0500
2
+++ ./configure.ac	2013-01-22 19:40:23.000000000 -0500
3
@@ -12,17 +12,6 @@
4
         AC_MSG_ERROR([You need to install pkg-config])
5
 fi
6
 
7
-MONO_REQUIRED_VERSION=2.9
8
-MONO_RECOMMENDED_VERSION=3.0
9
-
10
-if ! pkg-config --atleast-version=$MONO_REQUIRED_VERSION mono; then
11
-	AC_MSG_ERROR("You need mono $MONO_REQUIRED_VERSION")
12
-fi
13
-
14
-if ! pkg-config --atleast-version=$MONO_RECOMMENDED_VERSION mono; then
15
-	AC_MSG_WARN([Mono $MONO_RECOMMENDED_VERSION or higher is recommended, for better MSBuild (xbuild) compatibility])
16
-fi
17
-
18
 AC_PATH_PROG(MONO_SGEN, mono-sgen, no)
19
 
20
 # Checks for libraries.

Return to bug 181361