2013-08-12 08:20:27 +02:00
|
|
|
# Created by: David Naylor (dbn@FreeBSD.org)
|
|
|
|
|
|
|
|
# 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)
|
|
|
|
|
2020-03-14 22:00:40 +01:00
|
|
|
PORTNAME= wine
|
|
|
|
# define a dummy DISTVERSION to avoid errors with poudriere bulk -a
|
|
|
|
# on architectures unsupported by this port
|
|
|
|
DISTVERSION?= 0
|
2020-05-04 22:46:07 +02:00
|
|
|
PORTREVISION= 1
|
2020-03-14 22:00:40 +01:00
|
|
|
PKGNAMEPREFIX= i386-
|
2020-03-14 19:00:14 +01:00
|
|
|
CATEGORIES= emulators
|
|
|
|
|
2021-02-24 03:05:16 +01:00
|
|
|
MAINTAINER= ports@FreeBSD.org
|
2020-03-14 22:00:40 +01:00
|
|
|
COMMENT= 32-bit Microsoft Windows compatibility environment for 64-bit FreeBSD
|
|
|
|
|
2020-03-13 22:11:06 +01:00
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
2013-08-12 08:20:27 +02:00
|
|
|
|
2020-05-03 22:37:26 +02:00
|
|
|
CONFLICTS_INSTALL= wine-[0-9]* wine-devel-[0-9]* i386-wine-devel-[0-9]*
|
|
|
|
|
|
|
|
PKGINSTALL= ${.CURDIR}/files/pkg-install
|
|
|
|
PKGDEINSTALL= ${PKGINSTALL}
|
|
|
|
|
|
|
|
distinfo-update:
|
|
|
|
${RM} ${.CURDIR}/distinfo ${.CURDIR}/distinfo~
|
|
|
|
.for osrel in 11 12 13
|
|
|
|
${MAKE} fetch OSREL=${osrel} OSVERSION=${osrel}99999 _OSRELEASE=${osrel}
|
|
|
|
${MAKE} makesum OSREL=${osrel} OSVERSION=${osrel}99999 _OSRELEASE=${osrel}
|
|
|
|
${CAT} ${.CURDIR}/distinfo >> ${.CURDIR}/distinfo~
|
|
|
|
${RM} ${.CURDIR}/distinfo
|
|
|
|
.endfor
|
|
|
|
${SED} -e '2,$${' -e '/^TIMESTAMP/d' -e '}' distinfo~ > ${.CURDIR}/distinfo
|
|
|
|
${RM} ${.CURDIR}/distinfo~
|
|
|
|
|
2020-03-13 22:11:06 +01:00
|
|
|
.include <bsd.port.mk>
|