24 lines
625 B
Makefile
24 lines
625 B
Makefile
# Created by: Ion-Mihai "IOnut" Tetcu <itetcu@people.tecnik93.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= altermime
|
|
PORTVERSION= 0.3.11.a1
|
|
CATEGORIES= mail textproc
|
|
MASTER_SITES= http://ionut.tetcu.info/FreeBSD/ports/distfiles/
|
|
|
|
MAINTAINER= itetcu@FreeBSD.org
|
|
COMMENT= Small C program which is used to alter your mime-encoded mailpacks
|
|
|
|
PLIST_FILES= bin/altermime
|
|
PORTDOCS= CHANGELOG LICENCE README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for i in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|