Bug 185248 - multimedia/transcode fails to find include file
Summary: multimedia/transcode fails to find include file
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Thomas Zander
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-12-28 20:00 UTC by rkoberman
Modified: 2014-01-18 20:20 UTC (History)
0 users

See Also:


Attachments
file.diff (297 bytes, patch)
2013-12-28 20:00 UTC, rkoberman
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description rkoberman 2013-12-28 20:00:00 UTC
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
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-12-28 20:00:06 UTC
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
Comment 2 Edwin Groothuis freebsd_committer freebsd_triage 2013-12-28 20:00:07 UTC
State Changed
From-To: open->feedback

Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Comment 3 Naram Qashat 2013-12-30 01:27:45 UTC
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
>
Comment 4 Mark Linimon freebsd_committer freebsd_triage 2013-12-30 03:46:56 UTC
State Changed
From-To: feedback->open

Maintainer approved.
Comment 5 Thomas Zander freebsd_committer freebsd_triage 2014-01-15 07:22:19 UTC
Responsible Changed
From-To: freebsd-ports-bugs->riggs

I'll take it.
Comment 6 dfilter service freebsd_committer freebsd_triage 2014-01-16 20:03:40 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"
Comment 7 Thomas Zander freebsd_committer freebsd_triage 2014-01-16 20:17:56 UTC
State Changed
From-To: open->closed

Committed. Thanks!
Comment 8 dfilter service freebsd_committer freebsd_triage 2014-01-18 20:11:08 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"