mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
1c67c8e0e4
PR: ports/177209 Submitted by: William Grzybowski <william88@gmail.com>
74 lines
1.7 KiB
Makefile
74 lines
1.7 KiB
Makefile
# Created by: jmz
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mtools
|
|
PORTVERSION= 4.0.10
|
|
PORTREVISION= 3
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= ${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR= mtools
|
|
|
|
MAINTAINER= skreuzer@FreeBSD.org
|
|
COMMENT= A collection of tools for manipulating MSDOS files
|
|
|
|
CONFLICTS_INSTALL= multimarkdown-*
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= ac_cv_header_malloc_h=no
|
|
CONFIGURE_ARGS= --enable-xdf
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
MAN1= mattrib.1 mbadblocks.1 mcat.1 mcd.1 mclasserase.1 mcopy.1 \
|
|
mdel.1 mdeltree.1 mdir.1 mdu.1 mformat.1 mkmanifest.1 \
|
|
minfo.1 mlabel.1 mmd.1 mmount.1 mmove.1 mpartition.1 \
|
|
mrd.1 mren.1 mshowfat.1 mtoolstest.1 mtools.1 mtype.1 \
|
|
mzip.1
|
|
MAN5= mtools.5
|
|
INFO= mtools
|
|
|
|
OPTIONS_DEFINE= ICONV X11
|
|
OPTIONS_DEFAULT=ICONV X11
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MICONV}
|
|
USE_ICONV= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib -liconv
|
|
.else
|
|
CONFIGURE_ENV+= ac_cv_header_iconv_h=no
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MX11}
|
|
USE_XORG= x11 sm ice xau
|
|
PLIST_SUB= X11=""
|
|
MAN1+= floppyd.1 floppyd_installtest.1
|
|
.else
|
|
CONFIGURE_ARGS+= --without-x
|
|
PLIST_SUB= X11="@comment "
|
|
MAKE_ENV+= WITHOUT_X11=${WITHOUT_X11}
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|^#define MT_SIZE_T size_t|#define MT_SIZE_T off_t|g' \
|
|
${WRKSRC}/llong.h
|
|
@${REINPLACE_CMD} -e 's|/etc/mtools.conf|${PREFIX}/etc/mtools.conf|g' \
|
|
${WRKSRC}/mformat.c
|
|
.for f in mtools.5 mtools.texi
|
|
@${REINPLACE_CMD} -e 's|/usr/local/etc/|${PREFIX}/etc/|g' \
|
|
${WRKSRC}/${f}
|
|
.endfor
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/mtools.conf ${PREFIX}/etc/mtools.conf.sample
|
|
@if [ ! -f ${PREFIX}/etc/mtools.conf ]; then \
|
|
cd ${PREFIX}/etc && ${CP} -p mtools.conf.sample mtools.conf; \
|
|
fi
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|