Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Mar 1995 12:31:01 -0700
From:      Steve Passe <fbsd@clem.systemsix.com>
To:        hackers@FreeBSD.org
Subject:   Re: Plug-n-Play Internet acccess (was Re: httpd as part of the system.) 
Message-ID:  <199503271931.MAA04126@clem.systemsix.com>
In-Reply-To: Your message of "Mon, 27 Mar 1995 09:41:39 MST." <9503271641.AA02739@cs.weber.edu> 

next in thread | previous in thread | raw e-mail | index | archive | help
Hello,

I tried installing moxftp as mftp (ie, the motif version) using
the ports/net/moxftp files.  the place they looked for the source
file didn't work (I think because it wasn't there, but with my
network connection I wouldn't swear to it).  So I turned archie
loose looking for it, which found nothing newer than 2.2.  So I took
my archive version and used it.  Other than the inability to find
the source, there were 2 files to patch to make things work.

to make the motif version (mftp) you need to patch the top level
makefile:
-------------------------------- cut --------------------------------
*** Makefile.orig       Mon Mar 27 12:17:00 1995
--- Makefile    Sun Mar 26 19:20:57 1995
***************
*** 14,20 ****
  #     athena3d - for athena 3 d version, (you should have installed Xaw3d!!!)
  #     openlook - for open look version - (not tested!!!)
  # If you use athena3d uncomment DEPENDS !!!
! CONFIGURE_ARGS=       athena
  
  #DEPENDS=     ${PORTSDIR}/x11/Xaw3d
  
--- 14,21 ----
  #     athena3d - for athena 3 d version, (you should have installed Xaw3d!!!)
  #     openlook - for open look version - (not tested!!!)
  # If you use athena3d uncomment DEPENDS !!!
! ##CONFIGURE_ARGS=     athena
! CONFIGURE_ARGS=       motif
  
  #DEPENDS=     ${PORTSDIR}/x11/Xaw3d
  
***************
*** 24,28 ****
  
  install:
        @mkdir -p ${PREFIX}/man/man1
!       @install -c -m 0444 ${WRKSRC}/xftp.man ${PREFIX}/man/man1/xftp.1
!       @gzip -9n ${PREFIX}/man/man1/xftp.1
--- 25,29 ----
  
  install:
        @mkdir -p ${PREFIX}/man/man1
!       @install -c -m 0444 ${WRKSRC}/mftp.man ${PREFIX}/man/man1/mftp.1
!       @gzip -9n ${PREFIX}/man/man1/mftp.1
-------------------------------- cut --------------------------------

to use any version under X11R6 you need the following 'patch-ad' in
patches/:
-------------------------------- cut --------------------------------
*** configure.orig      Mon Mar 27 12:14:15 1995
--- configure   Sun Mar 26 20:30:04 1995
***************
*** 590,595 ****
--- 590,603 ----
  # 
  if test -z "$x_includes" && 
     test "x${FOUND_X}" != "xyes" &&
+    test -d /usr/X11R6/include && 
+    test -d /usr/X11R6/lib; then
+     x_includes=/usr/X11R6/include
+     x_libraries=/usr/X11R6/lib
+ fi
+ 
+ if test -z "$x_includes" && 
+    test "x${FOUND_X}" != "xyes" &&
     test -d /usr/local/X11R5/include && 
     test -f /usr/local/X11R5/lib; then
      x_includes=/usr/local/X11R5/include
-------------------------------- cut --------------------------------

The port Makefile listed 'janek', but no email address.  Forgive my
ignorance, what is the formal way of seeing that these patches make
there way into the distribution?

						Steve Passe
						smp@clem.systemsix.com



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