svn commit: r515190 - head/devel/open-usp-tukubai

Tobias Kortkamp tobik at FreeBSD.org
Tue Oct 22 12:15:48 UTC 2019


Author: tobik
Date: Tue Oct 22 12:15:47 2019
New Revision: 515190
URL: https://svnweb.freebsd.org/changeset/ports/515190

Log:
  devel/open-usp-tukubai: Fix shebangs of installed commands
  
  Error: '/usr/bin/env python' is an invalid shebang you need USES=shebangfix for 'bin/getfirst'
  etc.
  
  It is also not compatible with Python 3.x since it uses the old
  print statement in many places.
  
  - Add LICENSE, NO_ARCH while here

Modified:
  head/devel/open-usp-tukubai/Makefile

Modified: head/devel/open-usp-tukubai/Makefile
==============================================================================
--- head/devel/open-usp-tukubai/Makefile	Tue Oct 22 12:09:28 2019	(r515189)
+++ head/devel/open-usp-tukubai/Makefile	Tue Oct 22 12:15:47 2019	(r515190)
@@ -3,15 +3,20 @@
 
 PORTNAME=	open-usp-tukubai
 PORTVERSION=	2014061402
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	https://uec.usp-lab.com/TUKUBAI/DOWNLOAD/
 
 MAINTAINER=	ports at FreeBSD.org
 COMMENT=	Open usp Tukubai is OSS version of Tukubai commands set
 
-USES=		gmake python tar:bzip2
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
 
+USES=		gmake python:2.7,run shebangfix tar:bzip2
+SHEBANG_FILES=	COMMANDS*/*
+MAKE_ENV=	STAGEDIR=${STAGEDIR}
+NO_ARCH=	yes
 NO_BUILD=	yes
-MAKE_ENV+=	STAGEDIR=${STAGEDIR}
 
 .include <bsd.port.mk>


More information about the svn-ports-head mailing list