summaryrefslogtreecommitdiff
path: root/misc/mmv/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'misc/mmv/Makefile')
-rw-r--r--misc/mmv/Makefile78
1 files changed, 0 insertions, 78 deletions
diff --git a/misc/mmv/Makefile b/misc/mmv/Makefile
deleted file mode 100644
index f2bfb4b2d1b2..000000000000
--- a/misc/mmv/Makefile
+++ /dev/null
@@ -1,78 +0,0 @@
-# New ports collection makefile for: mmv
-# Version required: 1.01b
-# Date created: 2 Feb 1995
-# Whom: Michael Elbel (me)
-#
-# $Id: Makefile,v 1.5 1995/04/16 05:22:22 asami Exp $
-#
-
-
-DISTNAME= mmv
-PKGNAME= mmv-1.01b
-CATEGORIES+= utilities
-MASTER_SITES= ftp://gatekeeper.dec.com/archive/.b/usenet/comp.sources.unix/
-DISTFILES= part01.Z part02.Z mmv.pch.Z
-
-MAINTAINER= me@FreeBSD.org
-
-DISTDIR=${PORTSDIR}/distfiles/${DISTNAME}
-SITE_DISTFILES= volume21/mmv/part01.Z volume21/mmv/part02.Z volume22/mmv.pch.Z
-NO_WRKSUBDIR= yes
-
-# targets shamelessly hacked from the bsd.ports.mk file
-
-do-fetch:
- @if [ ! -d ${DISTDIR} ]; then mkdir -p ${DISTDIR}; fi
- @(cd ${DISTDIR}; \
- for file in ${SITE_DISTFILES}; do \
- if [ ! -f `basename $$file` ]; then \
- echo ">> `basename $$file` doesn't seem to exist on this system."; \
- echo ">> Attempting to fetch it from a master site."; \
- for site in ${MASTER_SITES}; do \
- pwd;\
- if ${NCFTP} ${NCFTPFLAGS} $${site}$${file}; then \
- break; \
- fi \
- done; \
- if [ ! -f `basename $$file` ]; then \
- echo ">> Couldn't fetch it - please try to retreive this";\
- echo ">> port manually into ${DISTDIR} and try again."; \
- exit 1; \
- fi; \
- fi \
- done)
-
-pre-extract:
- chmod +x scripts/unshar scripts/makeitapatch
-
-do-extract:
- @rm -rf ${WRKDIR}
- @mkdir -p ${WRKDIR}/tmp
- @(cd ${DISTDIR} ; for file in ${DISTFILES}; do \
- cp $$file ${WRKDIR}/tmp; \
- done ; \
- cd ${WRKDIR}/tmp; \
- uncompress *; \
- cd .. ; \
- for file in tmp/part0* ; do \
- ${SCRIPTDIR}/unshar $$file; \
- done ; \
- ${SCRIPTDIR}/makeitapatch tmp/mmv.pch ; \
- mv tmp/mmv.pch ${PATCHDIR}/patch-0a ; \
- cat mmv.c.? >mmv.c ; rm mmv.c.? )
-
-
-do-install:
- (cd ${PREFIX}/bin ; rm -f mmv mad mcp mln ; \
- cd ${WRKSRC}; \
- install ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
- mmv ${PREFIX}/bin ; \
- ln ${PREFIX}/bin/mmv ${PREFIX}/bin/mad ; \
- ln ${PREFIX}/bin/mmv ${PREFIX}/bin/mcp ; \
- ln ${PREFIX}/bin/mmv ${PREFIX}/bin/mln ; \
- if [ ! -f mmv.1.gz ] ; then gzip mmv.1 ; fi ; \
- if [ ! -d ${PREFIX}/man/man1 ]; then mkdir -p ${PREFIX}/man/man1; fi; \
- install ${COPY} -o ${BINOWN} -g ${BINGRP} \
- mmv.1.gz ${PREFIX}/man/man1 ; )
-
-.include <bsd.port.mk>