Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 21 Dec 2015 19:39:32 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r404187 - head/x11-fm/doublecmd
Message-ID:  <201512211939.tBLJdWPo079096@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Mon Dec 21 19:39:32 2015
New Revision: 404187
URL: https://svnweb.freebsd.org/changeset/ports/404187

Log:
  x11-fm/doublecmd: Make less broken, then set BROKEN
  
  After the upgrade to FPC 3.0.0, the port failed the build depends stage.
  I've fixed that, and it compiles pretty far until this error:
  
    doublecmd.lpr(18,3) Fatal: (10022) Can't find unit uOverlayScrollBarFix
  
  I suspect that is a Lazarus unit and it might be a missing path.  In the
  meantime, the port can't build so we have to mark it BROKEN.

Modified:
  head/x11-fm/doublecmd/Makefile

Modified: head/x11-fm/doublecmd/Makefile
==============================================================================
--- head/x11-fm/doublecmd/Makefile	Mon Dec 21 19:39:24 2015	(r404186)
+++ head/x11-fm/doublecmd/Makefile	Mon Dec 21 19:39:32 2015	(r404187)
@@ -13,6 +13,9 @@ COMMENT=	Total Commander like file manag
 
 LICENSE=	GPLv2
 
+BROKEN=		fails with FPC-3.0.0-built Lazarus\
+		(Can't find unit uOverlayScrollBarFix) 
+
 BUILD_DEPENDS=	lazbuild:${PORTSDIR}/editors/lazarus \
 		fpcres:${PORTSDIR}/lang/fpc-utils
 
@@ -21,8 +24,8 @@ ONLY_FOR_ARCHS=	i386 amd64
 PORTDOCS=	*
 
 USES=		dos2unix
-USE_FPC=	cairo fcl-base fcl-db fcl-image fcl-json fcl-process fcl-registry \
-		fcl-xml hash iconvenc pasjpeg paszlib x11
+USE_FPC=	cairo fcl-base fcl-db fcl-image fcl-json fcl-registry \
+		fcl-xml iconvenc pasjpeg rtl-extra x11
 DOS2UNIX_FILES=	src/dmhelpmanager.pas
 WANT_GNOME=	yes
 
@@ -32,6 +35,7 @@ PROJECT_FILE=	src/doublecmd.lpi
 LAZARUS_VER=	1.4.2
 LAZBUILD_CMD=	${LOCALBASE}/bin/lazbuild -d --pcp=${WRKSRC}/tmppcp
 LAZARUS_DIR=	${LOCALBASE}/share/lazarus-${LAZARUS_VER}
+MAKE_ENV+=	LDVER=ld.bfd # for DragonFly
 
 HELPVERSION=	0.6.0
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512211939.tBLJdWPo079096>