aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Grzybowski <wg@FreeBSD.org>2016-03-29 13:57:49 +0000
committerWilliam Grzybowski <wg@FreeBSD.org>2016-03-29 13:57:49 +0000
commitfe4dc7abae7f736ec38814200b4993c61032fbb0 (patch)
tree3a7e492f8d16502dbd54fef8449d24f06e97dde2
parente33feeb17eed5ad88749e7dfab43f9847dd6eacf (diff)
MFH: r411701
sysutils/hptcli: install using INSTALL_PROGRAM Approved by: portmgr (feld)
Notes
Notes: svn path=/branches/2016Q1/; revision=412110
-rw-r--r--sysutils/hptcli/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/sysutils/hptcli/Makefile b/sysutils/hptcli/Makefile
index 742f5fd94068..ec5c8444302c 100644
--- a/sysutils/hptcli/Makefile
+++ b/sysutils/hptcli/Makefile
@@ -3,6 +3,7 @@
PORTNAME= hptcli
PORTVERSION= 3.6
+PORTREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= http://www.highpoint-tech.com/BIOS_Driver/HRM/FreeBSD/
DISTNAME= CLI-FreeBSD-3.6-1-120913
@@ -28,11 +29,11 @@ do-install:
#@${MKDIR} ${STAGEDIR}${PREFIX}
${INSTALL_MAN} ${WRKSRC}/hptraidconf.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
.if ${ARCH} == "i386"
- ${INSTALL_DATA} ${WRKSRC}/hptraidconf-8.0 ${STAGEDIR}${PREFIX}/bin/hptraidconf
- ${INSTALL_DATA} ${WRKSRC}/hptsvr-3.6/hptsvr-8.0 ${STAGEDIR}${PREFIX}/sbin/hptsvr
+ ${INSTALL_PROGRAM} ${WRKSRC}/hptraidconf-8.0 ${STAGEDIR}${PREFIX}/bin/hptraidconf
+ ${INSTALL_PROGRAM} ${WRKSRC}/hptsvr-3.6/hptsvr-8.0 ${STAGEDIR}${PREFIX}/sbin/hptsvr
.else
- ${INSTALL_DATA} ${WRKSRC}/hptraidconf-8.0.amd64 ${STAGEDIR}${PREFIX}/bin/hptraidconf
- ${INSTALL_DATA} ${WRKSRC}/hptsvr-3.6/hptsvr-8.0.amd64 ${STAGEDIR}${PREFIX}/sbin/hptsvr
+ ${INSTALL_PROGRAM} ${WRKSRC}/hptraidconf-8.0.amd64 ${STAGEDIR}${PREFIX}/bin/hptraidconf
+ ${INSTALL_PROGRAM} ${WRKSRC}/hptsvr-3.6/hptsvr-8.0.amd64 ${STAGEDIR}${PREFIX}/sbin/hptsvr
.endif
.include <bsd.port.post.mk>