mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
e6363d936c
- Resolv checksum error - Give maintainership to submitter PR: ports/135371 Submitted by: Sylvio Cesar <scjamorim _AT_ bsd.com.br>
47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
# New ports collection makefile for: memtest86
|
|
# Date created: 27 Mar 2004
|
|
# Whom: Radim Kolar
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= memtest86
|
|
PORTVERSION= 3.5
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.memtest86.com/
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}.iso.zip
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= scjamorim@bsd.com.br
|
|
COMMENT= Stand alone memory test for x86 architecture computers
|
|
|
|
EXTRACT_DEPENDS= unzip:${PORTSDIR}/archivers/unzip
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
|
|
NO_BUILD= yes
|
|
|
|
PORTDOCS= README
|
|
PLIST_FILES= %%DATADIR%%/floppy.bin %%DATADIR%%/Memtest86_3.5.iso
|
|
PLIST_DIRS= %%DATADIR%%
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
post-extract:
|
|
@${UNZIP_CMD} -qo ${DISTDIR}/${DISTNAME}.iso.zip -d ${WRKSRC}
|
|
|
|
do-install:
|
|
@${MKDIR} ${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/precomp.bin ${DATADIR}/floppy.bin
|
|
${INSTALL_DATA} ${WRKSRC}/Memtest86_${PORTVERSION}.iso \
|
|
${DATADIR}/Memtest86_${PORTVERSION}.iso
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for i in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|