svn commit: r447669 - head/lang/jimtcl

Pietro Cerutti gahr at FreeBSD.org
Thu Aug 10 09:47:16 UTC 2017


Author: gahr
Date: Thu Aug 10 09:47:14 2017
New Revision: 447669
URL: https://svnweb.freebsd.org/changeset/ports/447669

Log:
  lang/jimtcl: take maintainership, add DOCS option and test target

Modified:
  head/lang/jimtcl/Makefile

Modified: head/lang/jimtcl/Makefile
==============================================================================
--- head/lang/jimtcl/Makefile	Thu Aug 10 09:33:51 2017	(r447668)
+++ head/lang/jimtcl/Makefile	Thu Aug 10 09:47:14 2017	(r447669)
@@ -4,23 +4,33 @@ PORTNAME=	jimtcl
 PORTVERSION=	0.77
 CATEGORIES=	lang tcl
 
-MAINTAINER=	ports at FreeBSD.org
+MAINTAINER=	gahr at FreeBSD.org
 COMMENT=	Small footprint implementation of the Tcl programming language
 
 LICENSE=	BSD2CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
+USES=		ssl
+
 USE_GITHUB=	yes
 GH_ACCOUNT=	msteveb
 
 HAS_CONFIGURE=	yes
-CONFIGURE_ARGS=	--full \
+CONFIGURE_ARGS=	--prefix=${PREFIX} \
+		--full \
 		--enable-utf8 \
-		--enable-shared \
-		--disable-docs
+		--enable-shared
 
+UNSET=			DOCS
+OPTIONS_DEFINE=		DOCS
+DOCS_CONFIGURE_ENABLE=	docs
+DOCS_CONFIGURE_ON=	--docdir=${DOCSDIR}
+DOCS_BUILD_DEPENDS=	asciidoc:textproc/asciidoc
+PORTDOCS=		*
+
+TEST_TARGET=		test
+
 post-install:
-	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/jimsh \
-		${STAGEDIR}${PREFIX}/lib/libjim.so.*
+	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/jimsh
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list