X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=lfs%2Fffmpeg;h=0ee9c3e0b1d0d57972e7d47632db11f41c31bac0;hb=2b59ba3c87c24dee693be35be00b7bb2ccd26813;hp=9f204d481215185dc7ea5047076b3111e27f3627;hpb=d1b6aa72bb7eff5246de5c1d5a8e945def73f5c1;p=people%2Fteissler%2Fipfire-2.x.git diff --git a/lfs/ffmpeg b/lfs/ffmpeg index 9f204d481..0ee9c3e0b 100644 --- a/lfs/ffmpeg +++ b/lfs/ffmpeg @@ -1,22 +1,20 @@ ############################################################################### -# This file is part of the IPCop Firewall. # # # -# IPCop is free software; you can redistribute it and/or modify # +# IPFire.org - A linux based firewall # +# Copyright (C) 2007 Michael Tremer & Christian Schmidt # +# # +# This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # -# the Free Software Foundation; either version 2 of the License, or # +# the Free Software Foundation, either version 3 of the License, or # # (at your option) any later version. # # # -# IPCop is distributed in the hope that it will be useful, # +# This program is distributed in the hope that it will be useful, # # but WITHOUT ANY WARRANTY; without even the implied warranty of # # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # # GNU General Public License for more details. # # # # You should have received a copy of the GNU General Public License # -# along with IPCop; if not, write to the Free Software # -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -# # -# Makefiles are based on LFSMake, which is # -# Copyright (C) 2002 Rod Roard # +# along with this program. If not, see . # # # ############################################################################### @@ -26,15 +24,16 @@ include Config -VER = 20051126 - -THISAPP = ffmpeg-$(VER) +VER = 2008-04-13 +THISAPP = ffmpeg-export-$(VER) DL_FILE = $(THISAPP).tar.bz2 DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = ffmpeg -PAK_VER = 1 +PAK_VER = 4 + +DEPS = "ffmpeg-libs sdl lame libvorbis xvid" ############################################################################### # Top-level Rules @@ -44,7 +43,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = f9e50bf9ee1dd248a276bf9bd4d606e0 +$(DL_FILE)_MD5 = 017ab929ff92be552debb65c589c2183 install : $(TARGET) @@ -77,14 +76,15 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && sed -i "s/static uint64/const uint64/" \ - libavcodec/liba52/resample_mmx.c - cd $(DIR_APP) && ./configure --prefix=/usr --enable-gpl --enable-shared \ - --enable-pthreads --disable-ffplay --enable-pp \ - --enable-mp3lame --enable-libogg --enable-vorbis \ - --enable-xvid --enable-a52 - cd $(DIR_APP) && make - cd $(DIR_APP) && make -C doc ff{mpeg,play,server}.1 - cd $(DIR_APP) && make install - @rm -rf $(DIR_APP) + ln -s $(THISAPP) /usr/src/ffmpeg + cd $(DIR_SRC)/ffmpeg && ./configure --prefix=/usr \ + --enable-shared \ + --enable-postproc \ + --enable-pthreads \ + --enable-gpl + cd $(DIR_SRC)/ffmpeg && make $(MAKETUNING) $(EXTRA_MAKE) + cd $(DIR_SRC)/ffmpeg && make install + cd $(DIR_SRC)/ffmpeg && make install-libs + ldconfig +# @rm -rf $(DIR_APP) @$(POSTBUILD)