From owner-svn-ports-head@FreeBSD.ORG Mon Oct 28 09:11:37 2013 Return-Path: Delivered-To: svn-ports-head@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 ESMTP id EF1F06B; Mon, 28 Oct 2013 09:11:37 +0000 (UTC) (envelope-from gahr@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CDB942D31; Mon, 28 Oct 2013 09:11:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9S9BbFT080329; Mon, 28 Oct 2013 09:11:37 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9S9BbLv080324; Mon, 28 Oct 2013 09:11:37 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201310280911.r9S9BbLv080324@svn.freebsd.org> From: Pietro Cerutti Date: Mon, 28 Oct 2013 09:11:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r331837 - in head/sysutils/wiimms: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Oct 2013 09:11:38 -0000 Author: gahr Date: Mon Oct 28 09:11:36 2013 New Revision: 331837 URL: http://svnweb.freebsd.org/changeset/ports/331837 Log: - Update to 2.23a [1] - Fix build on CURRENT, by requiring GCC [1] - STAGE-clean - Convert to USES+=gmake PR: 182051 Submitted by: maintainer Reviewed by: maintainer Added: head/sysutils/wiimms/files/patch-Makefile (contents, props changed) Modified: head/sysutils/wiimms/Makefile head/sysutils/wiimms/distinfo head/sysutils/wiimms/files/patch-setup.sh Modified: head/sysutils/wiimms/Makefile ============================================================================== --- head/sysutils/wiimms/Makefile Mon Oct 28 08:45:13 2013 (r331836) +++ head/sysutils/wiimms/Makefile Mon Oct 28 09:11:36 2013 (r331837) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wiimms -DISTVERSION= 2.10a +DISTVERSION= 2.23a CATEGORIES= sysutils MASTER_SITES= http://gugus69.free.fr/wiimms/ \ LOCAL/martymac @@ -17,10 +17,8 @@ BUILD_DEPENDS= bash:${PORTSDIR}/shells/b RUN_DEPENDS= bash:${PORTSDIR}/shells/bash WRKSRC= ${WRKDIR}/wiimms-iso-tools -USE_GMAKE= yes - -NO_STAGE= yes -.include +USES+= gmake +USE_GCC= yes post-patch: @${REINPLACE_CMD} -e 's|/bin/bash|${LOCALBASE}/bin/bash|g' \ @@ -38,13 +36,13 @@ do-configure: @cd ${WRKSRC} && ./setup.sh do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/wit ${PREFIX}/bin - @${INSTALL_PROGRAM} ${WRKSRC}/wwt ${PREFIX}/bin - @${INSTALL_PROGRAM} ${WRKSRC}/wdf ${PREFIX}/bin - @${LN} -sf wdf ${PREFIX}/bin/wdf-cat - @${LN} -sf wdf ${PREFIX}/bin/wdf-dump - @${MKDIR} ${DATADIR} - @${INSTALL_DATA} ${WRKSRC}/share/* ${DATADIR} - @${INSTALL_SCRIPT} ${WRKSRC}/load-titles.sh ${DATADIR} + @${INSTALL_PROGRAM} ${WRKSRC}/wit ${STAGEDIR}${PREFIX}/bin + @${INSTALL_PROGRAM} ${WRKSRC}/wwt ${STAGEDIR}${PREFIX}/bin + @${INSTALL_PROGRAM} ${WRKSRC}/wdf ${STAGEDIR}${PREFIX}/bin + @${LN} -sf wdf ${STAGEDIR}${PREFIX}/bin/wdf-cat + @${LN} -sf wdf ${STAGEDIR}${PREFIX}/bin/wdf-dump + @${MKDIR} ${STAGEDIR}${DATADIR} + @${INSTALL_DATA} ${WRKSRC}/share/* ${STAGEDIR}${DATADIR} + @${INSTALL_SCRIPT} ${WRKSRC}/load-titles.sh ${STAGEDIR}${DATADIR} -.include +.include Modified: head/sysutils/wiimms/distinfo ============================================================================== --- head/sysutils/wiimms/distinfo Mon Oct 28 08:45:13 2013 (r331836) +++ head/sysutils/wiimms/distinfo Mon Oct 28 09:11:36 2013 (r331837) @@ -1,2 +1,2 @@ -SHA256 (wit-2.10a.tar.gz) = 847abdff776bc823d5a0dbb458a51607ef9d0a12ff5fc39241bef5f5332ec78c -SIZE (wit-2.10a.tar.gz) = 1762759 +SHA256 (wit-2.23a.tar.gz) = b49e1f161cb4cb7da9db7b8a3447cbd94b8d9ac15d088097c7e47c39c7808b6e +SIZE (wit-2.23a.tar.gz) = 1810162 Added: head/sysutils/wiimms/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/wiimms/files/patch-Makefile Mon Oct 28 09:11:36 2013 (r331837) @@ -0,0 +1,31 @@ +--- Makefile.orig 2013-07-12 20:59:10.000000000 +0200 ++++ Makefile 2013-09-12 21:36:58.340976359 +0200 +@@ -27,7 +27,7 @@ + #------------------------------------------------------------------------------- + # global settings + +-#SHELL = /bin/bash ++#SHELL = /usr/local/bin/bash + SHELL = /usr/bin/env bash + + AUTHOR = Dirk Clemens +@@ -99,8 +99,8 @@ + # compiler settings + + PRE ?= +-CC = $(PRE)gcc +-CPP = $(PRE)g++ ++#CC = $(PRE)cc ++#CPP = $(PRE)cpp + STRIP = $(PRE)strip + + #------------------------------------------------------------------------------- +@@ -248,7 +248,7 @@ + + #------------------------------------------------------------------------------- + +-SHARE_PATH = $(INSTALL_PATH)/share/wit ++SHARE_PATH = $(INSTALL_PATH)/share/wiimms + INSTALL_SCRIPTS = install.sh load-titles.sh + RM_FILES += $(INSTALL_SCRIPTS) + SCRIPTS = ./scripts Modified: head/sysutils/wiimms/files/patch-setup.sh ============================================================================== --- head/sysutils/wiimms/files/patch-setup.sh Mon Oct 28 08:45:13 2013 (r331836) +++ head/sysutils/wiimms/files/patch-setup.sh Mon Oct 28 09:11:36 2013 (r331837) @@ -1,5 +1,5 @@ ---- setup.sh.orig 2011-07-08 20:21:46.000000000 +0200 -+++ setup.sh 2011-08-04 01:55:05.000000000 +0200 +--- setup.sh.orig 2013-02-09 21:55:43.000000000 +0100 ++++ setup.sh 2013-09-12 21:34:08.051742488 +0200 @@ -19,8 +19,9 @@ tim=($(date '+%s %Y-%m-%d %T')) @@ -27,5 +27,12 @@ +# FreeBSD didn't support Pre-alloc +defines="$defines -DNO_PREALLOC" - [[ $STATIC = 1 ]] || STATIC=0 + [[ -r /usr/include/linux/fiemap.h ]] \ + && grep -qw fiemap_extent /usr/include/linux/fiemap.h \ +@@ -110,6 +115,6 @@ + ---EOT--- + +-gcc $xflags system.c -o system.tmp && ./system.tmp >>Makefile.setup ++${CC} $xflags system.c -o system.tmp && ./system.tmp >>Makefile.setup + rm -f system.tmp