diff options
author | asami <asami@FreeBSD.org> | 1996-11-18 19:44:27 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-11-18 19:44:27 +0800 |
commit | 55d005face1453b1b4a2060d200b23e7a8724bc6 (patch) | |
tree | 57df8a2140bcfbf3d9340091e7c6cadd742f8b85 /audio | |
parent | e17062778b44808fb41055bba34741677ec69abc (diff) | |
download | freebsd-ports-graphics-55d005face1453b1b4a2060d200b23e7a8724bc6.tar.gz freebsd-ports-graphics-55d005face1453b1b4a2060d200b23e7a8724bc6.tar.zst freebsd-ports-graphics-55d005face1453b1b4a2060d200b23e7a8724bc6.zip |
Use MAN? macros. CATEGORIES+= -> CATEGORIES.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/radio/Makefile | 9 | ||||
-rw-r--r-- | audio/sox/Makefile | 5 | ||||
-rw-r--r-- | audio/speak_freely/Makefile | 8 |
3 files changed, 6 insertions, 16 deletions
diff --git a/audio/radio/Makefile b/audio/radio/Makefile index d78a0e9e81f..6bbb08e2d3b 100644 --- a/audio/radio/Makefile +++ b/audio/radio/Makefile @@ -3,7 +3,7 @@ # Date created: 5 July 1995 # Whom: janek@gaja.ipan.lublin.pl # -# $Id: Makefile,v 1.4 1996/10/18 16:11:04 max Exp $ +# $Id: Makefile,v 1.5 1996/11/15 23:14:01 obrien Exp $ # DISTNAME= radio2.0.4 @@ -15,11 +15,6 @@ MAINTAINER= janek@gaja.ipan.lublin.pl NO_WRKSUBDIR= yes MAKE_FLAGS= FreeBSD -f - -post-install: -.if !defined(NOMANCOMPRESS) - gzip -9nf ${PREFIX}/man/man1/radio.1 - gzip -9nf ${PREFIX}/man/man1/broadcast.1 -.endif +MAN1= radio.1 broadcast.1 .include <bsd.port.mk> diff --git a/audio/sox/Makefile b/audio/sox/Makefile index babb95d97e2..ee4d2022899 100644 --- a/audio/sox/Makefile +++ b/audio/sox/Makefile @@ -3,7 +3,7 @@ # Date created: 17 Oct 1994 # Whom: torstenb # -# $Id: Makefile,v 1.6 1995/05/05 20:54:27 torstenb Exp $ +# $Id: Makefile,v 1.7 1996/11/15 23:14:24 obrien Exp $ # DISTNAME= sox10p11 @@ -14,7 +14,6 @@ EXTRACT_SUFX= .tar.Z MAINTAINER= torstenb@FreeBSD.ORG -post-install: - gzip -9nf ${PREFIX}/man/man1/sox.1 +MAN1= sox.1 .include <bsd.port.mk> diff --git a/audio/speak_freely/Makefile b/audio/speak_freely/Makefile index f46be7b0f3b..5e968297b44 100644 --- a/audio/speak_freely/Makefile +++ b/audio/speak_freely/Makefile @@ -4,7 +4,7 @@ # Date created: 18 Apr 1996 # Whom: ache # -# $Id: Makefile,v 1.1.1.1 1996/11/11 23:17:38 ache Exp $ +# $Id: Makefile,v 1.2 1996/11/11 23:24:31 ache Exp $ # DISTNAME= speak_freely-6.1b @@ -19,6 +19,7 @@ UTILS= sfspeaker sfmike sflwl DEMNS= sfecho sflwld DDEMNS= sfvod SFLIB= ${PREFIX}/lib/speak_freely +MAN1= ${UTILS:S/$/.1/} ${DEMNS:S/$/.1/} ${DDEMNS:S/$/.1/} do-install: if [ ! -d ${SFLIB} ]; then \ @@ -41,10 +42,5 @@ do-install: $(INSTALL_SCRIPT) $$p ${PREFIX}/sbin; \ $(INSTALL_MAN) $$p.1 ${PREFIX}/man/man1; \ done; -.if !defined(NOMANCOMPRESS) - for p in ${UTILS} ${DEMNS} ${DDEMNS}; do \ - gzip -9nf ${PREFIX}/man/man1/$$p.1; \ - done -.endif .include <bsd.port.mk> |