mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
67394ec350
The error that I was seeing was: sysutils/hpacucli dependency on misc/compat4x has wrong PKGNAME of 'compat4x-i386' but should be 'compat4x-armv7' This port dates from an era so long ago that the assumption was that "32-bit" => "i386". I would be very surprised if any of this antique code was still in use; it is certainly irrelevant for 32-bit arm.
43 lines
993 B
Makefile
43 lines
993 B
Makefile
# Created by: SriSaiGanesh
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hpacucli
|
|
PORTVERSION= 7.50
|
|
PORTREVISION= 4
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= LOCAL/brooks
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= HP configuration utility for Smart Array RAID cards
|
|
|
|
ONLY_FOR_ARCHS= amd64 i386
|
|
ONLY_FOR_ARCHS_REASON= relies on compatXx features that are x86-specific
|
|
|
|
RUN_DEPENDS= compat4x-i386>0:misc/compat4x \
|
|
compat5x-${ARCH}>0:misc/compat5x
|
|
|
|
USES= tar:bzip2
|
|
NO_BUILD= yes
|
|
IA32_BINARY_PORT= yes
|
|
|
|
APP_PREFIX= ${PREFIX}/lib/compaq/hpacucli
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|' ${WRKSRC}/${PORTNAME}
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${APP_PREFIX}
|
|
${INSTALL_LIB} ${WRKSRC}/lib*.so ${STAGEDIR}${APP_PREFIX}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/.${PORTNAME} ${STAGEDIR}${PREFIX}/libexec
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == amd64
|
|
USE_LDCONFIG32= ${APP_PREFIX}
|
|
.else
|
|
USE_LDCONFIG= ${APP_PREFIX}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|