From kob6558@gmail.com  Sat Dec 28 19:50:54 2013
Return-Path: <kob6558@gmail.com>
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
	(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by hub.freebsd.org (Postfix) with ESMTPS id 39337AF8
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 28 Dec 2013 19:50:54 +0000 (UTC)
Received: from mail-pd0-x231.google.com (mail-pd0-x231.google.com [IPv6:2607:f8b0:400e:c02::231])
	(using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits))
	(No client certificate requested)
	by mx1.freebsd.org (Postfix) with ESMTPS id 0D7851516
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 28 Dec 2013 19:50:54 +0000 (UTC)
Received: by mail-pd0-f177.google.com with SMTP id q10so10003962pdj.22
        for <FreeBSD-gnats-submit@freebsd.org>; Sat, 28 Dec 2013 11:50:53 -0800 (PST)
Received: from rogue.comcast.net (pool-71-102-47-150.plspca.fios.verizon.net. [71.102.47.150])
        by mx.google.com with ESMTPSA id g6sm92482166pat.2.2013.12.28.11.50.52
        for <FreeBSD-gnats-submit@freebsd.org>
        (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);
        Sat, 28 Dec 2013 11:50:53 -0800 (PST)
Received: by rogue.comcast.net (Postfix, from userid 9381)
	id 37DD428430; Sat, 28 Dec 2013 11:50:52 -0800 (PST)
Message-Id: <20131228195052.37DD428430@rogue.comcast.net>
Date: Sat, 28 Dec 2013 11:50:52 -0800 (PST)
From: Kevin Oberman <rkoberman@gmail.com>
Sender: Kevin Oberman <kob6558@gmail.com>
Reply-To: Kevin Oberman <rkoberman@gmail.com>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: multimedia/transcode fails to find include file
X-Send-Pr-Version: 3.114
X-GNATS-Notify: cyberbotx@cyberbotx.com

>Number:         185248
>Category:       ports
>Synopsis:       multimedia/transcode fails to find include file
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    riggs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sat Dec 28 20:00:00 UTC 2013
>Closed-Date:    Thu Jan 16 20:17:56 UTC 2014
>Last-Modified:  Sat Jan 18 20:20:00 UTC 2014
>Originator:     Kevin Oberman
>Release:        FreeBSD 10.0-RC3 amd64
>Organization:
>Environment:
System: FreeBSD rogue.local 10.0-RC3 FreeBSD 10.0-RC3 #0 r259910: Thu Dec 26 20:34:31 PST 2013 root@rogue.local:/usr/obj/usr/src/sys/GENERIC amd64


>Description:
After upgrading to 10-RC3, I atempted to re-build all ports. transcode failed
to build because the file /usr/local/include/freetype/ftglyph.h could not be
found. The code contains #include <freetype/ftglyph.h>, but the file is
actually located in freetype2. No such file exists in the old freetype port.
>How-To-Repeat:
cd /usr/ports/multimedia/transcode && make
>Fix:
--- filter/subtitler/load_font.c.orig	2013-12-28 11:40:29.000000000 -0800
+++ filter/subtitler/load_font.c	2013-12-28 10:44:23.000000000 -0800
@@ -48,7 +48,7 @@
 #include <ft2build.h>
 #include FT_FREETYPE_H
 
-#include <freetype/ftglyph.h>
+#include <freetype2/ftglyph.h>
 
 /**
  * @file bswap.h

	


>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Sat Dec 28 20:00:07 UTC 2013 
State-Changed-Why:  
Awaiting maintainers feedback (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=185248 

From: Edwin Groothuis <edwin@FreeBSD.org>
To: cyberbotx@cyberbotx.com
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/185248: multimedia/transcode fails to find include file
Date: Sat, 28 Dec 2013 20:00:06 UT

 Maintainer of multimedia/transcode,
 
 Please note that PR ports/185248 has just been submitted.
 
 If it contains a patch for an upgrade, an enhancement or a bug fix
 you agree on, reply to this email stating that you approve the patch
 and a committer will take care of it.
 
 The full text of the PR can be found at:
     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/185248
 
 -- 
 Edwin Groothuis via the GNATS Auto Assign Tool
 edwin@FreeBSD.org

From: Naram Qashat <cyberbotx@cyberbotx.com>
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/185248: multimedia/transcode fails to find include file
Date: Sun, 29 Dec 2013 20:27:45 -0500

 I approve of this patch.
 
 Thanks,
 Naram Qashat
 
 On 12/28/13 15:00, Edwin Groothuis wrote:
 > Maintainer of multimedia/transcode,
 >
 > Please note that PR ports/185248 has just been submitted.
 >
 > If it contains a patch for an upgrade, an enhancement or a bug fix
 > you agree on, reply to this email stating that you approve the patch
 > and a committer will take care of it.
 >
 > The full text of the PR can be found at:
 >      http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/185248
 >
State-Changed-From-To: feedback->open 
State-Changed-By: linimon 
State-Changed-When: Mon Dec 30 03:46:56 UTC 2013 
State-Changed-Why:  
Maintainer approved. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=185248 
Responsible-Changed-From-To: freebsd-ports-bugs->riggs 
Responsible-Changed-By: riggs 
Responsible-Changed-When: Wed Jan 15 07:22:19 UTC 2014 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=185248 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/185248: commit references a PR
Date: Thu, 16 Jan 2014 20:03:40 +0000 (UTC)

 Author: riggs
 Date: Thu Jan 16 20:03:32 2014
 New Revision: 339971
 URL: http://svnweb.freebsd.org/changeset/ports/339971
 QAT: https://qat.redports.org/buildarchive/r339971/
 
 Log:
   Fix build problem (subtitler looks for freetype headers in the wrong dir)
   
   PR:		ports/185248
   Submitted by:	Kevin Oberman <rkoberman@gmail.com>
   Approved by:	Naram Qashat <cyberbotx@cyberbotx.com> (maintainer), thierry (mentor)
 
 Added:
   head/multimedia/transcode/files/patch-filter-subtitler-load_font.c   (contents, props changed)
 
 Added: head/multimedia/transcode/files/patch-filter-subtitler-load_font.c
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/multimedia/transcode/files/patch-filter-subtitler-load_font.c	Thu Jan 16 20:03:32 2014	(r339971)
 @@ -0,0 +1,12 @@
 +--- filter/subtitler/load_font.c.orig	2013-12-28 11:40:29.000000000 -0800
 ++++ filter/subtitler/load_font.c	2013-12-28 10:44:23.000000000 -0800
 +@@ -48,7 +48,7 @@
 + #include <ft2build.h>
 + #include FT_FREETYPE_H
 + 
 +-#include <freetype/ftglyph.h>
 ++#include <freetype2/ftglyph.h>
 + 
 + /**
 +  * @file bswap.h
 +
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 
State-Changed-From-To: open->closed 
State-Changed-By: riggs 
State-Changed-When: Thu Jan 16 20:17:56 UTC 2014 
State-Changed-Why:  
Committed. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=185248 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/185248: commit references a PR
Date: Sat, 18 Jan 2014 20:11:08 +0000 (UTC)

 Author: riggs
 Date: Sat Jan 18 20:10:55 2014
 New Revision: 340212
 URL: http://svnweb.freebsd.org/changeset/ports/340212
 QAT: https://qat.redports.org/buildarchive/r340212/
 
 Log:
   MFH: r339971
   
   Fix build problem (subtitler looks for freetype headers in the wrong dir)
   
   PR:		ports/185248
   Submitted by:	Kevin Oberman <rkoberman@gmail.com>
   Approved by:	portmgr (miwi)
 
 Added:
   branches/2014Q1/multimedia/transcode/files/patch-filter-subtitler-load_font.c
      - copied unchanged from r339971, head/multimedia/transcode/files/patch-filter-subtitler-load_font.c
 Modified:
 Directory Properties:
   branches/2014Q1/   (props changed)
 
 Copied: branches/2014Q1/multimedia/transcode/files/patch-filter-subtitler-load_font.c (from r339971, head/multimedia/transcode/files/patch-filter-subtitler-load_font.c)
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ branches/2014Q1/multimedia/transcode/files/patch-filter-subtitler-load_font.c	Sat Jan 18 20:10:55 2014	(r340212, copy of r339971, head/multimedia/transcode/files/patch-filter-subtitler-load_font.c)
 @@ -0,0 +1,12 @@
 +--- filter/subtitler/load_font.c.orig	2013-12-28 11:40:29.000000000 -0800
 ++++ filter/subtitler/load_font.c	2013-12-28 10:44:23.000000000 -0800
 +@@ -48,7 +48,7 @@
 + #include <ft2build.h>
 + #include FT_FREETYPE_H
 + 
 +-#include <freetype/ftglyph.h>
 ++#include <freetype2/ftglyph.h>
 + 
 + /**
 +  * @file bswap.h
 +
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 
>Unformatted:
