mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
0f4d8530e3
- Respect NOPORTDOCS - Use INSTALL_DATA instead of INSTALL_MAN when installing docs - Use DOCSDIR shortcut - Make installation a little bit more vebose - Redo patch a bit better than my last commit Submitted by: Sergei Kolobov <sergei@kolobov.com> PR: ports/42693
32 lines
682 B
Makefile
32 lines
682 B
Makefile
# New ports collection makefile for: bulk_mailer
|
|
# Date created: 20 March 1997
|
|
# Whom: dlowe
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= bulk_mailer
|
|
PORTVERSION= 1.13
|
|
CATEGORIES= mail
|
|
MASTER_SITES= ftp://cs.utk.edu/pub/moore/bulk_mailer/
|
|
|
|
MAINTAINER= dlowe@saturn5.com
|
|
|
|
GNU_CONFIGURE= YES
|
|
CONFIGURE_ARGS= --cache-file=/dev/null
|
|
|
|
ALL_TARGET= bulk_mailer
|
|
|
|
MAN1= bulk_mailer.1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bulk_mailer ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/bulk_mailer.1 ${PREFIX}/man/man1
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/bulk_mailer.README ${DOCSDIR}/README
|
|
${INSTALL_DATA} ${WRKSRC}/bulk_mailer.ps ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|