mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
79702b87cd
- Mark BROKEN: Fails to build with mono 4 /usr/local/bin/mono builder/bless-builder.exe Bless -nowarn:0169 -d:ENABLE_UNIX_SPECIFIC >> Building module Bless.Util... Unhandled Exception: System.ComponentModel.Win32Exception: Cannot find the specified file at System.Diagnostics.Process.Start_shell (System.Diagnostics.ProcessStartInfo startInfo, System.Diagnostics.Process process) [0x00000] in <filename unknown>:0 at System.Diagnostics.Process.Start_common (System.Diagnostics.ProcessStartInfo startInfo, System.Diagnostics.Process process) [0x00000] in <filename unknown>:0 ... Reported by: pkg-fallout
35 lines
778 B
Makefile
35 lines
778 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= bless
|
|
PORTVERSION= 0.6.0
|
|
PORTREVISION= 4
|
|
PORTEPOCH= 1
|
|
CATEGORIES= editors
|
|
MASTER_SITES= http://download.gna.org/bless/
|
|
|
|
MAINTAINER= mono@FreeBSD.org
|
|
COMMENT= High quality, full featured hex editor
|
|
|
|
BROKEN= Fails to build with mono 4
|
|
|
|
USES= gmake mono pathfix pkgconfig
|
|
USE_GNOME= gnomeprefix gnomedocutils gtksharp20
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= ac_cv_path_MCS=${LOCALBASE}/bin/mcs
|
|
INSTALLS_OMF= yes
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
INSTALLS_OMF= yes
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|tests$$||g' \
|
|
${WRKSRC}/Makefile.in
|
|
@${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \
|
|
's|$$(datadir)/doc/$$(PACKAGE_NAME)-$$(PACKAGE_VERSION)|${DOCSDIR}|g'
|
|
|
|
.include <bsd.port.mk>
|