From owner-svn-ports-head@FreeBSD.ORG Mon Aug 12 06:20:28 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 5B92E507; Mon, 12 Aug 2013 06:20:28 +0000 (UTC) (envelope-from dbn@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 484342CA2; Mon, 12 Aug 2013 06:20:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r7C6KSAe045007; Mon, 12 Aug 2013 06:20:28 GMT (envelope-from dbn@svn.freebsd.org) Received: (from dbn@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r7C6KScZ045006; Mon, 12 Aug 2013 06:20:28 GMT (envelope-from dbn@svn.freebsd.org) Message-Id: <201308120620.r7C6KScZ045006@svn.freebsd.org> From: David Naylor Date: Mon, 12 Aug 2013 06:20:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r324614 - head/emulators/i386-wine 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, 12 Aug 2013 06:20:28 -0000 Author: dbn Date: Mon Aug 12 06:20:27 2013 New Revision: 324614 URL: http://svnweb.freebsd.org/changeset/ports/324614 Log: Add back i386-wine/Makefile (wouldn't commit otherwise). Subversion and pre-commit hooks are not cooperating in the changes required for i386-wine(-devel). For the historians: This file is a copy of i386-wine-devel/Makefile as at version 321106. Added: head/emulators/i386-wine/Makefile (contents, props changed) Added: head/emulators/i386-wine/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/i386-wine/Makefile Mon Aug 12 06:20:27 2013 (r324614) @@ -0,0 +1,16 @@ +# Created by: David Naylor (dbn@FreeBSD.org) +# $FreeBSD$ + +# Special bootstrapper to allow: +# - i386 specific port to be slave to ${PORTSDIR}/emulators/wine +# - amd64 specific port to be normal port (based on binary package) + +.if !defined(ARCH) +ARCH!= uname -p +.endif + +.if ${ARCH} == i386 +.include "${.CURDIR}/Makefile.i386" +.else +.include "${.CURDIR}/Makefile.inc" +.endif