From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 7 20:10:10 2010 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 EAF05106566B for ; Tue, 7 Dec 2010 20:10:09 +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 A9B668FC1D for ; Tue, 7 Dec 2010 20:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id oB7KA9c3059934 for ; Tue, 7 Dec 2010 20:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oB7KA9vI059933; Tue, 7 Dec 2010 20:10:09 GMT (envelope-from gnats) Resent-Date: Tue, 7 Dec 2010 20:10:09 GMT Resent-Message-Id: <201012072010.oB7KA9vI059933@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, Tom Judge Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 493AA106566B; Tue, 7 Dec 2010 20:06:40 +0000 (UTC) (envelope-from tom@tomjudge.com) Received: from tomjudge.vm.bytemark.co.uk (tomjudge.vm.bytemark.co.uk [80.68.91.100]) by mx1.freebsd.org (Postfix) with ESMTP id 0CCEF8FC1A; Tue, 7 Dec 2010 20:06:39 +0000 (UTC) Received: from localhost (localhost.localdomain [127.0.0.1]) by tomjudge.vm.bytemark.co.uk (Postfix) with ESMTP id C5CE448C1D; Tue, 7 Dec 2010 20:06:38 +0000 (GMT) Received: from tomjudge.vm.bytemark.co.uk ([127.0.0.1]) by localhost (tomjudge.vm.bytemark.co.uk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id B6dVkC4oJuNk; Tue, 7 Dec 2010 20:06:36 +0000 (GMT) Received: from tinderbox.home.tomjudge.com (unknown [192.168.200.5]) by tomjudge.vm.bytemark.co.uk (Postfix) with SMTP id 1C66448C10; Tue, 7 Dec 2010 20:06:34 +0000 (GMT) Received: by tinderbox.home.tomjudge.com (sSMTP sendmail emulation); Tue, 07 Dec 2010 20:08:39 +0000 Message-Id: <20101207200635.1C66448C10@tomjudge.vm.bytemark.co.uk> Date: Tue, 07 Dec 2010 20:08:39 +0000 From: "Tom Judge" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: jpaetzel@FreeBSD.org Subject: ports/152901: [patch] databases/pecl-sqlite Cleanup/Fixes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Tom Judge List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Dec 2010 20:10:10 -0000 >Number: 152901 >Category: ports >Synopsis: [patch] databases/pecl-sqlite Cleanup/Fixes >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: Tue Dec 07 20:10:08 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Tom Judge >Release: FreeBSD 8.1-STABLE amd64 >Organization: >Environment: System: FreeBSD tinderbox.home.tomjudge.com 8.1-STABLE FreeBSD 8.1-STABLE #0 r213720: Tue Oct 12 14:02:02 UTC 2010 tj@tinderbox.home.tomjudge.com:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The attached patch fixes the following issues with databases/pecl-sqlite which is the api for sqlite in php 4: * The port did not define DEFAULT_PHP_VER to 4 so pakcage building is broken. * The port did not have the correct IGNORE set for the new dual 5.3 and 5.2 ports. Remove the .if block and add an IGNORE_WITH_PHP. * Update the comment to reflect the fact that this port is for php 4 only. * Remove the MD5 line from distinfo. >How-To-Repeat: >Fix: --- databases-pecl-sqlite.txt begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/databases/pecl-sqlite/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- Makefile 16 Sep 2005 17:58:26 -0000 1.4 +++ Makefile 7 Dec 2010 20:03:38 -0000 @@ -15,7 +15,7 @@ DIST_SUBDIR= PECL MAINTAINER= mnag@FreeBSD.org -COMMENT= PECL classes to access sqlite databases +COMMENT= PECL classes to access sqlite databases in PHP 4 WRKSRC= ${WRKDIR}/SQLite-${PORTVERSION} PKGMESSAGE= ${WRKDIR}/pkg-message @@ -24,6 +24,8 @@ USE_PHPIZE= yes USE_PHPEXT= yes PHP_MODNAME= sqlite +DEFAULT_PHP_VER=4 +IGNORE_WITH_PHP=5 52 CONFIGURE_ARGS= --with-sqlite @@ -32,10 +34,6 @@ .include -.if ${PHP_VER} == 5 -IGNORE= Please use databases/php${PHP_VER}-sqlite -.endif - .if !defined(NOPORTDOCS) PORTDOCS= * .endif Index: distinfo =================================================================== RCS file: /home/ncvs/ports/databases/pecl-sqlite/distinfo,v retrieving revision 1.3 diff -u -r1.3 distinfo --- distinfo 9 Nov 2005 02:32:44 -0000 1.3 +++ distinfo 7 Dec 2010 16:58:45 -0000 @@ -1,3 +1,2 @@ -MD5 (PECL/SQLite-1.0.3.tgz) = 3741cb211f9eb3f77de086e96d232e95 SHA256 (PECL/SQLite-1.0.3.tgz) = 19edf52557c75a764e021d60414fe4ce347cbdab55377d4aafbecb30785d79a5 SIZE (PECL/SQLite-1.0.3.tgz) = 371189 --- databases-pecl-sqlite.txt ends here --- >Release-Note: >Audit-Trail: >Unformatted: