diff options
author | tg <tg@FreeBSD.org> | 1996-08-23 14:45:09 +0800 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 1996-08-23 14:45:09 +0800 |
commit | 15a9cfac0c0d88722c9b8e5271fd75ed3cb5b824 (patch) | |
tree | 9b259566de3c53414d50004cf3bc44534a5fd988 /converters/uudeview/Makefile | |
parent | 351b8a9a9df3527fe1f968a9d5f72ff694ed28dc (diff) | |
download | freebsd-ports-gnome-15a9cfac0c0d88722c9b8e5271fd75ed3cb5b824.tar.gz freebsd-ports-gnome-15a9cfac0c0d88722c9b8e5271fd75ed3cb5b824.tar.zst freebsd-ports-gnome-15a9cfac0c0d88722c9b8e5271fd75ed3cb5b824.zip |
Import of uudeview; decode unordered files in any of uu/xx/base64/binhex
formats.
Submitted by: Tim Vanderhoek <ac199@freenet.hamilton.on.ca>
Diffstat (limited to 'converters/uudeview/Makefile')
-rw-r--r-- | converters/uudeview/Makefile | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/converters/uudeview/Makefile b/converters/uudeview/Makefile new file mode 100644 index 000000000000..2ce92ff37edd --- /dev/null +++ b/converters/uudeview/Makefile @@ -0,0 +1,66 @@ +# New ports collection makefile for: uulib +# Version Required: 0.5.4 (aka. 0.5pl4) +# Date Created: 04 Aug 1996 +# Whom: Tim Vanderhoek <ac199@freenet.hamilton.on.ca> +# +# $Id$ +# + +DISTNAME= uudeview-0.5.4 +CATEGORIES+= archivers +CATEGORIES+= mail +MASTER_SITES= http://www.uni-frankfurt.de/~fp/uudeview/Apps/frank/ + +MAINTAINER= ac199@freenet.hamilton.on.ca + +BUILD_DEPENDS= ${PREFIX}/lib/libuu.a:${PORTSDIR}/devel/uulib + +GNU_CONFIGURE= Yes +# Comment-out the next line and you'll probably enable posting. I've +# never tried it, and if you do do it, pkg_delete won't delete all the +# files that are installed. +# NOTE further that all you'll really do is cause uudeview to install +# its own minews do-hicky. +CONFIGURE_ARGS= --disable-minews +CONFIGURE_ARGS+= --prefix=${PREFIX} --disable-tcl + +EXTRAFILES+= porting.notes + +# DOCDIR is used in bsd.own.mk +PORTDOCDIR?= share/doc/uudeview +DOCFILES+= porting.notes +DOCFILES+= HOWTO + +post-patch: + @${ECHO_MSG} "===> Adding extra files"; + @for l in ${EXTRAFILES}; do \ + cp ${FILESDIR}/$${l} ${WRKSRC}/$${l}; \ + done + +# Maybe we should pay attention to DOCOWN, DOCGRP, and DOCMODE, set in +# bsd.own.mk +post-install: +.if !defined(NOPORTDOCS) + @if [ 'x${DOCFILES}' != x ] ; \ + then; \ + ${ECHO_MSG} "===> Copying documents to ${PREFIX}/${PORTDOCDIR}"; \ + fi; + mkdir -p ${PREFIX}/${PORTDOCDIR}; + @for l in ${DOCFILES}; \ + do; \ + cp ${WRKSRC}/$$l ${PREFIX}/${PORTDOCDIR}; \ + done +.else + @if [ 'x${DOCFILES}' != x ] ; \ + then \ + ${ECHO_MSG} "===> Not copying available documents to ${PREFIX}/${PORTDOCDIR}"; \ + fi; +.endif +.if !defined(NOMANCOMPRESS) + gzip -9nf ${PREFIX}/man/man1/uudeview.1 + gzip -9nf ${PREFIX}/man/man1/uuenview.1 +.endif + strip ${PREFIX}/bin/uudeview + strip ${PREFIX}/bin/uuenview + +.include <bsd.port.mk> |