1994-10-06 01:29:35 +00:00
|
|
|
# New ports collection makefile for: itcl
|
1996-08-24 03:52:11 +00:00
|
|
|
# Version required: 2.1
|
|
|
|
# Date created: Aug 17 1996
|
|
|
|
# Whom: chuckr
|
1994-10-06 01:29:35 +00:00
|
|
|
#
|
1996-12-07 13:03:36 +00:00
|
|
|
# $Id: Makefile,v 1.17 1996/11/13 09:16:34 asami Exp $
|
1994-10-06 01:29:35 +00:00
|
|
|
#
|
|
|
|
|
1996-08-24 03:52:11 +00:00
|
|
|
DISTNAME= itcl2.1
|
1996-08-25 23:47:09 +00:00
|
|
|
PKGNAME= itcl-2.1
|
1996-11-12 02:19:40 +00:00
|
|
|
CATEGORIES= lang
|
1996-08-24 03:52:11 +00:00
|
|
|
MASTER_SITES= ftp://ftp.neosoft.com/pub/tcl/NEW/
|
1995-04-15 05:44:50 +00:00
|
|
|
|
1996-08-24 03:52:11 +00:00
|
|
|
MAINTAINER= chuckr@freebsd.org
|
1994-10-06 01:29:35 +00:00
|
|
|
|
1996-12-07 13:03:36 +00:00
|
|
|
BROKEN= "installation does not DTRT"
|
1996-08-26 03:00:41 +00:00
|
|
|
GNU_CONFIGURE= yes
|
1996-11-13 02:00:44 +00:00
|
|
|
CONFIGURE_ARGS= --enable-shared --exec_prefix=${PREFIX}
|
1996-08-24 03:52:11 +00:00
|
|
|
|
|
|
|
post-extract:
|
|
|
|
@$(RM) -f $(WRKSRC)/tcl7.5/library/*.c
|
|
|
|
|
|
|
|
post-install:
|
|
|
|
.if !defined(NOMANCOMPRESS)
|
|
|
|
@$(ECHO) "Compressing man pages, be patient, there are many."
|
|
|
|
@for m in $(WRKSRC)/tcl7.5/doc/*.1 ;\
|
|
|
|
do gzip -9nf $(PREFIX)/share/itcl/tcl7.5/man/man1/`$(BASENAME) $$m`;done
|
|
|
|
@for m in $(WRKSRC)/tcl7.5/doc/*.3 ;\
|
|
|
|
do gzip -9nf $(PREFIX)/share/itcl/tcl7.5/man/man3/`$(BASENAME) $$m`;done
|
|
|
|
@for m in $(WRKSRC)/tcl7.5/doc/*.n ;\
|
|
|
|
do gzip -9nf $(PREFIX)/share/itcl/tcl7.5/man/mann/`$(BASENAME) $$m`;done
|
|
|
|
@for m in $(WRKSRC)/tk4.1/doc/*.1 ;\
|
|
|
|
do gzip -9nf $(PREFIX)/share/itcl/tk4.1/man/man1/`$(BASENAME) $$m`;done
|
|
|
|
@for m in $(WRKSRC)/tk4.1/doc/*.3 ;\
|
|
|
|
do gzip -9nf $(PREFIX)/share/itcl/tk4.1/man/man3/`$(BASENAME) $$m`;done
|
|
|
|
@for m in $(WRKSRC)/tk4.1/doc/*.n ;\
|
|
|
|
do gzip -9nf $(PREFIX)/share/itcl/tk4.1/man/mann/`$(BASENAME) $$m`;done
|
|
|
|
@for m in $(WRKSRC)/itcl/doc/*.1 ;\
|
|
|
|
do gzip -9nf $(PREFIX)/share/itcl/itcl/man/man1/`$(BASENAME) $$m`;done
|
|
|
|
@for m in $(WRKSRC)/itcl/doc/*.n ;\
|
|
|
|
do gzip -9nf $(PREFIX)/share/itcl/itcl/man/mann/`$(BASENAME) $$m`;done
|
|
|
|
@for m in $(WRKSRC)/itk/doc/*.1 ;\
|
|
|
|
do gzip -9nf $(PREFIX)/share/itcl/itk/man/man1/`$(BASENAME) $$m`;done
|
|
|
|
@for m in $(WRKSRC)/itk/doc/*.n ;\
|
|
|
|
do gzip -9nf $(PREFIX)/share/itcl/itk/man/mann/`$(BASENAME) $$m`;done
|
|
|
|
@for m in $(WRKSRC)/iwidgets2.1.0/doc/*.n ; \
|
|
|
|
do gzip -9nf $(PREFIX)/share/itcl/iwidgets/man/mann/`$(BASENAME) $$m`;done
|
1996-08-24 17:12:05 +00:00
|
|
|
.endif
|
1996-08-24 03:52:11 +00:00
|
|
|
@echo "*****************************************************"
|
|
|
|
@echo "There are new man directories to install now:"
|
|
|
|
@echo "Add $(PREFIX)share/itcl/tcl7.5"
|
|
|
|
@echo " tk4.1"
|
|
|
|
@echo " itcl"
|
|
|
|
@echo " itk"
|
|
|
|
@echo " iwidgets"
|
|
|
|
@echo "To the manpath in /etc/manpath.config"
|
|
|
|
@echo "*****************************************************"
|
|
|
|
/sbin/ldconfig -m $(PREFIX)/lib
|
1995-04-15 05:44:50 +00:00
|
|
|
|
1994-10-06 01:29:35 +00:00
|
|
|
.include <bsd.port.mk>
|