mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
beb5d0eaf3
Approved by: portmgr blanket
52 lines
1.2 KiB
Makefile
52 lines
1.2 KiB
Makefile
# Created by: michael@fuckner.net
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= arcconf
|
|
DISTVERSION= 1_8_21375
|
|
PORTEPOCH= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://download.adaptec.com/raid/storage_manager/
|
|
DISTNAME= arcconf_v${DISTVERSION}
|
|
|
|
MAINTAINER= michael@fuckner.net
|
|
COMMENT= Adaptec SCSI/SAS RAID administration tool
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
|
|
USES= zip
|
|
|
|
PERIODICSCRIPT= 410.status-aac-raid
|
|
|
|
SUB_FILES+= ${PERIODICSCRIPT}
|
|
|
|
RESTRICTED= May not be redistributed in binary form
|
|
NO_CDROM= May not be redistributed in binary form
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OPSYS} != FreeBSD
|
|
IGNORE= installs incompatible binaries for FreeBSD
|
|
.else
|
|
DIST_OSVER= 10
|
|
.endif
|
|
|
|
.if ${ARCH} == amd64
|
|
DIST_EXT= _x64
|
|
.elif ${ARCH} == i386
|
|
.if ${OPSYS} == FreeBSD
|
|
# use the 9 i386 version for 10 i386
|
|
DIST_OSVER= 9
|
|
RUN_DEPENDS+= ${LOCALBASE}/lib/compat/libstdc++.so.6:misc/compat9x
|
|
.endif
|
|
.endif
|
|
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/freebsd${DIST_OSVER}${DIST_EXT}/cmdline/arcconf ${STAGEDIR}${PREFIX}/sbin
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/etc/periodic/daily
|
|
${INSTALL_SCRIPT} ${WRKDIR}/${PERIODICSCRIPT} ${STAGEDIR}${PREFIX}/etc/periodic/daily
|
|
|
|
.include <bsd.port.post.mk>
|