From owner-freebsd-bugs@FreeBSD.ORG Mon Jul 16 05:10:03 2007 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 646C216A405 for ; Mon, 16 Jul 2007 05:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 45A7613C461 for ; Mon, 16 Jul 2007 05:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.1/8.14.1) with ESMTP id l6G5A3JN070155 for ; Mon, 16 Jul 2007 05:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.1/8.14.1/Submit) id l6G5A33r070154; Mon, 16 Jul 2007 05:10:03 GMT (envelope-from gnats) Resent-Date: Mon, 16 Jul 2007 05:10:03 GMT Resent-Message-Id: <200707160510.l6G5A33r070154@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, viper Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 40AFE16A403 for ; Mon, 16 Jul 2007 05:05:09 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id D34DD13C491 for ; Mon, 16 Jul 2007 05:05:08 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.1/8.14.1) with ESMTP id l6G558hw091067 for ; Mon, 16 Jul 2007 05:05:08 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.1/8.14.1/Submit) id l6G558M8091065; Mon, 16 Jul 2007 05:05:08 GMT (envelope-from nobody) Message-Id: <200707160505.l6G558M8091065@www.freebsd.org> Date: Mon, 16 Jul 2007 05:05:08 GMT From: viper To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: misc/114613: [UPDATE] openh323. problems with the assembly of some ports X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jul 2007 05:10:03 -0000 >Number: 114613 >Category: misc >Synopsis: [UPDATE] openh323. problems with the assembly of some ports >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Jul 16 05:10:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: viper >Release: 7.0 >Organization: >Environment: FreeBSD DOM.RU 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Wed Jul 4 12:25:24 YEKST 2007 viper@DOM.RU:/usr/obj/usr/src/sys/viper i386 >Description: In some versions of the ports configure looking version.h file in the /usr/local/share/openh323. For example, this makes the new version of asterisk. >How-To-Repeat: >Fix: Apply patch Patch attached with submission follows: diff -ruN openh323.orig/Makefile openh323/Makefile --- openh323.orig/Makefile 2007-02-24 03:51:11.000000000 +0500 +++ openh323/Makefile 2007-07-16 10:16:54.000000000 +0600 @@ -7,7 +7,7 @@ PORTNAME= openh323 PORTVERSION= 1.18.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net MASTER_SITES= http://www.voxgratia.org/releases/ DISTNAME= ${PORTNAME}-v${PORTVERSION:S/./_/g}-src- diff -ruN openh323.orig/files/patch-makefile.in openh323/files/patch-makefile.in --- openh323.orig/files/patch-makefile.in 2006-07-13 06:39:57.000000000 +0600 +++ openh323/files/patch-makefile.in 2007-07-13 16:11:50.000000000 +0600 @@ -1,8 +1,5 @@ - -$FreeBSD: ports/net/openh323/files/patch-makefile.in,v 1.2 2006/07/13 00:39:57 sobomax Exp $ - ---- Makefile.in.orig -+++ Makefile.in +--- Makefile.in.orig 2005-08-05 01:31:59.000000000 +0600 ++++ Makefile.in 2007-07-13 16:11:26.000000000 +0600 @@ -337,22 +337,14 @@ install: mkdir -p $(DESTDIR)$(LIBDIR) @@ -30,3 +27,11 @@ ) ( for dir in $(DESTDIR)$(LIBDIR) \ $(DESTDIR)$(PREFIX)/include/openh323 \ +@@ -362,6 +354,7 @@ + ( for fn in include/*.h ; do \ + $(INSTALL) -m 444 $$fn $(DESTDIR)$(PREFIX)/include/openh323 ; \ + done) ++ $(INSTALL) -m 444 version.h $(DESTDIR)$(PREFIX)/share/openh323 + $(INSTALL) -m 444 openh323u.mak $(DESTDIR)$(PREFIX)/share/openh323 + (cd plugins; $(MAKE) install) + diff -ruN openh323.orig/pkg-plist openh323/pkg-plist --- openh323.orig/pkg-plist 2006-07-13 06:39:57.000000000 +0600 +++ openh323/pkg-plist 2007-07-13 16:32:38.000000000 +0600 @@ -77,6 +77,7 @@ include/openh323/x880.h @dirrm include/openh323 %%DATADIR%%/openh323u.mak +%%DATADIR%%/version.h @dirrmtry %%DATADIR%% lib/pwlib/codecs/audio/g726_audio_pwplugin.so lib/pwlib/codecs/audio/gsm0610_audio_pwplugin.so >Release-Note: >Audit-Trail: >Unformatted: