From owner-svn-ports-head@FreeBSD.ORG Sun Sep 2 10:38:00 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E7186106566B; Sun, 2 Sep 2012 10:38:00 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id D4DFB8FC17; Sun, 2 Sep 2012 10:37:59 +0000 (UTC) Received: by bkcje9 with SMTP id je9so2173238bkc.13 for ; Sun, 02 Sep 2012 03:37:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=B8sPvbgrouSoezRsLtXjLojM5zKTTbElSYzSjqyZ0bM=; b=GADm8VU6Y7wYgUDy1WQdTCoO2ahwmX0F6ZUY0opZE9t1h5RXDrAyiAvv6teDblSRKo q0rK/jIAnxuWhRzwyuXrxICCLqoDaYd5RFZHPlfxJkfJMcsVdHZb5YhmFqQSdcrgf2vh /BFcKat3wniru0dbtNVJxyE7/l/2K+qZKNCNMcp7vxiY4yFOywBhru1RirJxoEOdIQ1c P3xypJDVrHVGH8cQA21EXukKefbVu6H3+inGBO1e11MIvh2zk3KKaPgWkpw0qq0wtnjd OZvHe/0b1tcPs4ITKGcMMem942it6MPvvObHBWRhJ/c/m1xxYDHTHrZJOD+iK63q9rTm FTYg== MIME-Version: 1.0 Received: by 10.204.145.82 with SMTP id c18mr5696447bkv.133.1346582272925; Sun, 02 Sep 2012 03:37:52 -0700 (PDT) Received: by 10.204.10.141 with HTTP; Sun, 2 Sep 2012 03:37:52 -0700 (PDT) Received: by 10.204.10.141 with HTTP; Sun, 2 Sep 2012 03:37:52 -0700 (PDT) In-Reply-To: <201209020515.q825FGK4043447@svn.freebsd.org> References: <201209020515.q825FGK4043447@svn.freebsd.org> Date: Sun, 2 Sep 2012 11:37:52 +0100 Message-ID: From: Chris Rees To: Jose Alonso Cardenas Marquez Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r303530 - in head/graphics/php5-ffmpeg: . files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Sep 2012 10:38:01 -0000 On 2 Sep 2012 06:15, "Jose Alonso Cardenas Marquez" wrote: > > Author: acm > Date: Sun Sep 2 05:15:16 2012 > New Revision: 303530 > URL: http://svn.freebsd.org/changeset/ports/303530 > > Log: > - Fix build on PHP 5.4.x > > PR: 169370 http://www.FreeBSD.org/cgi/query-pr.cgi?pr=169370 > Submitted by: Alexander Moskalenko > > Added: > head/graphics/php5-ffmpeg/files/patch-ffmpeg_movie.c (contents, props changed) > Modified: > head/graphics/php5-ffmpeg/Makefile > > Modified: head/graphics/php5-ffmpeg/Makefile > ============================================================================== > --- head/graphics/php5-ffmpeg/Makefile Sun Sep 2 05:07:01 2012 (r303529) > +++ head/graphics/php5-ffmpeg/Makefile Sun Sep 2 05:15:16 2012 (r303530) > @@ -7,7 +7,7 @@ > > PORTNAME= ffmpeg > PORTVERSION= 0.6.0 > -PORTREVISION= 6 > +PORTREVISION= 7 > CATEGORIES= graphics > MASTER_SITES= SF/${PORTNAME}-php/${PORTNAME}-php/${PORTVERSION} > PKGNAMEPREFIX= php5- > @@ -25,8 +25,7 @@ USE_BZIP2= yes > USE_PHP= yes > USE_PHPIZE= yes > USE_PHPEXT= yes > -DEFAULT_PHP_VER=53 > -IGNORE_WITH_PHP=5 > +DEFAULT_PHP_VER=54 This line broke INDEX. It can be removed; PHP_DEFAULT_VER should not be overridden, and removing it gets 5.4 as intended. Chris