Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 3 Sep 2013 09:54:56 +0000 (UTC)
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r326131 - head/emulators/tilem
Message-ID:  <201309030954.r839suEw007171@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: danfe
Date: Tue Sep  3 09:54:56 2013
New Revision: 326131
URL: http://svnweb.freebsd.org/changeset/ports/326131

Log:
  - Unbreak parallel (-jX) builds by calling sub-makes correctly (via -C)
  - Drop leading indefinite article from the COMMENT line
  - Use new, more robust syntax for LIB_DEPENDS (available since r322328)
  - Sort the knobs, remove no longer required (and deprecated) USE_GMAKE

Modified:
  head/emulators/tilem/Makefile

Modified: head/emulators/tilem/Makefile
==============================================================================
--- head/emulators/tilem/Makefile	Tue Sep  3 09:49:17 2013	(r326130)
+++ head/emulators/tilem/Makefile	Tue Sep  3 09:54:56 2013	(r326131)
@@ -8,17 +8,21 @@ CATEGORIES=	emulators
 MASTER_SITES=	SF
 
 MAINTAINER=	ports@FreeBSD.org
-COMMENT=	An emulator for the Z80 series of Texas Instruments calculators
+COMMENT=	Emulator for the Z80 series of Texas Instruments calculators
 
 LICENSE=	GPLv3
 
-LIB_DEPENDS=	ticalcs2:${PORTSDIR}/comms/libticalcs2
+LIB_DEPENDS=	libticalcs2.so:${PORTSDIR}/comms/libticalcs2
 
-INSTALLS_ICONS=	yes
 USES=		desktop-file-utils shared-mime-info pkgconfig
 USE_BZIP2=	yes
 GNU_CONFIGURE=	yes
-USE_GMAKE=	yes	# parallel builds (-jX) are broken with BSD make(1)
 USE_GNOME=	gtk20
+INSTALLS_ICONS=	yes
+
+# Unbreak parallel builds (-jX)
+post-patch:
+	@${REINPLACE_CMD} -E 's,cd (.+) && (\$$\(MAKE\)),\2 -C \1,' \
+		${WRKSRC}/Makefile.in
 
 .include <bsd.port.mk>



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