svn commit: r326131 - head/emulators/tilem

Alexey Dokuchaev danfe at FreeBSD.org
Tue Sep 3 09:54:57 UTC 2013


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 at 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>


More information about the svn-ports-all mailing list