mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
6ca3fbc2af
- Define DOCS - Don't use -Werror - Fully respect CFLAGS
25 lines
633 B
Makefile
25 lines
633 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://T32.tecnik93.com/FreeBSD/ports/altermime/sources/
|
|
|
|
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>
|