mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-29 05:38:00 +00:00
1d467014a2
. use the same text both at LEGAL file and IGNORE message; [1] . use new DOWNLOAD_URL. Reported by: eadler (via e-mail) [1]
41 lines
1.0 KiB
Makefile
41 lines
1.0 KiB
Makefile
# Created by: Boris Samorodov <bsam@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= seatools
|
|
PORTVERSION= 2.54
|
|
CATEGORIES= sysutils linux
|
|
MASTER_SITES= ${DOWNLOAD_URL}
|
|
PKGNAMEPREFIX= linux-
|
|
DISTNAME= seatools_cli
|
|
EXTRACT_SUFX= .tar
|
|
|
|
MAINTAINER= bsam@FreeBSD.org
|
|
COMMENT= Seagate's SeaTools for Linux
|
|
|
|
DOWNLOAD_URL= http://www.seagate.com/files/www-content/support-content/downloads/seatools/_shared/downloads/seatools_cli.tar
|
|
NO_WRKSUBDIR= yes
|
|
RESTRICTED= Redistribution is not permitted
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
USE_LINUX= yes
|
|
|
|
PLIST_FILES= sbin/st
|
|
PORTDOCS= sthelp.txt
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-build:
|
|
@${BRANDELF} -t Linux ${WRKSRC}/st
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/st ${STAGEDIR}${PREFIX}/sbin/st
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/sthelp.txt ${STAGEDIR}${DOCSDIR}/sthelp.txt
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if (!exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}))
|
|
IGNORE= please fetch the distfile: ${DOWNLOAD_URL} by hand and place it in ${DISTDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|