Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 16 Jan 1999 10:40:02 -0800 (PST)
From:      dmlb@ragnet.demon.co.uk
To:        freebsd-ports@FreeBSD.ORG
Subject:   RE: ports/9454: New port iwidgets-3.0.1
Message-ID:  <199901161840.KAA26127@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/9454; it has been noted by GNATS.

From: dmlb@ragnet.demon.co.uk
To: FreeBSD-gnats-submit@freebsd.org
Cc: dmlb@ragnet.demon.co.uk
Subject: RE: ports/9454: New port iwidgets-3.0.1
Date: Sat, 16 Jan 1999 17:50:30 +0000

 Iwidgets bogusly used the source directory for itcl to get an
 installation tool.  With the replacement patch/patch-aa file below it
 will now use it's own copy of the same tool.
 
 --- Makefile.in~	Wed Aug 12 11:02:41 1998
 +++ Makefile.in	Sat Jan 16 17:37:42 1999
 @@ -49,7 +49,7 @@
  INCLUDE_INSTALL_DIR = $(INSTALL_ROOT)$(prefix)/include
  
  # Top-level directory in which to install manual entries:
 -MAN_INSTALL_DIR = $(INSTALL_ROOT)$(prefix)/man
 +MAN_INSTALL_DIR = $(INSTALL_ROOT)$(prefix)/share/iwidgets$(VERSION)/man
  
  # Directory in which to install manual entry for itclsh:
  MAN1_INSTALL_DIR = $(MAN_INSTALL_DIR)/man1
 @@ -102,10 +102,10 @@
  # modify any of this stuff by hand.
  #----------------------------------------------------------------
  
 -INSTALL =		@INSTALL@
 +INSTALL =		install -c
  INSTALL_PROGRAM =	$(INSTALL)
  INSTALL_DATA =		$(INSTALL) -m 644
 -MKINSTALLDIRS =		$(ITCL_SRC_DIR)/../config/mkinstalldirs
 +MKINSTALLDIRS =		../../config/mkinstalldirs
  RANLIB =		@RANLIB@
  LN_S =			ln -s
  TOP_DIR =		@IWIDGETS_SRC_DIR@
 @@ -148,8 +148,6 @@
  
  install-libraries:
  	@$(MKINSTALLDIRS) $(SCRIPT_INSTALL_DIR) $(LIB_INSTALL_DIR)
 -	@rm -f $(LIB_INSTALL_DIR)/iwidgets
 -	$(LN_S) iwidgets$(VERSION) $(LIB_INSTALL_DIR)/iwidgets
  	@$(MKINSTALLDIRS) $(SCRIPT_INSTALL_DIR)/scripts
  	@for i in $(GENERIC_DIR)/*.itk $(GENERIC_DIR)/*.itcl $(GENERIC_DIR)/tclIndex $(GENERIC_DIR)/*.gif ; \
  	    do \
 @@ -194,10 +192,10 @@
  	@cd $(TOP_DIR)/doc; for i in *.n; \
  	    do \
  	    echo "Installing doc/$$i"; \
 -	    rm -f $(MANN_INSTALL_DIR)/$$i; \
 +	    rm -f $(MANN_INSTALL_DIR)/$$i $(MANN_INSTALL_DIR)/$$i.gz; \
  	    sed -e '/man\.macros/r man.macros' -e '/man\.macros/d' \
 -	        $$i > $(MANN_INSTALL_DIR)/$$i; \
 -	    chmod 444 $(MANN_INSTALL_DIR)/$$i; \
 +	        $$i | gzip -c > $(MANN_INSTALL_DIR)/$$i.gz; \
 +	    chmod 444 $(MANN_INSTALL_DIR)/$$i.gz; \
  	    done;
  
  install-html:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199901161840.KAA26127>