mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
c2ec2ad0df
Previous commits uncovered another error: [00:02:28] Warning: (emulators/i386-wine-devel): Error: Duplicated origin for -: emulators/i386-wine-devel AND emulators/i386-wine. Rerun with -v to see which ports are depending on these. This is because PORTNAME and PORTVERSION are not defined. Submitted by: salvadore (maintainer)
21 lines
579 B
Makefile
21 lines
579 B
Makefile
# 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)
|
|
|
|
PORTNAME= wine
|
|
# define a dummy DISTVERSION to avoid errors with poudriere bulk -a
|
|
# on architectures unsupported by this port
|
|
DISTVERSION?= 0
|
|
PKGNAMEPREFIX= i386-
|
|
CATEGORIES= emulators
|
|
|
|
MAINTAINER= salvadore@FreeBSD.org
|
|
COMMENT= 32-bit Microsoft Windows compatibility environment for 64-bit FreeBSD
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
|
|
.include <bsd.port.mk>
|