Enclosed is the log output. Let me know if there is anything further I can do.

Thanks,
Greg

Script started on Mon Dec  7 00:16:53 2015
[karma:~] root# fink install ffmpeg
Information about 12973 packages read in 1 seconds.
The following package will be installed or updated:
 ffmpeg
The following 8 additional packages will be installed:
 libavcodec56-2.4-shlibs libavdevice56-2.4-shlibs libavfilter5-2.4-shlibs
 libavformat56-2.4-shlibs libavutil54-2.4-shlibs libpostproc53-2.4-shlibs
 libswresample1-2.4-shlibs libswscale3-2.4-shlibs
Default answer will be chosen in 60 seconds...
Do you want to continue? [Y/n] y
Setting runtime build-lock...
dpkg-deb -b 
/sw/src/fink.build/root-fink-buildlock-libavcodec56-2.4-shlibs-2.8-1 
/sw/src/fink.build
dpkg-deb: building package `fink-buildlock-libavcodec56-2.4-shlibs-2.8-1' in 
`/sw/src/fink.build/fink-buildlock-libavcodec56-2.4-shlibs-2.8-1_2015.12.07-00.17.08_darwin-x86_64.deb'.
Installing build-lock package...
/sw/bin/dpkg-lockwait -i 
/sw/src/fink.build/fink-buildlock-libavcodec56-2.4-shlibs-2.8-1_2015.12.07-00.17.08_darwin-x86_64.deb
Selecting previously deselected package 
fink-buildlock-libavcodec56-2.4-shlibs-2.8-1.
(Reading database ... 164115 files and directories currently installed.)
Unpacking fink-buildlock-libavcodec56-2.4-shlibs-2.8-1 (from 
.../fink-buildlock-libavcodec56-2.4-shlibs-2.8-1_2015.12.07-00.17.08_darwin-x86_64.deb)
 ...
Setting up fink-buildlock-libavcodec56-2.4-shlibs-2.8-1 (2015.12.07-00.17.08) 
...

sudo -u fink-bld [ENV] sh -c /tmp/fink.DLzRF
env LANG=C LC_ALL=C /sw/bin/tar  --no-same-owner --no-same-permissions -xf 
/sw/src/ffmpeg-2.8.tar.bz2
sudo -u fink-bld [ENV] sh -c /tmp/fink.gqs1_
/tmp/fink.KCtNm
#!/bin/sh -ev
        
        ### remove spaces from framework calls to satisfy validator in .pc files
        perl -pi -e 's|-framework AVFoundation|-Wl,-framework,AVFoundation|g; \
        s|-framework CoreFoundation|-Wl,-framework,CoreFoundation|g; \
        s|-framework CoreGraphics|-Wl,-framework,CoreGraphics|g; \
        s|-framework CoreMedia|-Wl,-framework,CoreMedia|g; \
        s|-framework CoreServices|-Wl,-framework,CoreServices|g; \
        s|-framework CoreVideo|-Wl,-framework,CoreVideo|g; \
        s|-framework Foundation|-Wl,-framework,Foundation|g; \
        s|-framework QuartzCore|-Wl,-framework,QuartzCore|g; \
        s|-framework QTKit|-Wl,-framework,QTKit|g; \
        s|-framework 
VideoDecodeAcceleration|-Wl,-framework,VideoDecodeAcceleration|g; \
        s|-framework VideoToolbox|-Wl,-framework,VideoToolbox|g' configure
        ### Don't mix/match c++ libs
        perl -pi -e 's|lgme -lstdc\+\+|lgme |g' configure
sudo -u fink-bld [ENV] sh -c /tmp/fink.rhq2C
/tmp/fink.jIDo7
#!/bin/sh -ev
        . /sw/sbin/fink-buildenv-helper.sh
# Copyright (c) 2015, Hanspeter Niederstrasser
# All rights reserved.
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

# Usage:
# Source this script file within {Patch,Compile,Install,Test}Script in
# your .info file in order to set environment variables calculated for the 
# buildtime system.
#
# These variables can then be used for patch token replacement or in 
# shell conditionals, among other uses, without reinventing the wheel.
# Example 1: Provide the proper SDK location in a patch
#                        Patch any hardcoded SDK locations in the source tree 
and replace
#                               with the string @SDK_PATH@.
#                        In PatchScript, replace the token with the variable 
containing the 
#                               SDK location, and apply the patch:
#                        sed "s|@SDK_PATH@|$SDK_PATH|g" < %{PatchFile} | patch 
-p1
# Example 2: Use in a conditional to determine if a flag is needed
#                        if [ "$OSX_MAJOR_VERSION" >  "10.7" ]; then ...

set +v || :
--------------------
Common System Values
--------------------

  FINK_PREFIX:          /sw
  FINK_ARCH:            x86_64

System Determined Variables:

  DARWIN_MAJOR_VERSION:     11
  DARWIN_MINOR_VERSION:     4
  DARWIN_VERSION:           11.4
  MACOSX_DEPLOYMENT_TARGET: 10.7
  OSX_MAJOR_VERSION:        10.7
  OSX_VERSION:              10.7.5
  SDK_PATH:                 
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk
  SDK_VERSION :             10.7
  X11_BASE_DIR:             /usr/X11
  X11_INCLUDE_DIR:          /usr/X11/include
  X11_LIBRARY_DIR :         /usr/X11/lib
  XCODE_PREFIX:             /Applications/Xcode.app/Contents/Developer
  XCODE_VERSION:            4.6.3

        export CFLAGS="-I/sw/lib/libspeex1/include -I/sw/include 
-I$X11_INCLUDE_DIR"
        export LDFLAGS="-L/sw/lib/libspeex1/lib -L/sw/lib/libopenjpeg -L/sw/lib 
-L$X11_LIBRARY_DIR -lX11 -lXext"
        mkdir finkbuild
        pushd finkbuild
/sw/src/fink.build/libavcodec56-2.4-shlibs-2.8-1/ffmpeg-2.8/finkbuild 
/sw/src/fink.build/libavcodec56-2.4-shlibs-2.8-1/ffmpeg-2.8
                ../configure --prefix=/sw       --prefix=/sw/lib/ffmpeg-2.4 \
        --bindir=/sw/bin \
        --mandir=/sw/share/man \
        --enable-gpl \
        --enable-version3 \
        --disable-static \
        --enable-shared \
        --enable-pthreads \
        --enable-vda \
        --disable-indev=jack \
        --enable-bzlib \
        --enable-fontconfig \
        --enable-frei0r \
        --enable-iconv \
        --enable-libass \
        --enable-libbluray \
        --enable-libbs2b \
        --enable-libcaca \
        --enable-libcelt \
        --enable-libcdio \
        --enable-libfreetype \
        --enable-libfribidi \
        --enable-libgme \
        --enable-libgsm \
        --enable-libmodplug \
        --enable-libmp3lame \
        --enable-libopencore-amrnb \
        --enable-libopencore-amrwb \
        --enable-libopenjpeg \
        --enable-libopus \
        --enable-libquvi \
        --enable-librtmp \
        --enable-libschroedinger \
        --disable-libsmbclient \
        --enable-libspeex \
        --enable-libtheora \
        --enable-libtwolame \
        --enable-libvidstab \
        --enable-libvorbis \
        --enable-libvpx \
        --enable-libwavpack \
        --enable-libwebp \
        --enable-libx264 \
        --enable-libx265 \
        --enable-libxvid \
        --enable-libzmq \
        --enable-libzvbi \
        --enable-x11grab \
        --enable-zlib
ERROR: freetype2 not found

If you think configure made a mistake, make sure you are using the latest
version from Git.  If the latest version fails, report the problem to the
ffmpeg-u...@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
Include the log file "config.log" produced by configure as this will help
solve the problem.
### execution of /tmp/fink.jIDo7 failed, exit code 1
### execution of /tmp/fink.rhq2C failed, exit code 1
Removing runtime build-lock...
Removing build-lock package...
/sw/bin/dpkg-lockwait -r fink-buildlock-libavcodec56-2.4-shlibs-2.8-1
(Reading database ... 164116 files and directories currently installed.)
Removing fink-buildlock-libavcodec56-2.4-shlibs-2.8-1 ...
Failed: phase compiling: libavcodec56-2.4-shlibs-2.8-1 failed

Before reporting any errors, please run "fink selfupdate" and try again.

If you continue to have issues, please check to see if the FAQ on Fink's 
website solves the problem.  If not, ask on one (not both, please) of
these mailing lists:

        The Fink Users List <fink-users@lists.sourceforge.net>
        The Fink Beginners List <fink-beginn...@lists.sourceforge.net>,

with a carbon copy to the maintainer:

        Hanspeter Niederstrasser <nie...@users.sourceforge.net>

Note that this is preferable to emailing just the maintainer directly,
since most fink package maintainers do not have access to all possible
hardware and software configurations.

Please try to include the complete error message in your report.  This
generally consists of a compiler line starting with e.g. "gcc" or "g++"
followed by the actual error output from the compiler.

Also include the following system information:
Package manager version: 0.38.8
Distribution version: selfupdate-cvs Sun Dec  6 22:19:34 2015, 10.7, x86_64
Trees: local/main stable/main unstable/main unstable/crypto
Xcode.app: 4.6.3
Xcode command-line tools: 4.6.0.0.1.1365549073
Max. Fink build jobs:  1

[karma:~] root# fink list freetype[1@-[1@w[1@ [1@1[1@3[1@2[1@ 
Information about 12973 packages read in 1 seconds.
     font-freetype-pm5123       0.05-1               Font-file reader and glyph 
renderer
     font-freetype-pm5124       0.05-1               Font-file reader and glyph 
renderer
     font-freetype-pm5162       0.05-1               Font-file reader and glyph 
renderer
     font-freetype-pm5182       0.05-1               Font-file reader and glyph 
renderer
     freetype                   1.3.1-13             TrueType font rendering 
library, version 1
     freetype-bin               1.3.1-13             TrueType font rendering 
library, version 1
     freetype-shlibs            1.3.1-13             TrueType font rendering 
library, version 1
 i   freetype219                2.6-1                TrueType font rendering 
library, headers
     freetype219-32bit          2.4.4-4              TrueType font rendering 
library, headers
 i   freetype219-32bit-shlibs   2.4.4-4              TrueType font rendering 
library, shared libs
 i   freetype219-shlibs         2.6-1                TrueType font rendering 
library, shared libs
 i   system-pkgconfig-freetype  13.2.7-1             [virtual pkgconfig package 
representing freetype2]
[karma:~] root# exit
exit

Script done on Mon Dec  7 00:20:16 2015

Attachment: smime.p7s
Description: S/MIME cryptographic signature

------------------------------------------------------------------------------
Go from Idea to Many App Stores Faster with Intel(R) XDK
Give your users amazing mobile app experiences with Intel(R) XDK.
Use one codebase in this all-in-one HTML5 development environment.
Design, debug & build mobile apps & 2D/3D high-impact games for multiple OSs.
http://pubads.g.doubleclick.net/gampad/clk?id=254741911&iu=/4140
_______________________________________________
Fink-users mailing list
Fink-users@lists.sourceforge.net
List archive:
http://news.gmane.org/gmane.os.macosx.fink.user
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-users

Reply via email to