diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1996-11-12 02:19:40 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1996-11-12 02:19:40 +0000 |
commit | d23a79568090d280bf3beb199bb97f0572234984 (patch) | |
tree | 8af4f4b16bdda8a7b54ff123a7cfe5fcc38c203c /lang/Sather | |
parent | b72f3823ec582474b4ab98fe3c46fecea0d4ddab (diff) | |
download | ports-d23a79568090d280bf3beb199bb97f0572234984.tar.gz ports-d23a79568090d280bf3beb199bb97f0572234984.zip |
Notes
Diffstat (limited to 'lang/Sather')
-rw-r--r-- | lang/Sather/Makefile | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/lang/Sather/Makefile b/lang/Sather/Makefile index d3ba1d756307..b4b82d3248ab 100644 --- a/lang/Sather/Makefile +++ b/lang/Sather/Makefile @@ -3,26 +3,28 @@ # Date created: Mon Oct 31 22:04:12 PST 1994 # Whom: hsu # -# $Id: Makefile,v 1.10 1995/11/22 13:12:26 asami Exp $ +# $Id: Makefile,v 1.11 1996/03/07 13:00:53 asami Exp $ # DISTNAME= Sather-1.0.5 PKGNAME= sather-1.0.5 -CATEGORIES+= lang +CATEGORIES= lang MASTER_SITES= ftp://ftp.icsi.berkeley.edu/pub/sather/ +MAINTAINER= ports@FreeBSD.org + WRKSRC= ${WRKDIR}/Sather ALL_TARGET= testall do-install: - install -c -m 555 ${WRKSRC}/Compiler/cs ${PREFIX}/bin - install -c -m 444 ${WRKSRC}/Doc/man/man1/cs.1 ${PREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/Compiler/cs ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/Doc/man/man1/cs.1 ${PREFIX}/man/man1 -gzip -9nf ${PREFIX}/man/man1/cs.1 - mkdir -p ${PREFIX}/share/doc/sather - install -c -m 444 ${WRKSRC}/Doc/License ${PREFIX}/share/doc/sather + ${MKDIR} ${PREFIX}/share/doc/sather + ${INSTALL_DATA} ${WRKSRC}/Doc/License ${PREFIX}/share/doc/sather .if !defined(NOPORTDOCS) .for file in Bugs Changes Contributing FAQ README manual.ps - install -c -m 444 ${WRKSRC}/Doc/${file} ${PREFIX}/share/doc/sather + ${INSTALL_DATA} ${WRKSRC}/Doc/${file} ${PREFIX}/share/doc/sather .endfor .endif |