svn commit: r448179 - head/lang/gforth

Richard Gallamore ultima at FreeBSD.org
Thu Aug 17 19:34:22 UTC 2017


Author: ultima
Date: Thu Aug 17 19:34:21 2017
New Revision: 448179
URL: https://svnweb.freebsd.org/changeset/ports/448179

Log:
  * Bump revision, libffcall links to libs.
  * Added license information
  * Cleanup Makefile
  * Unsilenced docs install
  
  Reviewed by:	lifanov (mentor), matthew (mentor)
  Approved by:	lifanov (mentor), matthew (mentor), johans (maintainer timeout, 3 weeks)
  Differential Revision:	https://reviews.freebsd.org/D11766

Modified:
  head/lang/gforth/Makefile

Modified: head/lang/gforth/Makefile
==============================================================================
--- head/lang/gforth/Makefile	Thu Aug 17 19:21:20 2017	(r448178)
+++ head/lang/gforth/Makefile	Thu Aug 17 19:34:21 2017	(r448179)
@@ -3,7 +3,7 @@
 
 PORTNAME=	gforth
 PORTVERSION=	0.7.3
-PORTREVISION=	5
+PORTREVISION=	6
 CATEGORIES=	lang
 MASTER_SITES=	http://www.complang.tuwien.ac.at/forth/gforth/ \
 		GNU
@@ -11,18 +11,20 @@ MASTER_SITES=	http://www.complang.tuwien.ac.at/forth/g
 MAINTAINER=	johans at FreeBSD.org
 COMMENT=	Fast and portable Forth system
 
-LIB_DEPENDS=	libffi.so.6:devel/libffi \
+LICENSE=	GPLv3
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+LIB_DEPENDS=	libavcall.so:devel/libffcall \
+		libffi.so:devel/libffi \
 		libltdl.so:devel/libltdl
-BUILD_DEPENDS=	${LOCALBASE}/include/avcall.h:devel/libffcall
 
-GNU_CONFIGURE=	yes
-CPPFLAGS+=	-I${LOCALBASE}/include
-LIBS+=		-L${LOCALBASE}/lib
-CONFIGURE_ENV+=	GFORTHHIST=${WRKSRC}
-MAKE_ENV+=	GFORTHHIST=${WRKSRC}
-USES=		gmake libtool:build makeinfo
+USES=		gmake libtool:build localbase makeinfo
 USE_GCC=	any
 USE_LDCONFIG=	${PREFIX}/lib/gforth/${PORTVERSION}/libcc-named
+
+GNU_CONFIGURE=	yes
+CONFIGURE_ENV=	GFORTHHIST=${WRKSRC}
+MAKE_ENV=	GFORTHHIST=${WRKSRC}
 ALL_TARGET=	kernel/version.fs more info
 MAKE_JOBS_UNSAFE=yes
 
@@ -64,7 +66,7 @@ install-doc:
 .if ${PORT_OPTIONS:MDOCS}
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 . for filename in ${PORTDOCS}
-	@${INSTALL_DATA} ${WRKSRC}/${filename} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/${filename} ${STAGEDIR}${DOCSDIR}
 . endfor
 .endif
 


More information about the svn-ports-all mailing list