Bug 184693 - science/chemtool-devel: Fix to unbreak on F10, head
Summary: science/chemtool-devel: Fix to unbreak on F10, head
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: John Marino
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-12-11 17:10 UTC by John Marino
Modified: 2013-12-26 13:20 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description John Marino 2013-12-11 17:10:00 UTC
chemtool-devel is broken on F10 and head because MAKE is defined as "make" by default.  This causes the port to use bmake instead of the specified gmake.

Fix below.

Fix: 

Add "MAKE_ARGS+= MAKE=${GMAKE}" to unbreak
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-12-11 17:10:14 UTC
Responsible Changed
From-To: freebsd-ports-bugs->maho

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 John Marino freebsd_committer freebsd_triage 2013-12-25 22:03:49 UTC
Responsible Changed
From-To: maho->marino

I'll overtake it (timeout)
Comment 3 dfilter service freebsd_committer freebsd_triage 2013-12-25 22:08:20 UTC
Author: marino
Date: Wed Dec 25 22:08:13 2013
New Revision: 337459
URL: http://svnweb.freebsd.org/changeset/ports/337459

Log:
  science/chemtool-devel: Unbreak on FreeBSD 10+
  
  The breakage was caused by processing makefiles with bmake instead of the
  specified gmake.
  
  PR:		ports/184693
  Approved by:	maintainer timeout

Modified:
  head/science/chemtool-devel/Makefile

Modified: head/science/chemtool-devel/Makefile
==============================================================================
--- head/science/chemtool-devel/Makefile	Wed Dec 25 21:56:00 2013	(r337458)
+++ head/science/chemtool-devel/Makefile	Wed Dec 25 22:08:13 2013	(r337459)
@@ -23,7 +23,8 @@ GNU_CONFIGURE=	yes
 USES=		gettext gmake pkgconfig
 CONFIGURE_ARGS=	--enable-emf=yes
 PKGNAMESUFFIX=	-devel
-MAN1=	chemtool.1 cht.1
+MAN1=		chemtool.1 cht.1
+MAKE_ARGS+=	MAKE=${GMAKE}
 MAKE_JOBS_UNSAFE=	yes
 #to include emf
 CFLAGS+=	-I${LOCALBASE}/include/libEMF
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 4 John Marino freebsd_committer freebsd_triage 2013-12-25 22:10:25 UTC
State Changed
From-To: open->closed

Committed. Thanks!
Comment 5 dfilter service freebsd_committer freebsd_triage 2013-12-26 13:17:00 UTC
Author: mat
Date: Thu Dec 26 13:16:51 2013
New Revision: 337507
URL: http://svnweb.freebsd.org/changeset/ports/337507

Log:
  MFH: r337459
  
  science/chemtool-devel: Unbreak on FreeBSD 10+
  
  The breakage was caused by processing makefiles with bmake instead of the
  specified gmake.
  
  PR:		ports/184693
  Approved by:	maintainer timeout
  Approved by:	portmgr (implicit)

Modified:
  branches/2014Q1/science/chemtool-devel/Makefile
Directory Properties:
  branches/2014Q1/   (props changed)

Modified: branches/2014Q1/science/chemtool-devel/Makefile
==============================================================================
--- branches/2014Q1/science/chemtool-devel/Makefile	Thu Dec 26 13:16:43 2013	(r337506)
+++ branches/2014Q1/science/chemtool-devel/Makefile	Thu Dec 26 13:16:51 2013	(r337507)
@@ -23,7 +23,8 @@ GNU_CONFIGURE=	yes
 USES=		gettext gmake pkgconfig
 CONFIGURE_ARGS=	--enable-emf=yes
 PKGNAMESUFFIX=	-devel
-MAN1=	chemtool.1 cht.1
+MAN1=		chemtool.1 cht.1
+MAKE_ARGS+=	MAKE=${GMAKE}
 MAKE_JOBS_UNSAFE=	yes
 #to include emf
 CFLAGS+=	-I${LOCALBASE}/include/libEMF
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"