From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 30 20:20:30 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B8C816A4D0 for ; Thu, 30 Sep 2004 20:20:30 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E28943D2F for ; Thu, 30 Sep 2004 20:20:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i8UKKU0x011870 for ; Thu, 30 Sep 2004 20:20:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i8UKKT8T011851; Thu, 30 Sep 2004 20:20:29 GMT (envelope-from gnats) Resent-Date: Thu, 30 Sep 2004 20:20:29 GMT Resent-Message-Id: <200409302020.i8UKKT8T011851@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Yen-Ming Lee Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C558016A4CE; Thu, 30 Sep 2004 20:10:50 +0000 (GMT) Received: from utopia.leeym.com (utopia.leeym.com [211.21.137.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E02943D45; Thu, 30 Sep 2004 20:10:50 +0000 (GMT) (envelope-from leeym@utopia.leeym.com) Received: from localhost (localhost [127.0.0.1]) by utopia.leeym.com (Postfix) with ESMTP id 38B433E9C16; Fri, 1 Oct 2004 04:10:49 +0800 (CST) Received: from utopia.leeym.com ([127.0.0.1]) by localhost (utopia.leeym.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 73242-07; Fri, 1 Oct 2004 04:10:27 +0800 (CST) Received: by utopia.leeym.com (Postfix, from userid 1000) id 266033E9C1E; Fri, 1 Oct 2004 04:10:25 +0800 (CST) Message-Id: <20040930201025.266033E9C1E@utopia.leeym.com> Date: Fri, 1 Oct 2004 04:10:25 +0800 (CST) From: Yen-Ming Lee To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: ports@FreeBSD.org Subject: ports/72214: [PATCH] chinese/zh-BBMan: add USE_GCC=3.3 and unbreak X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Sep 2004 20:20:30 -0000 >Number: 72214 >Category: ports >Synopsis: [PATCH] chinese/zh-BBMan: add USE_GCC=3.3 and unbreak >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Sep 30 20:20:29 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 5.3-BETA4 i386 >Organization: FreeBSD Taiwan >Environment: System: FreeBSD utopia.leeym.com 5.3-BETA4 FreeBSD 5.3-BETA4 #7: Mon Sep 13 05:12:30 CST 2004 >Description: - add USE_GCC=3.3 and unbreak - respect CXX and CFLAGS - replace pkg-plist with PLIST_FILES - update WWW in pkg-descr - cosmetic fixes Removed file(s): - pkg-plist Port maintainer (ports@freebsd.org) is cc'd. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- zh-BBMan-1.7.7.5.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/chinese/BBMan/Makefile,v retrieving revision 1.2 diff -u -u -r1.2 Makefile --- Makefile 30 Sep 2004 05:52:30 -0000 1.2 +++ Makefile 30 Sep 2004 20:09:00 -0000 @@ -9,8 +9,8 @@ PORTVERSION= 1.7.7.5 CATEGORIES= chinese net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= bbman -DISTNAME= BBMan-src-v1-7-7-5 +MASTER_SITE_SUBDIR= ${PORTNAME:L} +DISTNAME= ${PORTNAME}-src-v${PORTVERSION:S,.,-,g} EXTRACT_SUFX= .zip MAINTAINER= ports@freebsd.org @@ -19,19 +19,16 @@ LIB_DEPENDS= wx_gtk2-2.4.0:${PORTSDIR}/x11-toolkits/wxgtk2 USE_ZIP= yes -WRKSRC= ${WRKDIR}/BBMan +WRKSRC= ${WRKDIR}/${PORTNAME} USE_X_PREFIX= yes +USE_GCC= 3.3 -.include - -.if ${OSVERSION} >= 502126 -BROKEN= "Does not compile on FreeBSD >= 5.x" -.endif +PLIST_FULES= bin/BBMan do-build: - cd ${WRKSRC} && g++ main.cpp `wxgtk2-2.4-config --libs --cxxflags` -I${LOCALBASE}/include -O2 -o BBMan + cd ${WRKSRC} && ${CXX} main.cpp `wxgtk2-2.4-config --libs --cxxflags` -I${LOCALBASE}/include ${CFLAGS} -o BBMan do-install: ${INSTALL_PROGRAM} ${WRKSRC}/BBMan ${PREFIX}/bin/BBMan -.include +.include Index: pkg-descr =================================================================== RCS file: /home/pcvs/ports/chinese/BBMan/pkg-descr,v retrieving revision 1.1 diff -u -u -r1.1 pkg-descr --- pkg-descr 24 Aug 2004 06:31:11 -0000 1.1 +++ pkg-descr 30 Sep 2004 20:09:00 -0000 @@ -1,3 +1,3 @@ BBMam is a BBS client for X Window System. -WWW: http://nccu.edu.tw/92753008/BBMan/ +WWW: http://bbman.sourceforge.net/ Index: pkg-plist =================================================================== RCS file: pkg-plist diff -N pkg-plist --- pkg-plist 24 Aug 2004 06:31:11 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1 +0,0 @@ -bin/BBMan --- zh-BBMan-1.7.7.5.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: