svn commit: r325295 - in head/misc/xless: . files

Alexey Dokuchaev danfe at FreeBSD.org
Sat Aug 24 12:32:34 UTC 2013


Author: danfe
Date: Sat Aug 24 12:32:33 2013
New Revision: 325295
URL: http://svnweb.freebsd.org/changeset/ports/325295

Log:
  - Fix parallel (-jX) builds by using NamedMakeSubdirs() macro instead of
    MakeSubdirs(); doing so allows imake to generate non-racy dependencies
  - Ensure that MAKE has correct value; cleanup the COMMENT while I'm here

Modified:
  head/misc/xless/Makefile
  head/misc/xless/files/patch-aa

Modified: head/misc/xless/Makefile
==============================================================================
--- head/misc/xless/Makefile	Sat Aug 24 12:04:22 2013	(r325294)
+++ head/misc/xless/Makefile	Sat Aug 24 12:32:33 2013	(r325295)
@@ -10,11 +10,12 @@ MASTER_SITES=	${MASTER_SITE_XCONTRIB} \
 MASTER_SITE_SUBDIR=	applications
 
 MAINTAINER=	ports at FreeBSD.org
-COMMENT=	X11 viewer for text files.  Useful as an add-on tool for other apps
+COMMENT=	X11-based viewer for text files
 
-MAKE_JOBS_UNSAFE=	yes
 USES=		imake
 USE_XORG=	ice sm x11 xaw xext xmu xpm xt
+MAKE_ARGS=	MAKE="${MAKE_CMD}"
+
 MAN1=		xless.1
 MANCOMPRESSED=	yes
 

Modified: head/misc/xless/files/patch-aa
==============================================================================
--- head/misc/xless/files/patch-aa	Sat Aug 24 12:04:22 2013	(r325294)
+++ head/misc/xless/files/patch-aa	Sat Aug 24 12:32:33 2013	(r325295)
@@ -10,3 +10,12 @@
  
  
             SRCS = help.c init.c popup.c util.c callbacks.c window.c main.c \
+@@ -24,7 +25,7 @@ LOCAL_LIBRARIES = -Lregexp -lregexp XawC
+ #define PassCDebugFlags
+ #endif
+ 
+-MakeSubdirs($(SUBDIRS))
++NamedMakeSubdirs(./regexp/libregexp.a,$(SUBDIRS))
+ ComplexProgramTarget(xless)
+ 
+ InstallNonExec(xless.help, $(LIBDIR))


More information about the svn-ports-head mailing list