For a while now bsdtar is able to autotermine compression and archive format. Let's then use tar directly instead of piping to tar. Now USE_BZIP2 and USE_XZ only set EXTRACT_SUFX to the right format
36 lines
904 B
Makefile
36 lines
904 B
Makefile
# Created by: bms@FreeBSD.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= afaapps
|
|
PORTVERSION= 2.7
|
|
PORTREVISION= 4
|
|
CATEGORIES= sysutils linux
|
|
MASTER_SITES= ftp://ftp.us.dell.com/scsi-raid/
|
|
PKGNAMEPREFIX= linux-
|
|
DISTNAME= aacraid-util-rh8.0-${LINUX_RPM_ARCH}
|
|
DIST_SUBDIR= rpm
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= DELL PowerEdge Raid Controller 2 (apps)
|
|
|
|
RESTRICTED= binary redistribution license needs clarification
|
|
|
|
USE_LINUX_RPM= yes
|
|
USE_LINUX_APPS= arts
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
BRANDELF_FILES= usr/sbin/afacli
|
|
SRC_DISTFILES= # empty, no sources available
|
|
|
|
RPMFILE= ${PORTNAME}-${PORTVERSION}-2.${LINUX_RPM_ARCH}.rpm
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-extract:
|
|
@cd ${WRKDIR} && ${RPM2CPIO} ${RPMFILE} | ${CPIO} -id --quiet && \
|
|
${RM} ${RPMFILE} readme
|
|
${RM} -rf ${WRKDIR}/dev
|
|
${RM} ${WRKDIR}/usr/sbin/afacli
|
|
${MV} ${WRKDIR}/usr/sbin/afacli.bin ${WRKDIR}/usr/sbin/afacli
|
|
|
|
.include <bsd.port.post.mk>
|