Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 27 Jan 2001 16:10:02 -0800 (PST)
From:      Clive Lin <clive@CirX.ORG>
To:        freebsd-ports@FreeBSD.org
Subject:   Re: ports/24644: update port: irc/bitchx
Message-ID:  <200101280010.f0S0A2100997@freefall.freebsd.org>

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

From: Clive Lin <clive@CirX.ORG>
To: cj@vallcom.net
Cc: FreeBSD-gnats-submit@FreeBSD.ORG
Subject: Re: ports/24644: update port: irc/bitchx
Date: Sun, 28 Jan 2001 08:05:09 +0800

 Hi,
 
 On Thu, Jan 25, 2001 at 10:24:49PM +0100, cj@vallcom.net wrote:
 > 
 > >Number:         24644
 > >Category:       ports
 > >Synopsis:       update port: irc/bitchx
 
 I applied your diff and added other stuffs.. I don't know if you like
 them. They are: 
 
 For some reasons, I jumped into BX's source several days ago.
 I found that 
 
     1) BX only supports esound if it's built with gnome.
 
 And, how about
 
     2) Don't display BX's WITH_(.*) switch which one is already defined ?
 
 Finally,
 
     3) Some cosmetics (whitespacechanges, actually) to satisfy
        portlint -abctN.
 
 Below is the regenerated huge diff:
 
 Index: Makefile
 ===================================================================
 RCS file: /home/ncvs/ports/irc/bitchx/Makefile,v
 retrieving revision 1.27
 diff -u -r1.27 Makefile
 --- Makefile	2000/12/20 13:44:27	1.27
 +++ Makefile	2001/01/27 23:58:13
 @@ -37,11 +37,14 @@
  .else
  CONFIGURE_ARGS+=--without-gtk
  .endif
 -.if defined(HAVE_ESOUND)
 +.if (defined(HAVE_ESOUND) && defined(HAVE_GNOME))
  USE_ESOUND=	yes
  CONFIGURE_ARGS+=--enable-sound
  .endif
 -
 +.if defined(HAVE_IPV6)
 +USE_IPV6=	yes
 +CONFIGURE_ARGS+=--enable-ipv6
 +.endif
  .if defined(WITH_TCL)
  BUILD_DEPENDS+=	${LOCALBASE}/include/tcl8.3/tcl.h:${PORTSDIR}/lang/tcl83
  CONFIGURE_ARGS+=--with-tcl \
 @@ -53,8 +56,8 @@
  .endif
  
  .if defined(WITH_SOCKS5)
 -BUILD_DEPENDS+=		${LOCALBASE}/lib/libsocks5.a${PORTSDIR}/net/socks5
 -CONFIGURE_ARGS+=--with-socks5=${LOCALBASE}
 +BUILD_DEPENDS+=		${LOCALBASE}/lib/libsocks5.a:${PORTSDIR}/net/socks5
 +CONFIGURE_ARGS+=	--with-socks5=${LOCALBASE}
  CONFIGURE_ENV+=		CPPFLAGS="-I${LOCALBASE}/include"
  .endif
  
 @@ -74,10 +77,21 @@
  pre-extract:
  	@${ECHO} "Available switches:"
  	@${ECHO} "-------------------"
 +.if !defined(WITH_PLUGINS)
  	@${ECHO} "WITH_PLUGINS - Build the plugins"
 +.endif
 +.if !defined(WITH_LATIN)
  	@${ECHO} "WITH_LATIN - Recommended if you are using an ISO-8859-1 display"
 +.endif
 +.if !defined(WITH_TCL)
  	@${ECHO} "WITH_TCL - Build BitchX with TCL scripting"
 +.endif
 +.if !defined(WITH_SOCKS5)
  	@${ECHO} "WITH_SOCKS5 - Build BitchX with SOCKS5 support"
 +.endif
 +.if !defined(WITH_IPV6)
 +	@${ECHO} "WITH_IPV6 - Build BitchX with IPV6 support"
 +.endif
  
  post-install:
  .if !defined(NOPORTDOCS)
 Index: pkg-plist
 ===================================================================
 RCS file: /home/ncvs/ports/irc/bitchx/pkg-plist,v
 retrieving revision 1.7
 diff -u -r1.7 pkg-plist
 --- pkg-plist	2000/10/05 07:22:40	1.7
 +++ pkg-plist	2001/01/27 23:46:11
 @@ -916,20 +916,20 @@
  share/bx/help/functions
  share/bx/help/out
  %%PLUGINS:%%share/bx/plugins/BitchX.hints
 -%%PLUGINS:%%share/bx/plugins/acro.so 
 -%%PLUGINS:%%share/bx/plugins/amp.so 
 -%%PLUGINS:%%share/bx/plugins/autobot.so 
 -%%PLUGINS:%%share/bx/plugins/blowfish.so 
 -%%PLUGINS:%%share/bx/plugins/encrypt.so 
 -%%PLUGINS:%%share/bx/plugins/fserv.so 
 -%%PLUGINS:%%share/bx/plugins/hint.so 
 -%%PLUGINS:%%share/bx/plugins/nap.so 
 -%%PLUGINS:%%share/bx/plugins/pkga.so 
 -%%PLUGINS:%%share/bx/plugins/possum.so 
 -%%PLUGINS:%%share/bx/plugins/qmail.so 
 -%%PLUGINS:%%share/bx/plugins/scan.so 
 -%%PLUGINS:%%share/bx/plugins/wavplay.so 
 -%%PLUGINS:%%share/bx/plugins/qbx.so 
 +%%PLUGINS:%%share/bx/plugins/acro.so
 +%%PLUGINS:%%share/bx/plugins/amp.so
 +%%PLUGINS:%%share/bx/plugins/autobot.so
 +%%PLUGINS:%%share/bx/plugins/blowfish.so
 +%%PLUGINS:%%share/bx/plugins/encrypt.so
 +%%PLUGINS:%%share/bx/plugins/fserv.so
 +%%PLUGINS:%%share/bx/plugins/hint.so
 +%%PLUGINS:%%share/bx/plugins/nap.so
 +%%PLUGINS:%%share/bx/plugins/pkga.so
 +%%PLUGINS:%%share/bx/plugins/possum.so
 +%%PLUGINS:%%share/bx/plugins/qmail.so
 +%%PLUGINS:%%share/bx/plugins/scan.so
 +%%PLUGINS:%%share/bx/plugins/wavplay.so
 +%%PLUGINS:%%share/bx/plugins/qbx.so
  share/bx/script/actplug.gmz
  share/bx/script/bxglobal
  share/bx/script/bxtcl.tcl
 @@ -976,7 +976,7 @@
  @dirrm share/doc/bitchx
  @dirrm share/bx/translation
  @dirrm share/bx/script
 -%%PLUGINS:%%@dirrm share/bx/plugins 
 +%%PLUGINS:%%@dirrm share/bx/plugins
  @dirrm share/bx/help/8_Scripts
  @dirrm share/bx/help/7_Docs
  @dirrm share/bx/help/6_Functions
 -- 
 CirX - This site doesnt' exist.
 9c  k9o h9 s1bg s1f=, 7v  .y xqx a  sj m8r ffg1 vg5 a6 asox tmul h38 =. 
 ant sj m8r ob =? 1fj mwby a1 tao vg5 =. soq df v ' .a. CirX=. 
 


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?200101280010.f0S0A2100997>