diff options
author | dbn <dbn@FreeBSD.org> | 2013-08-12 14:20:27 +0800 |
---|---|---|
committer | dbn <dbn@FreeBSD.org> | 2013-08-12 14:20:27 +0800 |
commit | b192a43a683ebcc86fe8d6847912346765d04e86 (patch) | |
tree | 6f8e388ea691dcb222b7bfb9687dc7b15457fce3 | |
parent | af47bacd0fdbed9a272fd86f44c713c41fe948f2 (diff) | |
download | freebsd-ports-gnome-b192a43a683ebcc86fe8d6847912346765d04e86.tar.gz freebsd-ports-gnome-b192a43a683ebcc86fe8d6847912346765d04e86.tar.zst freebsd-ports-gnome-b192a43a683ebcc86fe8d6847912346765d04e86.zip |
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.
-rw-r--r-- | emulators/i386-wine/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/emulators/i386-wine/Makefile b/emulators/i386-wine/Makefile new file mode 100644 index 000000000000..3e65cfa1622b --- /dev/null +++ b/emulators/i386-wine/Makefile @@ -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 |