svn commit: r324001 - in head/graphics/xpaint: . files

Alexey Dokuchaev danfe at FreeBSD.org
Wed Jul 31 04:37:26 UTC 2013


Author: danfe
Date: Wed Jul 31 04:37:25 2013
New Revision: 324001
URL: http://svnweb.freebsd.org/changeset/ports/324001

Log:
  - Fix parallel (-jX) builds, remove jobs unsafe mark
  - Drop article from COMMENT, expand creator's name

Added:
  head/graphics/xpaint/files/patch-Makefile.in   (contents, props changed)
Modified:
  head/graphics/xpaint/Makefile

Modified: head/graphics/xpaint/Makefile
==============================================================================
--- head/graphics/xpaint/Makefile	Wed Jul 31 02:23:14 2013	(r324000)
+++ head/graphics/xpaint/Makefile	Wed Jul 31 04:37:25 2013	(r324001)
@@ -1,4 +1,4 @@
-# Created by: swallace
+# Created by: Steven Wallace <swallace at FreeBSD.org>
 # $FreeBSD$
 
 PORTNAME=	xpaint
@@ -8,7 +8,7 @@ CATEGORIES=	graphics
 MASTER_SITES=	SF/sf-${PORTNAME}/sf-${PORTNAME}/${PORTNAME}-${PORTVERSION:R}
 
 MAINTAINER=	johans at FreeBSD.org
-COMMENT=	A simple paint program
+COMMENT=	Simple paint program
 
 LIB_DEPENDS=	png15:${PORTSDIR}/graphics/png \
 		jpeg:${PORTSDIR}/graphics/jpeg \
@@ -25,7 +25,6 @@ USE_XORG=	xft xmu xpm
 USE_AUTOTOOLS=	libtool
 GNU_CONFIGURE=	yes
 USE_GHOSTSCRIPT_RUN=yes
-MAKE_JOBS_UNSAFE=	yes
 
 CPPFLAGS+=	-I${LOCALBASE}/include -I${LOCALBASE}/include/freetype2
 LDFLAGS+=	-L${LOCALBASE}/lib

Added: head/graphics/xpaint/files/patch-Makefile.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/xpaint/files/patch-Makefile.in	Wed Jul 31 04:37:25 2013	(r324001)
@@ -0,0 +1,37 @@
+--- Makefile.in.orig	2013-07-31 11:35:58.000000000 +0800
++++ Makefile.in	2013-07-31 11:40:10.000000000 +0800
+@@ -1009,10 +1009,10 @@
+ 	echo "#define XPAINT_VERSION \"$(PACKAGE_VERSION)\"" > version.h
+ 
+ substads: substads.c
+-	$(CC) substads.c -o $@
++	$(CC) $(CFLAGS) substads.c -o $@
+ 
+ preproc: preproc.c
+-	$(CC) preproc.c -o $@
++	$(CC) $(CFLAGS) preproc.c -o $@
+ 
+ DefaultRC.txt.h: substads DefaultRC
+ 	./substads -ad2c DefaultRC $@
+@@ -1020,10 +1020,8 @@
+ messages.h: preproc
+ 	./preproc > messages.h
+ 
+-XPaint.ad: app-defaults
+-	$(CC) substads.c -o substads
+-	cd app-defaults ; \
+-	../substads -appdefs \
++XPaint.ad: substads app-defaults
++	./substads -appdefs \
+ 	            XPAINT_VERSION $(PACKAGE_VERSION) \
+ 		    XPAINT_SHAREDIR $(SHAREDIR) \
+ 		    XPAINT_PRINT_COMMAND "$(PRINT_COMMAND)" \
+@@ -1034,7 +1032,7 @@
+ XPaint.ad.h: substads XPaint.ad
+ 	./substads -ad2c XPaint.ad $@
+ 
+-xpaint.1: xpaint.1.in version.h
++xpaint.1: substads xpaint.1.in version.h
+ 	./substads -single xpaint.1.in xpaint.1 XPAINT_VERSION $(PACKAGE_VERSION)
+ 
+ install-exec-hook:


More information about the svn-ports-all mailing list