From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 27 20:50:02 2008 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2657D106566C for ; Wed, 27 Feb 2008 20:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0E5768FC2D for ; Wed, 27 Feb 2008 20:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m1RKo1mx053299 for ; Wed, 27 Feb 2008 20:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m1RKo1Sg053298; Wed, 27 Feb 2008 20:50:01 GMT (envelope-from gnats) Resent-Date: Wed, 27 Feb 2008 20:50:01 GMT Resent-Message-Id: <200802272050.m1RKo1Sg053298@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, Dmitry Marakasov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 540D31065672 for ; Wed, 27 Feb 2008 20:49:01 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from cp65.agava.net (cp65.agava.net [89.108.66.215]) by mx1.freebsd.org (Postfix) with ESMTP id 14F108FC21 for ; Wed, 27 Feb 2008 20:49:01 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from [213.148.20.85] (helo=hive.panopticon) by cp65.agava.net with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.63 (FreeBSD)) (envelope-from ) id 1JUTGP-0005ud-0d for FreeBSD-gnats-submit@freebsd.org; Wed, 27 Feb 2008 23:52:29 +0300 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id D061F7583 for ; Wed, 27 Feb 2008 23:48:30 +0300 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id 9E21717023; Wed, 27 Feb 2008 23:48:49 +0300 (MSK) Message-Id: <20080227204849.9E21717023@hades.panopticon> Date: Wed, 27 Feb 2008 23:48:49 +0300 (MSK) From: Dmitry Marakasov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/121157: [MAINTAINER] games/blobandconquer: update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dmitry Marakasov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 20:50:02 -0000 >Number: 121157 >Category: ports >Synopsis: [MAINTAINER] games/blobandconquer: update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Feb 27 20:50:01 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Dmitry Marakasov >Release: FreeBSD 7.0-RC1 i386 >Organization: >Environment: System: FreeBSD hades.panopticon 7.0-RC1 FreeBSD 7.0-RC1 #0: Sat Jan 5 03:26:52 MSK 2008 root@hades.panopticon:/usr/obj/usr/src/sys/HADES i386 >Description: First, original http://www.parallelrealities.co.uk/download.php&... url didn't work (proj=blobAndConquer param was required). But as it's mirrored by Gentoo, add MASTER_SITE_GENTOO to MASTER_SITES, remove original url and hacks needed to fetch it from there. Leave original url as a comment for reference purposes. >How-To-Repeat: >Fix: --- blobandconquer.diff begins here --- diff -ruN blobandconquer.orig/Makefile blobandconquer/Makefile --- blobandconquer.orig/Makefile 2008-02-27 23:39:11.000000000 +0300 +++ blobandconquer/Makefile 2008-02-27 23:42:58.000000000 +0300 @@ -9,23 +9,21 @@ DISTVERSION= 0.91-1 PORTREVISION= 1 CATEGORIES= games +# original url: http://www.parallelrealities.co.uk/download.php?proj=blobAndConquer&file=${DISTNAME}&type=zip MASTER_SITES= http://www.amdmi3.ru/distfiles/ \ - http://www.parallelrealities.co.uk/download.php?type=zip&file= + ${MASTER_SITE_GENTOO} +MASTER_SITE_SUBDIR= distfiles DISTNAME= blobAndConquer-${DISTVERSION} MAINTAINER= amdmi3@amdmi3.ru COMMENT= A somewhat violent 3D action game -FETCH_BEFORE_ARGS+= -o ${DISTNAME}${EXTRACT_SUFX} - USE_SDL= sdl mixer image ttf USE_GL= yes USE_GMAKE= yes USE_DOS2UNIX= makefile src/headers.h src/main.cpp USE_GETTEXT= yes -FETCH_CMD= /usr/bin/fetch - WRKSRC= ${WRKDIR}/blobAndConquer-${DISTVERSION:C/^([0-9]\.[0-9][0-9]).*/\1/} PORTDOCS= * --- blobandconquer.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: