freebsd-ports/emulators/i386-wine-devel/Makefile
David Naylor b5da36bb93 Update emulators/i386-wine-devel to 1.7.4 and add stage support.
Port ChangeLog:
 - Update to version 1.7.4 (for pre-built packages for amd64)
 - Add stage support for both Makefile.(i386|inc)
 - Add the -devel suffix and remove LATEST_LINK
 - Teach the patch-nvidia.sh script about the -devel suffix
 - Track updates for the GECKO version (2.24)
2013-11-03 21:13:34 +00:00

16 lines
381 B
Makefile

# Created by: David Naylor (dbn@FreeBSD.org)
# $FreeBSD$
# Special bootstrapper to allow:
# - i386 specific port to be slave to ${PORTSDIR}/emulators/wine-devel
# - 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