From owner-svn-ports-all@FreeBSD.ORG Fri Mar 28 19:51:48 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 523AFDFC; Fri, 28 Mar 2014 19:51:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 256DCB9E; Fri, 28 Mar 2014 19:51:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2SJpmLr046955; Fri, 28 Mar 2014 19:51:48 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2SJplQM046954; Fri, 28 Mar 2014 19:51:47 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201403281951.s2SJplQM046954@svn.freebsd.org> From: Steve Wills Date: Fri, 28 Mar 2014 19:51:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r349455 - head/games/hohlin X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Mar 2014 19:51:48 -0000 Author: swills Date: Fri Mar 28 19:51:47 2014 New Revision: 349455 URL: http://svnweb.freebsd.org/changeset/ports/349455 QAT: https://qat.redports.org/buildarchive/r349455/ Log: - Stagify - Remove NOPORTDOCS and USE_BZIP2 PR: ports/187503 Submitted by: Johannes Jost Meixner Approved by: maintainer timeout (jmohacsi@bsd.hu, >2 weeks) Modified: head/games/hohlin/Makefile Modified: head/games/hohlin/Makefile ============================================================================== --- head/games/hohlin/Makefile Fri Mar 28 19:47:14 2014 (r349454) +++ head/games/hohlin/Makefile Fri Mar 28 19:51:47 2014 (r349455) @@ -3,7 +3,7 @@ PORTNAME= hohlin PORTVERSION= 1.01 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games #MASTER_SITES= http://retrospec.sgn.net/download.php?id=63&path=games/hoh/bin/ #requires post to download @@ -16,32 +16,29 @@ COMMENT= Remake of the classic spectrum WRKSRC= ${WRKDIR}/hoh-install-${PORTVERSION}/ -USE_BZIP2= YES +USES= tar:bzip2 USE_LINUX= yes USE_LINUX_APPS= xorglibs -ONLY_FOR_ARCHS= i386 +ONLY_FOR_ARCHS= i386 amd64 SHORTPORTVERSION=${PORTVERSION:C/([0-9]*)\.([0-9]*)/\1\2/} -NO_STAGE= yes -.include +.include do-build: ${BRANDELF} -t Linux ${WRKSRC}/data/HoH do-install: - ${MKDIR} ${DATADIR} - ${INSTALL_PROGRAM} ${WRKSRC}/data/HoH ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/data/HoHOriginal.dat ${DATADIR} - ${MKDIR} ${DATADIR}/Sound - ${INSTALL_DATA} ${WRKSRC}/data/Sound/Sound.dat ${DATADIR}/Sound/ - ${INSTALL_DATA} ${WRKSRC}/data/Sound/Game.ogg ${DATADIR}/Sound/ - ${INSTALL_DATA} ${WRKSRC}/data/Sound/Theme.ogg ${DATADIR}/Sound/ + ${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_PROGRAM} ${WRKSRC}/data/HoH ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/data/HoHOriginal.dat ${STAGEDIR}${DATADIR} + ${MKDIR} ${STAGEDIR}${DATADIR}/Sound + ${INSTALL_DATA} ${WRKSRC}/data/Sound/Sound.dat ${STAGEDIR}${DATADIR}/Sound/ + ${INSTALL_DATA} ${WRKSRC}/data/Sound/Game.ogg ${STAGEDIR}${DATADIR}/Sound/ + ${INSTALL_DATA} ${WRKSRC}/data/Sound/Theme.ogg ${STAGEDIR}${DATADIR}/Sound/ ${SED} -e 's:%%DATADIR%%:${DATADIR}:g' ${FILESDIR}/hoh.sh > \ - ${PREFIX}/bin/HoH - ${CHMOD} +x ${PREFIX}/bin/HoH -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${CP} -R ${WRKSRC}/docs/* ${DOCSDIR} -.endif + ${STAGEDIR}${PREFIX}/bin/HoH + ${CHMOD} +x ${STAGEDIR}${PREFIX}/bin/HoH + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${CP} -R ${WRKSRC}/docs/* ${STAGEDIR}${DOCSDIR} -.include +.include