mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
887e40cee3
mbox2mdir is a small program to convert mail stored in UNIX mbox format to qmail's Maildir format. It can (optionally) also truncate the source mbox file upon successful conversion. I use it to move mail delivered by /bin/mail or sendmail to qmail Maildir folders, but of course there are many other possible uses for it. WWW: http://sageshome.net/oss/mbox2mdir.php PR: ports/88245 Submitted by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
27 lines
565 B
Makefile
27 lines
565 B
Makefile
# New ports collection makefile for: mbox2mdir
|
|
# Date created: 2005-10-30
|
|
# Whom: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mbox2mdir
|
|
PORTVERSION= 1.3
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://sageshome.net/downloads/oss/
|
|
|
|
MAINTAINER= acardenas@bsd.org.pe
|
|
COMMENT= A mbox to qmail's Maildir converter written in C++
|
|
|
|
USE_BZIP2= yes
|
|
|
|
PLIST_FILES= bin/mbox2mdir
|
|
|
|
do-build:
|
|
${CXX} ${CXXFLAGS} ${WRKSRC}/mbox2mdir.cpp -o ${WRKSRC}/mbox2mdir
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/mbox2mdir ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|