8dc5f88137
and devel versions of these ports. While these are allowed when the devel versions are newer than the normal versions, this is not always the case and especially not at this time. Instead of only conflicting with the same version of each port, a version wildcard is used, to prevent unexpected behavior if the non-devel version is updated to match the devel version when both are installed. Approved by: gerald (maintainer)
31 lines
815 B
Makefile
31 lines
815 B
Makefile
# Created by: David Naylor <naylor.b.david@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= wine-gecko
|
|
DISTVERSION= 2.47
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= http://dl.winehq.org/wine/wine-gecko/${DISTVERSION}/
|
|
PKGNAMESUFFIX= -devel
|
|
DISTNAME= wine_gecko-${DISTVERSION}-x86
|
|
EXTRACT_SUFX= .msi
|
|
EXTRACT_ONLY=
|
|
|
|
MAINTAINER= gerald@FreeBSD.org
|
|
COMMENT= Gecko Layout Engine for Wine development branch (HTML support)
|
|
|
|
LICENSE= MPL20 GPLv2 GPLv3 LGPL21 LGPL3
|
|
LICENSE_COMB= multi
|
|
|
|
CONFLICTS_INSTALL= wine-gecko-[0-9]*
|
|
|
|
NO_BUILD= yes
|
|
PLIST_SUB+= GECKO_VERSION="${DISTVERSION}"
|
|
DATADIR= ${PREFIX}/share/wine
|
|
PLIST_FILES= ${DATADIR}/gecko/wine_gecko-${DISTVERSION}-x86.msi
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/gecko
|
|
${INSTALL_DATA} ${DISTDIR}/wine_gecko-${DISTVERSION}-x86.msi \
|
|
${STAGEDIR}${DATADIR}/gecko
|
|
|
|
.include <bsd.port.mk>
|