svn commit: r484371 - head/biology/molden

Yuri Victorovich yuri at FreeBSD.org
Wed Nov 7 00:03:36 UTC 2018


Author: yuri
Date: Wed Nov  7 00:03:34 2018
New Revision: 484371
URL: https://svnweb.freebsd.org/changeset/ports/484371

Log:
  biology/molden: Unbreak: fix the problem that it can't find libgcc_s.so from gcc
  
  Add $(LDFLAGS) to makefile.
  While here, add USES=gl.
  
  Approved by:	portmgr

Modified:
  head/biology/molden/Makefile

Modified: head/biology/molden/Makefile
==============================================================================
--- head/biology/molden/Makefile	Tue Nov  6 23:52:17 2018	(r484370)
+++ head/biology/molden/Makefile	Wed Nov  7 00:03:34 2018	(r484371)
@@ -21,7 +21,7 @@ RESTRICTED=	free for academic, non profit usage; do no
 
 WRKSRC=		${WRKDIR}/${PORTNAME}${PORTVERSION}
 
-USES=		fortran gmake
+USES=		fortran gl gmake
 USE_XORG=	x11
 USE_GL=		gl glu
 MAKEFILE=	makefile
@@ -44,6 +44,7 @@ post-patch:
 		's|^CC |#CC | ; \
 		 s|^FC |#FC | ; \
 		 s|/usr/X11R6|${LOCALBASE}| ; \
+		 s|$$(LIBS)|$$(LIBS) $$(LDFLAGS)| ; \
 		 s|-lXmu|| ; \
 		 /depend/s|^|#|' ${WRKSRC}/makefile
 


More information about the svn-ports-all mailing list