pkgsrc/sysutils/xe-guest-utilities/Makefile
rillig c7ff05f63e all: replace SUBST_SED with the simpler SUBST_VARS
pkglint -Wall -r --only "substitution command" -F

With manual review and indentation fixes since pkglint doesn't get that
part correct in every case.
2019-05-23 19:22:54 +00:00

58 lines
1.5 KiB
Makefile

# $NetBSD: Makefile,v 1.13 2019/05/23 19:23:17 rillig Exp $
#
# Values from XenServer 7.0 = 7, 0, 0, 125243
# Values from XenServer 6.5.0 = 6, 5, 0, 90977
# Values from XenServer 6.0.2 = 6, 0, 2, 52898
# Values from XenServer 6.0 = 6, 0, 0, 50560
# Values from XenServer 5.6 SP2 = 5, 6, 100, 39153
XENMAJOR= 7
XENMINOR= 0
XENTEENY= 0
XENBUILD= 125243
VERSION= ${XENMAJOR}.${XENMINOR}.${XENTEENY}
DISTNAME= xe-guest-utilities_5.6.0-595
CATEGORIES= sysutils
PKGNAME= xe-guest-utilities-${VERSION}
MASTER_SITES= http://updates.vmd.citrix.com/XenServer/5.6.0/debian/pool/main/x/xe-guest-utilities/
MAINTAINER= sborrill@NetBSD.org
HOMEPAGE= http://www.xenserver.com/
COMMENT= NetBSD VM tools for Citrix XenServer
LICENSE= gnu-gpl-v2
DEPENDS+= xenstoretools-[0-9]*:../../sysutils/xenstoretools
ONLY_FOR_PLATFORM+= NetBSD-[5-9].*-x86_64 NetBSD-[5-9].*-i386
WRKSRC= ${WRKDIR}/${DISTNAME:C/-[0-9]+$$//:C/_/-/}
SRCFILES= xe-daemon xe-update-guest-attrs
NO_CONFIGURE= yes
NO_BUILD= yes
RCD_SCRIPTS= xenguest
SUBST_CLASSES+= paths
SUBST_STAGE.paths= pre-install
SUBST_FILES.paths= ${SRCFILES}
SUBST_VARS.paths= VARBASE
SUBST_VARS.paths+= PREFIX
SUBST_CLASSES+= version
SUBST_STAGE.version= pre-install
SUBST_FILES.version= xe-update-guest-attrs
SUBST_VARS.version= XENMAJOR
SUBST_VARS.version+= XENMINOR
SUBST_VARS.version+= XENTEENY
SUBST_VARS.version+= XENBUILD
INSTALLATION_DIRS= sbin
do-install:
for file in ${SRCFILES}; do \
${INSTALL_SCRIPT} ${WRKSRC}/$${file} ${DESTDIR}${PREFIX}/sbin/$${file}; \
done
.include "../../mk/bsd.pkg.mk"