freebsd-ports/sysutils/exfat-utils/Makefile
Gavin Atkinson ba79bd1731 We should not distribute exFAT related packages due to licensing issues.
Reviewed by:	tabthorpe
Approved by:	portmgr (bapt), core
2013-09-23 21:36:30 +00:00

41 lines
1.4 KiB
Makefile

# Created by: Alex Samorukov <samm@os2.kiev.ua>
# $FreeBSD$
PORTNAME= exfat-utils
PORTVERSION= 1.0.1
CATEGORIES= sysutils
MASTER_SITES= GOOGLE_CODE
MAINTAINER= samm@os2.kiev.ua
COMMENT= Utilities to create, check, label and dump exFAT filesystem
LICENSE= Microsoft-exFAT
LICENSE_NAME= Microsoft exFAT License
LICENSE_TEXT= Requires license from Microsoft, please see \
http://www.microsoft.com/en-us/legal/intellectualproperty/IPLicensing/Programs/exFATFileSystem.aspx
LICENSE_PERMS= no-dist-mirror no-dist-sell no-pkg-mirror no-pkg-sell
LIB_DEPENDS= ublio:${PORTSDIR}/devel/libublio
PROJECTHOST= exfat
USE_SCONS= yes
MAN8= exfatlabel.8 mkexfatfs.8 dumpexfat.8 exfatfsck.8
PLIST_FILES= sbin/exfatlabel sbin/dumpexfat sbin/exfatfsck sbin/mkexfatfs
NO_STAGE= yes
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/label/exfatlabel ${PREFIX}/sbin
${INSTALL_PROGRAM} ${WRKSRC}/dump/dumpexfat ${PREFIX}/sbin
${INSTALL_PROGRAM} ${WRKSRC}/fsck/exfatfsck ${PREFIX}/sbin
${INSTALL_PROGRAM} ${WRKSRC}/mkfs/mkexfatfs ${PREFIX}/sbin
${INSTALL_MAN} ${WRKSRC}/label/exfatlabel.8 ${MAN8PREFIX}/man/man8
${INSTALL_MAN} ${WRKSRC}/mkfs/mkexfatfs.8 ${MAN8PREFIX}/man/man8
${INSTALL_MAN} ${WRKSRC}/dump/dumpexfat.8 ${MAN8PREFIX}/man/man8
${INSTALL_MAN} ${WRKSRC}/fsck/exfatfsck.8 ${MAN8PREFIX}/man/man8
post-patch:
@${REINPLACE_CMD} -e 's|/usr/local/|${PREFIX}/|' ${WRKSRC}/SConstruct
.include <bsd.port.mk>