diff options
author | sergei <sergei@FreeBSD.org> | 2003-12-08 14:51:31 +0000 |
---|---|---|
committer | sergei <sergei@FreeBSD.org> | 2003-12-08 14:51:31 +0000 |
commit | 95a583d7d3a308af7c2610957559401e39d58dea (patch) | |
tree | 3b529c49f7f83df13d41dda9e1984c5269a1edef /converters/tnef/Makefile | |
parent | 1ec2e40344f57e2be92217b6d94c279ff0bd1436 (diff) | |
download | FreeBSD-ports-95a583d7d3a308af7c2610957559401e39d58dea.zip FreeBSD-ports-95a583d7d3a308af7c2610957559401e39d58dea.tar.gz |
- Update to 1.2.1 (now hosted at SourceForge)
- 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
Diffstat (limited to 'converters/tnef/Makefile')
-rw-r--r-- | converters/tnef/Makefile | 25 |
1 files changed, 19 insertions, 6 deletions
diff --git a/converters/tnef/Makefile b/converters/tnef/Makefile index 6d9190f..6d30f58 100644 --- a/converters/tnef/Makefile +++ b/converters/tnef/Makefile @@ -6,18 +6,31 @@ # PORTNAME= tnef -PORTVERSION= 1.1 +PORTVERSION= 1.2.1 CATEGORIES= converters mail -MASTER_SITES= http://world.std.com/~damned/ +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= cr@jcmax.com -COMMENT= Unpack data encapsulated into Microsoft Outlook's application/ms-tnef format +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 +MAN1= tnef.1 +DOCS= AUTHORS NEWS README THANKS TODO -pre-configure: - ${MV} ${WRKSRC}/doc/tnef.3 ${WRKSRC}/doc/tnef.1 +.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> |