svn commit: r336472 - head/emulators/seabios-devel

Marcus von Appen mva at FreeBSD.org
Sat Dec 14 19:06:53 UTC 2013


Author: mva
Date: Sat Dec 14 19:06:52 2013
New Revision: 336472
URL: http://svnweb.freebsd.org/changeset/ports/336472

Log:
  - Fix the usage of 'python' to get rid of the implicit lang/python
    dependency
  - Convert USES_GMAKE to USES=gmake, while here
  
  Reported by:	exp-run (PR 184591)
  Approved by:	portmgr (blanket)

Modified:
  head/emulators/seabios-devel/Makefile

Modified: head/emulators/seabios-devel/Makefile
==============================================================================
--- head/emulators/seabios-devel/Makefile	Sat Dec 14 19:01:33 2013	(r336471)
+++ head/emulators/seabios-devel/Makefile	Sat Dec 14 19:06:52 2013	(r336472)
@@ -12,7 +12,7 @@ DIST_SUBDIR=	qemu
 MAINTAINER=	nox at FreeBSD.org
 COMMENT=	SeaBIOS git snapshot (for emulators/qemu-devel)
 
-USE_GMAKE=	yes
+USES=		gmake shebangfix
 USE_BZIP2=	yes
 USE_PYTHON_BUILD=	yes
 PATCH_STRIP=	-p1
@@ -20,6 +20,17 @@ ONLY_FOR_ARCHS=	amd64 i386
 # Doesn't run with qemu 0.11.1
 CONFLICTS_INSTALL=	qemu-[0-9]*
 
+SHEBANG_FILES=	tools/buildrom.py \
+		tools/checkrom.py \
+		tools/checkstack.py \
+		tools/checksum.py \
+		tools/encodeint.py \
+		tools/layoutrom.py \
+		tools/readserial.py \
+		tools/transdump.py
+python_OLD_CMD=	${SETENV} python
+python_CMD=	${PYTHON_CMD}
+
 NO_STAGE=	yes
 
 .include <bsd.port.pre.mk>


More information about the svn-ports-head mailing list