From owner-freebsd-ports@FreeBSD.ORG Wed Jun 22 09:25:19 2011 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 17F801065737 for ; Wed, 22 Jun 2011 09:25:19 +0000 (UTC) (envelope-from rodrigo@bebik.net) Received: from smtp3-g21.free.fr (unknown [IPv6:2a01:e0c:1:1599::12]) by mx1.freebsd.org (Postfix) with ESMTP id 8595E8FC21 for ; Wed, 22 Jun 2011 09:25:16 +0000 (UTC) Received: from hodja.bebik.net (unknown [82.227.164.69]) by smtp3-g21.free.fr (Postfix) with ESMTP id AAC1AA62BD for ; Wed, 22 Jun 2011 11:25:11 +0200 (CEST) Received: by hodja.bebik.net (Postfix, from userid 1001) id 92D3028485; Wed, 22 Jun 2011 11:24:55 +0200 (CEST) Date: Wed, 22 Jun 2011 11:24:55 +0200 From: "Rodrigo OSORIO (ros)" To: freebsd-ports@freebsd.org Message-ID: <20110622092455.GA56102@hodja.bebik.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="EVF5PPMfhYS0aIcm" Content-Disposition: inline User-Agent: Mutt/1.4.2.2i Subject: Re: FreeBSD Port games/hlstats X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Jun 2011 09:25:19 -0000 --EVF5PPMfhYS0aIcm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, You can found here a quick patch to update hlstat to the latest version. Regards Rodrigo On 22/06/11 09:08 +0200, Banana wrote: > On 15.06.11 17:17, wen heping wrote: > >2011/6/15 Banana: > >>Hello, > >> > >>i'm the current developer of HLStats (http://www.hlstats-community.org) > >>and > >>I would offer my help about the hlstats port. > > > >Currently games/hlstats is unmaintained and mark BROKEN , if it remain > >for a long time , it should be removed from FreeBSD portstree. Would > >you maintain it and unbreak it ? > > > > > >> > >>If somebody could tell me what to do, or where I can find more information > >>about managing a port I would do it. > > > >Here is the first step: > >http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/ > > > >wen > > well, I've copied the ports dir and modified the files. Ran portlint and > it says "looks fine" > > Gonna try the installation next. > > What needs to be done, or what are the next steps ? > Where should I send the diff patch or do I upload the changed files > somewhere ? > > I've a long free weekend ahead and I'm not sure if I'm online, but I > will work further with this port and I'm willing to take the mantainer > part for the hlstats port. > > Thx, > Banana > > > > > > >> > >>Regards, > >>banana > >>_______________________________________________ > >>freebsd-ports@freebsd.org mailing list > >>http://lists.freebsd.org/mailman/listinfo/freebsd-ports > >>To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > >> > > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" ----- End forwarded message ----- --EVF5PPMfhYS0aIcm Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="hlstats.patch" --- Makefile.old 2011-06-22 07:39:31.000000000 +0000 +++ Makefile 2011-06-22 07:54:04.000000000 +0000 @@ -6,17 +6,16 @@ # PORTNAME= hlstats -PORTVERSION= 1.50 +PORTVERSION= 1.62 CATEGORIES= games www -MASTER_SITES= http://www.hlstats-community.org/files/42/ +MASTER_SITES= http://www.hlstats-community.org/wordpulse/site/hlscom/upload/Multimedia/download/$(PORTVERSION)/ +DISTNAME= HLStats-$(PORTVERSION) MAINTAINER= ports@FreeBSD.org COMMENT= A real-time stats parser for Half Life & its mods RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql -BROKEN= checksum mismatch - WRKSRC= ${WRKDIR}/${PORTNAME} NO_BUILD= yes USE_PHP= yes @@ -24,6 +23,8 @@ HLSTATS?= www/${PORTNAME} PLIST_SUB+= HLSTATS=${HLSTATS} +LICENSE= CDDL + do-install: @ ${MKDIR} ${PREFIX}/${HLSTATS} @ ${CP} -R ${WRKSRC}/* ${PREFIX}/${HLSTATS} --EVF5PPMfhYS0aIcm--