diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1997-05-07 02:03:58 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1997-05-07 02:03:58 +0000 |
commit | de2a28bd72aa4f9e60a2205da3efb43372dfc1a2 (patch) | |
tree | f236f05fb64c84e16d8f4868db64295cc7a88344 /archivers/star | |
parent | 71824badff6c8733e53603327b6c817940476f2b (diff) | |
download | ports-de2a28bd72aa4f9e60a2205da3efb43372dfc1a2.tar.gz ports-de2a28bd72aa4f9e60a2205da3efb43372dfc1a2.zip |
No need to use "+=" to define MAKE_ENV.
Also, replace the four lines starting with .if !defined(NOMANCOMPRESS)...
with a single line MAN1=star.1. I think that's much easier. :)
Notes
Notes:
svn path=/head/; revision=6424
Diffstat (limited to 'archivers/star')
-rw-r--r-- | archivers/star/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/archivers/star/Makefile b/archivers/star/Makefile index c694b5414780..469a7a392f67 100644 --- a/archivers/star/Makefile +++ b/archivers/star/Makefile @@ -3,7 +3,7 @@ # Date created: Thu May 1 20:28:44 CEST 1997 # Whom: Andreas Klemm <andreas@klemm.gtn.com> # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1997/05/03 10:16:32 andreas Exp $ # DISTNAME= star-1.0 @@ -13,14 +13,11 @@ MASTER_SITES= ftp://ftp.fokus.gmd.de/pub/unix/star/ MAINTAINER= andreas@FreeBSD.org USE_GMAKE= yes -MAKE_ENV+= MAKEPROG=gmake +MAKE_ENV= MAKEPROG=gmake +MAN1= star.1 do-install: ${INSTALL_PROGRAM} ${WRKSRC}/star/OBJ/i386-freebsd-cc/star ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/star/star.1 ${PREFIX}/man/man1 -.if !defined(NOMANCOMPRESS) - @${ECHO_MSG} "===> Compressing manual pages for ${PKGNAME}" - @${GZIP_CMD} ${PREFIX}/man/man1/star.1 -.endif .include <bsd.port.mk> |