From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 21 18:20:14 2005 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org 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 AE2B116A429 for ; Wed, 21 Sep 2005 18:20:14 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87F4343D6A for ; Wed, 21 Sep 2005 18:20:04 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j8LIK4Ca055580 for ; Wed, 21 Sep 2005 18:20:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j8LIK4a7055579; Wed, 21 Sep 2005 18:20:04 GMT (envelope-from gnats) Resent-Date: Wed, 21 Sep 2005 18:20:04 GMT Resent-Message-Id: <200509211820.j8LIK4a7055579@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, Igor Pokrovsky Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3421E16A41F for ; Wed, 21 Sep 2005 18:10:45 +0000 (GMT) (envelope-from igor@doom.homeunix.org) Received: from mail.ecolines.ru (ns.ecolines.ru [81.3.181.213]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF28043D75 for ; Wed, 21 Sep 2005 18:10:33 +0000 (GMT) (envelope-from igor@doom.homeunix.org) Received: (qmail 20629 invoked from network); 21 Sep 2005 18:12:49 -0000 Received: from dialup84120-243.ip.peterstar.net (HELO doom.homeunix.org) (ip@84.204.120.243) by mail.ecolines.ru with ESMTPA; 21 Sep 2005 18:12:49 -0000 Received: from doom.homeunix.org (localhost [127.0.0.1]) by doom.homeunix.org (8.13.4/8.13.4) with ESMTP id j8LIA08d015588 for ; Wed, 21 Sep 2005 22:10:00 +0400 (MSD) (envelope-from igor@doom.homeunix.org) Received: (from igor@localhost) by doom.homeunix.org (8.13.4/8.13.4/Submit) id j8LI9xiU015587; Wed, 21 Sep 2005 22:09:59 +0400 (MSD) (envelope-from igor) Message-Id: <200509211809.j8LI9xiU015587@doom.homeunix.org> Date: Wed, 21 Sep 2005 22:09:59 +0400 (MSD) From: Igor Pokrovsky To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/86422: Update port: graphics/pixie 1.4.5 -> 1.4.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Igor Pokrovsky List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Sep 2005 18:20:14 -0000 >Number: 86422 >Category: ports >Synopsis: Update port: graphics/pixie 1.4.5 -> 1.4.6 >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 Sep 21 18:20:04 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Igor Pokrovsky >Release: FreeBSD 4.11-STABLE i386 >Organization: >Environment: System: FreeBSD doom.homeunix.org 4.11-STABLE FreeBSD 4.11-STABLE #0: Wed Sep 7 09:26:18 MSD 2005 root@doom.homeunix.org:/usr/obj/usr/src/sys/KERNEL-p3 i386 >Description: Update to 1.4.6. >How-To-Repeat: >Fix: --- pixie.diff begins here --- diff -ru /usr/ports/graphics/pixie/Makefile pixie/Makefile --- /usr/ports/graphics/pixie/Makefile Mon Sep 5 21:53:07 2005 +++ pixie/Makefile Wed Sep 21 21:47:10 2005 @@ -6,7 +6,7 @@ # PORTNAME= pixie -PORTVERSION= 1.4.5 +PORTVERSION= 1.4.6 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -47,8 +47,8 @@ .endif post-patch: - @${REINPLACE_CMD} -i "" -e 's|malloc\.h|stdlib\.h|g' \ - `${FIND} -E ${WRKSRC} -iregex '.*\.(cpp|h)'` + @${FIND} -X ${WRKSRC} -name '*.cpp' -or -name '*.h' | \ + ${XARGS} ${REINPLACE_CMD} -i '' -e 's|malloc\.h|stdlib\.h|g' pre-configure: @(cd ${WRKSRC} && ${ACLOCAL} && \ @@ -78,12 +78,8 @@ .endfor .for i in ${PIXIE_SHLIBS} - ${INSTALL_DATA} ${WRKSRC}/src/${i}/.libs/${i}.a \ + ${INSTALL_PROGRAM} ${WRKSRC}/src/${i}/.libs/${i}.so \ ${PREFIX}/lib/${PORTNAME} - ${INSTALL_PROGRAM} ${WRKSRC}/src/${i}/.libs/${i}.so.0 \ - ${PREFIX}/lib/${PORTNAME} - ${LN} -sf ${PREFIX}/lib/${PORTNAME}/${i}.so.0 \ - ${PREFIX}/lib/${PORTNAME}/${i}.so .endfor # includes diff -ru /usr/ports/graphics/pixie/distinfo pixie/distinfo --- /usr/ports/graphics/pixie/distinfo Mon Sep 5 21:53:07 2005 +++ pixie/distinfo Wed Sep 21 21:15:46 2005 @@ -1,2 +1,2 @@ -MD5 (Pixie-src-1.4.5.tgz) = 51378b014fea28b2efa239aa4b74bda9 -SIZE (Pixie-src-1.4.5.tgz) = 5424713 +MD5 (Pixie-src-1.4.6.tgz) = 72bb512a340015808e0ac162ed29793e +SIZE (Pixie-src-1.4.6.tgz) = 5421306 diff -ru /usr/ports/graphics/pixie/pkg-plist pixie/pkg-plist --- /usr/ports/graphics/pixie/pkg-plist Thu Oct 28 22:24:08 2004 +++ pixie/pkg-plist Wed Sep 21 21:48:05 2005 @@ -10,21 +10,15 @@ include/pixie/ri.h include/pixie/sdr.h include/pixie/shadeop.h -lib/pixie/file.a lib/pixie/file.so -lib/pixie/file.so.0 -lib/pixie/framebuffer.a lib/pixie/framebuffer.so -lib/pixie/framebuffer.so.0 lib/pixie/libri.a lib/pixie/libri.so lib/pixie/libri.so.0 lib/pixie/libsdr.a lib/pixie/libsdr.so lib/pixie/libsdr.so.0 -lib/pixie/rgbe.a lib/pixie/rgbe.so -lib/pixie/rgbe.so.0 %%PORTDOCS%%%%DOCSDIR%%/attributes.htm %%PORTDOCS%%%%DOCSDIR%%/autoraytracing.htm %%PORTDOCS%%%%DOCSDIR%%/display.htm --- pixie.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: