From owner-freebsd-ports Wed Jul 3 9:40:25 2002 Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4AA1B37B401 for ; Wed, 3 Jul 2002 09:40:07 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6A4543E58 for ; Wed, 3 Jul 2002 09:40:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g63Ge5JU016135 for ; Wed, 3 Jul 2002 09:40:05 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g63Ge5Mm016133; Wed, 3 Jul 2002 09:40:05 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 41EE737B400 for ; Wed, 3 Jul 2002 09:33:33 -0700 (PDT) Received: from tl.kom.tuwien.ac.at (tl.kom.tuwien.ac.at [128.130.34.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92D2E43E09 for ; Wed, 3 Jul 2002 09:33:32 -0700 (PDT) (envelope-from tilman@tl.kom.tuwien.ac.at) Received: from tl.kom.tuwien.ac.at (localhost [127.0.0.1]) by tl.kom.tuwien.ac.at (8.12.2/8.12.2) with ESMTP id g63Gdt9q021656; Wed, 3 Jul 2002 18:39:56 +0200 (CEST) (envelope-from tilman@tl.kom.tuwien.ac.at) Received: (from tilman@localhost) by tl.kom.tuwien.ac.at (8.12.2/8.12.2/Submit) id g63GdtVc021655; Wed, 3 Jul 2002 18:39:55 +0200 (CEST) Message-Id: <200207031639.g63GdtVc021655@tl.kom.tuwien.ac.at> Date: Wed, 3 Jul 2002 18:39:55 +0200 (CEST) From: Tilman Linneweh Reply-To: Tilman Linneweh To: FreeBSD-gnats-submit@FreeBSD.org Cc: tilman@arved.de X-Send-Pr-Version: 3.113 Subject: ports/40153: [Maintainer Update] irc/bitchx Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 40153 >Category: ports >Synopsis: [Maintainer Update] irc/bitchx >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Jul 03 09:40:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Tilman Linneweh >Release: FreeBSD 4.6-PRERELEASE i386 >Organization: Vienna University of Technology >Environment: System: FreeBSD tl.kom.tuwien.ac.at 4.6-PRERELEASE FreeBSD 4.6-PRERELEASE #1: Fri May 3 16:38:54 CEST 2002 tilman@tl.kom.tuwien.ac.at:/usr/obj/usr/src/sys/MYKERNEL i386 >Description: - Added note about /detach not working if compiled with IPv6 support. (Noticed by: Erwin Lansing ) - Added WITH_XMMS knob - Made list of build Plugins static to keep plist correct. - Bumped Portrevision >How-To-Repeat: >Fix: #cvs diff -u . cvs diff: Diffing . Index: Makefile =================================================================== RCS file: /home/ncvs/ports/irc/bitchx/Makefile,v retrieving revision 1.41 diff -u -r1.41 Makefile --- Makefile 8 Jun 2002 19:41:07 -0000 1.41 +++ Makefile 3 Jul 2002 16:37:31 -0000 @@ -7,6 +7,7 @@ PORTNAME= BitchX PORTVERSION= 1.0c19 +PORTREVISION= 1 CATEGORIES+= irc gnome MASTER_SITES= ftp://ftp.bitchx.com/pub/BitchX/source/ \ ftp://ftp.bitchx.org/pub/BitchX/source/ \ @@ -23,6 +24,9 @@ MAINTAINER= freebsdports@arved.de BUILD_DEPENDS= autoconf:${PORTSDIR}/devel/autoconf +.if defined(WITH_XMMS) +LIB_DEPENDS+= xmms.3:${PORTSDIR}/audio/xmms +.endif WRKSRC= ${WRKDIR}/BitchX USE_AUTOCONF= yes @@ -69,12 +73,24 @@ CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" .endif .if defined(WITH_PLUGINS) -CONFIGURE_ARGS+=--with-plugins +PLUGINS= abot,acro,aim,arcfour,autocycle,blowfish,cavlink,encrypt,fserv,hint,identd,nap,pkga,possum,qbx,qmail,scan,wavplay PLIST_SUB+= PLUGINS:="" .else CONFIGURE_ARGS+=--without-plugins PLIST_SUB+= PLUGINS:="@comment " .endif +.if defined(WITH_XMMS) +PLUGINS= xmms +PLIST_SUB+= XMMS:="" +.else +PLIST_SUB+= XMMS:="@comment " +.endif +.if (defined(WITH_XMMS) && defined(WITH_PLUGINS)) +PLUGINS= abot,acro,aim,arcfour,autocycle,blowfish,cavlink,encrypt,fserv,hint,identd,nap,pkga,possum,qbx,qmail,scan,wavplay,xmms +.endif +.if (defined(WITH_PLUGINS) || defined(WITH_XMMS)) +CONFIGURE_ARGS+=--with-plugins=${PLUGINS} +.endif pre-patch: .if defined(WITH_LATIN) @@ -85,8 +101,11 @@ pre-extract: @${ECHO_CMD} "Available switches:" @${ECHO_CMD} "-------------------" +.if !defined (WITH_XMMS) + @${ECHO_CMD} "WITH_XMMS - Building BitchX with XMMS-Plugin" +.endif .if !defined(WITH_PLUGINS) - @${ECHO_CMD} "WITH_PLUGINS - Build the plugins" + @${ECHO_CMD} "WITH_PLUGINS - Building BitchX with some other plugins" .endif .if !defined(WITH_LATIN) @${ECHO_CMD} "WITH_LATIN - Recommended if you are using an ISO-8859-1 display" @@ -99,6 +118,7 @@ .endif .if !defined(WITH_IPV6) @${ECHO_CMD} "WITH_IPV6 - Build BitchX with IPV6 support" + @${ECHO_CMD} " (Please Note: /detach is not working with IPv6)" .endif .if !defined(WITH_GNOME) @${ECHO_CMD} "WITH_GNOME - Build BitchX with Gtk-Frontend" Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/irc/bitchx/pkg-plist,v retrieving revision 1.11 diff -u -r1.11 pkg-plist --- pkg-plist 8 Jun 2002 19:41:07 -0000 1.11 +++ pkg-plist 3 Jul 2002 15:43:01 -0000 @@ -935,6 +935,7 @@ %%PLUGINS:%%share/bx/plugins/autocycle.so %%PLUGINS:%%share/bx/plugins/cavlink.so %%PLUGINS:%%share/bx/plugins/identd.so +%%XMMS:%%share/bx/plugins/xmms.so share/bx/script/actplug.gmz share/bx/script/bxglobal share/bx/script/bxtcl.tcl cvs diff: Diffing files >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message