mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
523157e0cf
PR: ports/11192 Submitted by: Chris Piazza <cpiazza@home.net>
54 lines
1.6 KiB
Makefile
54 lines
1.6 KiB
Makefile
# New ports collection makefile for: mtools
|
|
# Version required: 3.9.4
|
|
# Date created: 5 October 1994
|
|
# Whom: jmz
|
|
#
|
|
# $Id: Makefile,v 1.26 1999/01/31 12:31:06 obrien Exp $
|
|
#
|
|
|
|
DISTNAME= mtools-3.9.4
|
|
PKGNAME= mtools-3.9.4.2703b
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= ftp://ftp.tux.org/pub/knaff/mtools/ \
|
|
http://mtools.linux.lu/
|
|
|
|
PATCHFILES= mtools-3.9.4-2703b.diff.gz
|
|
PATCH_SITES= ftp://ftp.tux.org/pub/knaff/mtools/ \
|
|
http://mtools.linux.lu/
|
|
PATCH_DIST_STRIP= -p1
|
|
|
|
MAINTAINER= jmz@FreeBSD.org
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-xdf
|
|
|
|
USE_GMAKE= yes
|
|
|
|
MAN1= mattrib.1 mbadblocks.1 mcat.1 mcd.1 mcopy.1 mdel.1 mdeltree.1 \
|
|
mdir.1 mdu.1 mformat.1 mkmanifest.1 mlabel.1 mmd.1 mmount.1 \
|
|
mmove.1 mpartition.1 mrd.1 mread.1 mren.1 mshowfat.1 \
|
|
mtoolstest.1 mtools.1 mtype.1 mzip.1
|
|
MAN5= mtools.5
|
|
|
|
post-patch:
|
|
@cd ${WRKSRC}; for f in config.c mtools.5 mtools.texi; do \
|
|
${MV} $$f $$f.orig; \
|
|
${SED} -e s:/etc/mtools.conf:${PREFIX}/etc/mtools.conf: \
|
|
< $$f.orig > $$f; done
|
|
@cd ${WRKSRC}/scripts; for f in ocopy xcopy; do \
|
|
if [ ! -f $$f -a -f $$f.orig ]; then ${CP} -p $$f.orig $$f ; fi \
|
|
done
|
|
|
|
post-install:
|
|
@# mwrite has been removed by author, but we'll keep it just a bit longer
|
|
@ln -sf ${PREFIX}/bin/mtools ${PREFIX}/bin/mwrite
|
|
@ln -sf ${PREFIX}/man/man1/mcopy.1.gz ${PREFIX}/man/man1/mwrite.1.gz
|
|
@${INSTALL_DATA} ${WRKSRC}/mtools.conf ${PREFIX}/etc
|
|
@${ECHO} "Please verify ${PREFIX}/etc/mtools.conf for your machine."
|
|
@if [ ! -f ${PREFIX}/info/dir ]; then \
|
|
${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \
|
|
fi
|
|
@install-info ${PREFIX}/info/mtools.info ${PREFIX}/info/dir
|
|
|
|
.include <bsd.port.mk>
|