mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
a676133249
mbx2mbox converts Microsoft Outlook Express .mbx files into standard mail files (mbox) that programs like Pine, Mutt, and Netscape can parse. Usage: mbx2mbox file1.mbx file2.mbx ... http://www.cs.virginia.edu/~dwc3q/code/ PR: ports/8830 Submitted By: Josh Gilliam <josh@quick.net>
34 lines
719 B
Makefile
34 lines
719 B
Makefile
# New ports collection makefile for: mbx2mbox
|
|
# Version required: 0.1
|
|
# Date created: 23 November 1998
|
|
# Whom: Josh Gilliam <josh@quick.net>
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
DISTNAME= mbx2mbox-0.1
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://www.cs.virginia.edu/~dwc3q/code/ \
|
|
ftp://maroon.webmaster.com/pub/mbx2mbox/
|
|
EXTRACT_SUFX=
|
|
|
|
MAINTAINER= josh@quick.net
|
|
|
|
EXTRACT_CMD= ${CP}
|
|
EXTRACT_BEFORE_ARGS=
|
|
EXTRACT_AFTER_ARGS= .
|
|
NO_WRKSUBDIR= yes
|
|
NO_BUILD= yes
|
|
USE_PERL5= yes
|
|
|
|
post-patch:
|
|
|
|
@${MV} ${WRKSRC}/${DISTNAME} ${WRKSRC}/${DISTNAME}.pre_sed
|
|
@${SED} -e 's%/usr/bin/perl%${PERL}%' \
|
|
${WRKSRC}/${DISTNAME}.pre_sed > ${WRKSRC}/${DISTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/mbx2mbox-0.1 ${PREFIX}/bin/mbx2mbox
|
|
|
|
.include <bsd.port.mk>
|