blob: 066dc39fcca0ce5f0a9e14b12fe8a99f5f47711d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# New ports collection makefile for: tnef
# Date created: 19 September 2000
# Whom: Cyrus Rahman <cr@jcmax.com>
#
# $FreeBSD$
#
PORTNAME= tnef
PORTVERSION= 1.4.3
CATEGORIES= converters mail
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= garga@FreeBSD.org
COMMENT= Unpack data in MS Outlook TNEF format
GNU_CONFIGURE= yes
USE_GETOPT_LONG= yes
CONFIGURE_ARGS= --mandir=${MANPREFIX}/man
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
MAN1= tnef.1
PORTDOCS= AUTHORS NEWS README THANKS TODO
PLIST_FILES= bin/tnef
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${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>
|