diff options
author | max <max@FreeBSD.org> | 1997-05-31 04:38:25 +0800 |
---|---|---|
committer | max <max@FreeBSD.org> | 1997-05-31 04:38:25 +0800 |
commit | 4c1dce2797d00b5de8180f8723f31375a2fae49c (patch) | |
tree | 3b104198d042cb5c84b0f6f1621d46811e49b6fe /cad/pcb | |
parent | a5807f851ad6b09dfd7029e4b6498ca76b677ee4 (diff) | |
download | freebsd-ports-gnome-4c1dce2797d00b5de8180f8723f31375a2fae49c.tar.gz freebsd-ports-gnome-4c1dce2797d00b5de8180f8723f31375a2fae49c.tar.zst freebsd-ports-gnome-4c1dce2797d00b5de8180f8723f31375a2fae49c.zip |
Remove unnecessary EXTRACT_SUFX.
RUN_DEPENDS better reflects the reality instead of BUILD_DEPENDS.
Install doc files into ${LOCALBASE}/share/doc/pcb.
PR: 3689
Suggested by: mita@jp.freebsd.org
While at it,
List the man page and define MANCOMPRESSED.
Diffstat (limited to 'cad/pcb')
-rw-r--r-- | cad/pcb/Makefile | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/cad/pcb/Makefile b/cad/pcb/Makefile index 01c8bff3fd43..e51d94bf3283 100644 --- a/cad/pcb/Makefile +++ b/cad/pcb/Makefile @@ -3,18 +3,25 @@ # Date created: 19 October 1994 # Whom: mr # -# $Id: Makefile,v 1.14 1996/09/21 09:53:07 asami Exp $ +# $Id: Makefile,v 1.15 1996/11/15 23:30:59 obrien Exp $ # DISTNAME= pcb-1.4.0 CATEGORIES= cad MASTER_SITES= ftp://ftp.uni-ulm.de/pub/pcb/1.4/ -EXTRACT_SUFX= .tar.gz MAINTAINER= janek@gaja.ipan.lublin.pl -BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 +RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 USE_IMAKE= yes +MAN1= pcb.1 +MANCOMPRESSED= yes +DOCDIR= ${LOCALBASE}/share/doc/pcb + +post-install: + @${MKDIR} ${DOCDIR} + @${INSTALL_DATA} ${WRKSRC}/doc/* ${DOCDIR} + @${INSTALL_DATA} ${WRKSRC}/README_FILES/* ${DOCDIR} .include <bsd.port.mk> |