8593616010
This brings a more modern Mono release to the ports tree. After discussions with others in the Mono community I targeted the mono 5.10.1.47 release which is the latest release in the "Visual Studio" release channel. This is considered to be the most stable and widely tested, which makes it a good candidate for us. We may upgrade to 5.12 after additional testing or introduce another Mono package for users who require testing against a newer release; this has yet to be determined. - Build from official release tarballs - Now include BoringSSL per upstream guidelines [1] - Remove ACCEPTANCE_TESTS, not being updated by upstream - No long require glib; Mono includes their own replacement - USES=display:tests required for some tests - Remove broken for armv6, armv7: file now available [2] - Mark as LLD safe as mono changed how it handles TLS [3] Changelog: http://www.mono-project.com/docs/about-mono/releases/5.10.0/ PR: 222271 [1] PR: 221236 [2] PR: 218885 [3] PR: 211367 Approved by: dbn Differential Revision: https://reviews.freebsd.org/D15780
32 lines
725 B
Makefile
32 lines
725 B
Makefile
# Created by: Juli Mallett
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gtk-sharp
|
|
PORTVERSION= 2.99.3
|
|
PORTREVISION= 3
|
|
CATEGORIES= x11-toolkits
|
|
MASTER_SITES= GNOME
|
|
PKGNAMESUFFIX= 30
|
|
|
|
MAINTAINER= kwm@FreeBSD.org
|
|
COMMENT= GTK+ and GNOME interfaces for the .NET runtime
|
|
|
|
LICENSE= LGPL20
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libinotify.so:devel/libinotify
|
|
RUN_DEPENDS= p5-XML-LibXML>=0:textproc/p5-XML-LibXML
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
USE_GNOME= cairo gdkpixbuf2 gtk30
|
|
USES= gettext-runtime gmake libtool mono pathfix perl5 pkgconfig shebangfix tar:xz
|
|
SHEBANG_FILES= parser/*.pl
|
|
USE_PERL5= run
|
|
MAKE_ENV= INSTALL_STRIP_FLAG=${STRIP}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|gmcs|mcs|g' \
|
|
${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|