Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 Aug 2013 06:20:28 +0000 (UTC)
From:      David Naylor <dbn@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r324614 - head/emulators/i386-wine
Message-ID:  <201308120620.r7C6KScZ045006@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308120620.r7C6KScZ045006>