62266663da
- Add a x-test target that runs the tnef tests - Shorten COMMENT to fit the limit While I'm here: - Install some documentation PR: 59459 Submitted by: Rui Lopes <rui@ruilopes.com> Approved by: maintainer
36 lines
806 B
Makefile
36 lines
806 B
Makefile
# New ports collection makefile for: tnef
|
|
# Date created: 19 September 2000
|
|
# Whom: Cyrus Rahman <cr@jcmax.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tnef
|
|
PORTVERSION= 1.2.1
|
|
CATEGORIES= converters mail
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= cr@jcmax.com
|
|
COMMENT= Unpack data in MS Outlook TNEF format
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GETOPT_LONG= yes
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
|
|
MAN1= tnef.1
|
|
DOCS= AUTHORS NEWS README THANKS TODO
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-install:
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
# This target is intended to be run by the port maintainer.
|
|
x-test: build
|
|
.for dir in cmdline files
|
|
@cd ${WRKSRC}/tests/${dir} && ${MAKE} check-TESTS
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|