svn commit: r432856 - head/games/oneisenough

Dmitry Marakasov amdmi3 at FreeBSD.org
Mon Jan 30 16:26:18 UTC 2017


Author: amdmi3
Date: Mon Jan 30 16:26:17 2017
New Revision: 432856
URL: https://svnweb.freebsd.org/changeset/ports/432856

Log:
  - Fix versioning
  - Add LICENSE_FILE
  - Add NO_ARCH
  - Switch to options helpers

Modified:
  head/games/oneisenough/Makefile

Modified: head/games/oneisenough/Makefile
==============================================================================
--- head/games/oneisenough/Makefile	Mon Jan 30 16:25:20 2017	(r432855)
+++ head/games/oneisenough/Makefile	Mon Jan 30 16:26:17 2017	(r432856)
@@ -2,19 +2,19 @@
 # $FreeBSD$
 
 PORTNAME=	oneisenough
-PORTVERSION=	0.4.0
-PORTREVISION=	2
+PORTVERSION=	0.40
 CATEGORIES=	games python
 MASTER_SITES=	http://hectigo.net/games/oneisenough/ \
 		SF/nemysisfreebsdp/games/:icons
-DISTFILES=	${PORTNAME}_a${DISTVERSION:S/.//g}_src${EXTRACT_SUFX} \
+DISTFILES=	${PORTNAME}_a${PORTVERSION:S/.//g}_src${EXTRACT_SUFX} \
 		${PORTNAME}.png:icons
-EXTRACT_ONLY=	${PORTNAME}_a${DISTVERSION:S/.//g}_src${EXTRACT_SUFX}
+EXTRACT_ONLY=	${PORTNAME}_a${PORTVERSION:S/.//g}_src${EXTRACT_SUFX}
 
 MAINTAINER=	ports at FreeBSD.org
 COMMENT=	Economic development in the land of the balls
 
 LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
 
 RUN_DEPENDS=	${PYGAME}
 
@@ -24,14 +24,19 @@ USES=		dos2unix python:2 shebangfix zip
 DOS2UNIX_FILES=	*.txt bin/*.py
 DOS2UNIX_REGEX= .*.[^pt][^nt][^gf]
 SHEBANG_FILES=	run_game.py bin/mainmenu.py
+NO_ARCH=	yes
 
 PORTDOCS=	README.txt
 OPTIONS_DEFINE=	DOCS
 
 SUB_FILES=	${PORTNAME}
 
-DESKTOP_ENTRIES="One Is Enough" "" ${PORTNAME} \
-		"${PORTNAME}" "Game;ArcadeGame;" ""
+DESKTOP_ENTRIES="One Is Enough" \
+		"" \
+		"${PORTNAME}" \
+		"${PORTNAME}" \
+		"Game;ArcadeGame;" \
+		""
 
 post-extract:
 	@${FIND} ${WRKSRC} \
@@ -47,10 +52,10 @@ do-install:
 .for f in *.py *.pyc *.pyo
 	${INSTALL_SCRIPT} ${WRKSRC}/${f} ${STAGEDIR}${DATADIR}
 .endfor
-
 	${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}.png \
 		${STAGEDIR}${PREFIX}/share/pixmaps/
 
+do-install-DOCS-on:
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
 


More information about the svn-ports-all mailing list