Update to FFmpeg 20121026 snapshot. From 0.10 branch.
ok sthen@
This commit is contained in:
parent
e12fe2008d
commit
2de9b3e02a
@ -1,22 +1,22 @@
|
||||
# $OpenBSD: Makefile,v 1.91 2013/01/08 10:13:13 brad Exp $
|
||||
# $OpenBSD: Makefile,v 1.92 2013/01/14 02:14:41 brad Exp $
|
||||
|
||||
COMMENT= audio/video converter and streamer
|
||||
|
||||
V= 20120610
|
||||
V= 20121026
|
||||
DISTNAME= ffmpeg-git-${V}
|
||||
PKGNAME= ffmpeg-${V}
|
||||
REVISION= 2
|
||||
CATEGORIES= graphics multimedia
|
||||
MASTER_SITES= http://comstyle.com/source/
|
||||
EXTRACT_SUFX= .tar.xz
|
||||
|
||||
SHARED_LIBS= avcodec 17.0 \
|
||||
avdevice 5.0 \
|
||||
avfilter 3.0 \
|
||||
avformat 15.0 \
|
||||
avutil 9.0 \
|
||||
postproc 14.0 \
|
||||
swscale 4.0
|
||||
SHARED_LIBS= avcodec 18.0 \
|
||||
avdevice 6.0 \
|
||||
avfilter 4.0 \
|
||||
avformat 16.0 \
|
||||
avutil 10.0 \
|
||||
postproc 15.0 \
|
||||
swresample 0.0 \
|
||||
swscale 5.0
|
||||
|
||||
HOMEPAGE= http://ffmpeg.org/
|
||||
|
||||
@ -28,8 +28,8 @@ PERMIT_PACKAGE_FTP= Yes
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
PERMIT_DISTFILES_FTP= Yes
|
||||
|
||||
WANTLIB= SDL X11 Xext Xfixes bz2 c gsm m mp3lame pthread \
|
||||
schroedinger-1.0>=2 sndio speex theoradec theoraenc \
|
||||
WANTLIB= SDL X11 Xext Xfixes bz2 c crypto gsm m mp3lame pthread \
|
||||
schroedinger-1.0>=2 sndio speex ssl theoradec theoraenc \
|
||||
vorbis vorbisenc vpx x264>=8 xvidcore z
|
||||
|
||||
BUILD_DEPENDS= textproc/texi2html
|
||||
@ -52,9 +52,10 @@ LIB_DEPENDS= archivers/bzip2 \
|
||||
LIBavcodec_EXTRALIBS=-L${LOCALBASE}/lib -lgsm -lmp3lame -lschroedinger-1.0 -lspeex -ltheoradec -ltheoraenc -lvorbis -lvorbisenc -lvpx -lx264 -lxvidcore -lz -pthread
|
||||
LIBavdevice_EXTRALIBS=-L${X11BASE}/lib -lX11 -lXext -lXfixes -lsndio
|
||||
LIBavfilter_EXTRALIBS=
|
||||
LIBavformat_EXTRALIBS=-L${LOCALBASE}/lib -lbz2
|
||||
LIBavformat_EXTRALIBS=-L${LOCALBASE}/lib -lbz2 -lssl -lcrypto -pthread
|
||||
LIBavutil_EXTRALIBS=-lm
|
||||
LIBpostproc_EXTRALIBS=
|
||||
LIBswresample_EXTRALIBS=-lm
|
||||
LIBswscale_EXTRALIBS=-lm
|
||||
|
||||
# configure wants a directory it can execute files in
|
||||
@ -67,6 +68,11 @@ FFMPEG_ARCH= generic
|
||||
FFMPEG_ARCH= ${MACHINE_ARCH}
|
||||
.endif
|
||||
|
||||
OPTFLAGS= ${CFLAGS}
|
||||
|
||||
# until the system headers are fixed properly.
|
||||
OPTFLAGS+= -Wno-redundant-decls
|
||||
|
||||
USE_GMAKE= Yes
|
||||
CONFIGURE_STYLE= simple
|
||||
CONFIGURE_ARGS+= ${CONFIGURE_SHARED} \
|
||||
@ -94,11 +100,14 @@ CONFIGURE_ARGS+= ${CONFIGURE_SHARED} \
|
||||
--enable-libvpx \
|
||||
--enable-libx264 \
|
||||
--enable-libxvid \
|
||||
--enable-nonfree \
|
||||
--enable-openssl \
|
||||
--enable-runtime-cpudetect \
|
||||
--enable-x11grab \
|
||||
--extra-cflags="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
||||
--extra-libs="-L${LOCALBASE}/lib -L${X11BASE}/lib" \
|
||||
--mandir=${PREFIX}/man
|
||||
--mandir=${PREFIX}/man \
|
||||
--optflags="${OPTFLAGS}"
|
||||
|
||||
CONFIGURE_ENV+= LIBavcodec_EXTRALIBS="${LIBavcodec_EXTRALIBS}" \
|
||||
LIBavdevice_EXTRALIBS="${LIBavdevice_EXTRALIBS}" \
|
||||
@ -106,6 +115,7 @@ CONFIGURE_ENV+= LIBavcodec_EXTRALIBS="${LIBavcodec_EXTRALIBS}" \
|
||||
LIBavformat_EXTRALIBS="${LIBavformat_EXTRALIBS}" \
|
||||
LIBavutil_EXTRALIBS="${LIBavutil_EXTRALIBS}" \
|
||||
LIBpostproc_EXTRALIBS="${LIBpostproc_EXTRALIBS}" \
|
||||
LIBswresample_EXTRALIBS="${LIBswresample_EXTRALIBS}" \
|
||||
LIBswscale_EXTRALIBS="${LIBswscale_EXTRALIBS}" \
|
||||
LIBavcodec_LINKFLAGS="" \
|
||||
LIBavdevice_LINKFLAGS="-Wl,-rpath-link,${X11BASE}/lib" \
|
||||
@ -113,13 +123,15 @@ CONFIGURE_ENV+= LIBavcodec_EXTRALIBS="${LIBavcodec_EXTRALIBS}" \
|
||||
LIBavformat_LINKFLAGS="" \
|
||||
LIBavutil_LINKFLAGS="" \
|
||||
LIBpostproc_LINKFLAGS="" \
|
||||
LIBswresample_LINKFLAGS="" \
|
||||
LIBswscale_LINKFLAGS="" \
|
||||
LIBavcodec_REQUIRES="libavutil schroedinger-1.0 speex theoraenc vpx x264" \
|
||||
LIBavdevice_REQUIRES="libavformat libavcodec libavutil" \
|
||||
LIBavfilter_REQUIRES="libavformat libavcodec libavutil libswscale" \
|
||||
LIBavdevice_REQUIRES="libavformat libavcodec libavfilter libavutil" \
|
||||
LIBavfilter_REQUIRES="libavformat libavcodec libavutil libswresample libswscale" \
|
||||
LIBavformat_REQUIRES="libavcodec libavutil" \
|
||||
LIBavutil_REQUIRES="" \
|
||||
LIBpostproc_REQUIRES="libavutil" \
|
||||
LIBswresample_REQUIRES="libavutil" \
|
||||
LIBswscale_REQUIRES="libavutil" \
|
||||
TMPDIR=${WRKTMP}
|
||||
|
||||
@ -129,17 +141,19 @@ VERSION_FLAGS= libavcodec_VERSION=${LIBavcodec_VERSION} \
|
||||
libavformat_VERSION=${LIBavformat_VERSION} \
|
||||
libavutil_VERSION=${LIBavutil_VERSION} \
|
||||
libpostproc_VERSION=${LIBpostproc_VERSION} \
|
||||
libswresample_VERSION=${LIBswresample_VERSION} \
|
||||
libswscale_VERSION=${LIBswscale_VERSION}
|
||||
|
||||
MAKE_ENV= V=1
|
||||
|
||||
MAKE_FLAGS= ${VERSION_FLAGS} \
|
||||
LIBavcodec_EXTRALIBS="-lavutil ${LIBavcodec_EXTRALIBS}" \
|
||||
LIBavdevice_EXTRALIBS="-lavformat -lavcodec -lavutil ${LIBavdevice_EXTRALIBS}" \
|
||||
LIBavfilter_EXTRALIBS="-lavformat -lavcodec -lavutil -lswscale ${LIBavfilter_EXTRALIBS}" \
|
||||
LIBavdevice_EXTRALIBS="-lavformat -lavcodec -lavfilter -lavutil ${LIBavdevice_EXTRALIBS}" \
|
||||
LIBavfilter_EXTRALIBS="-lavformat -lavcodec -lavutil -lswresample -lswscale ${LIBavfilter_EXTRALIBS}" \
|
||||
LIBavformat_EXTRALIBS="-lavcodec -lavutil ${LIBavformat_EXTRALIBS}" \
|
||||
LIBavutil_EXTRALIBS="${LIBavutil_EXTRALIBS}" \
|
||||
LIBpostproc_EXTRALIBS="-lavutil ${LIBpostproc_EXTRALIBS}" \
|
||||
LIBswresample_EXTRALIBS="-lavutil ${LIBswresample_EXTRALIBS}" \
|
||||
LIBswscale_EXTRALIBS="-lavutil ${LIBswscale_EXTRALIBS}"
|
||||
FAKE_FLAGS= ${VERSION_FLAGS} \
|
||||
LDCONFIG=true
|
||||
@ -162,9 +176,9 @@ pre-configure:
|
||||
@mkdir -p ${WRKTMP}
|
||||
|
||||
post-install:
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ffmpeg
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/ffmpeg
|
||||
${INSTALL_PROGRAM} ${WRKBUILD}/tools/qt-faststart ${PREFIX}/bin
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ffmpeg
|
||||
.for doc in ${HTML_DOCS}
|
||||
${INSTALL_DATA} ${WRKBUILD}/doc/${doc}.html ${PREFIX}/share/doc/ffmpeg
|
||||
.endfor
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (ffmpeg-git-20120610.tar.xz) = XyT1cT6ziGWTu1mXmUN+jjz+yCswetXg97YhSccznBE=
|
||||
SIZE (ffmpeg-git-20120610.tar.xz) = 3854696
|
||||
SHA256 (ffmpeg-git-20121026.tar.xz) = Zc9RhptNJ5f9p8Phj/H4arg9D3qeYiy64Ogg0HPNrFI=
|
||||
SIZE (ffmpeg-git-20121026.tar.xz) = 4726816
|
||||
|
@ -1,15 +1,15 @@
|
||||
$OpenBSD: patch-configure,v 1.32 2013/01/08 10:13:13 brad Exp $
|
||||
--- configure.orig Sun Jun 10 00:59:57 2012
|
||||
+++ configure Tue Nov 20 06:31:14 2012
|
||||
@@ -1092,7 +1092,6 @@ HAVE_LIST="
|
||||
lzo1x_999_compress
|
||||
$OpenBSD: patch-configure,v 1.33 2013/01/14 02:14:41 brad Exp $
|
||||
--- configure.orig Tue Sep 18 22:44:40 2012
|
||||
+++ configure Tue Jan 8 06:02:20 2013
|
||||
@@ -1205,7 +1205,6 @@ HAVE_LIST="
|
||||
machine_ioctl_bt848_h
|
||||
machine_ioctl_meteor_h
|
||||
makeinfo
|
||||
- malloc_h
|
||||
MapViewOfFile
|
||||
memalign
|
||||
mkstemp
|
||||
@@ -2425,6 +2424,7 @@ case $target_os in
|
||||
@@ -2618,6 +2617,7 @@ case $target_os in
|
||||
enable pic
|
||||
disable symver
|
||||
SHFLAGS='-shared'
|
||||
@ -17,7 +17,7 @@ $OpenBSD: patch-configure,v 1.32 2013/01/08 10:13:13 brad Exp $
|
||||
oss_indev_extralibs="-lossaudio"
|
||||
oss_outdev_extralibs="-lossaudio"
|
||||
;;
|
||||
@@ -2601,7 +2601,7 @@ die_license_disabled version3 libvo_amrwbenc
|
||||
@@ -2800,7 +2800,7 @@ die_license_disabled version3 libvo_amrwbenc
|
||||
|
||||
enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
|
||||
|
||||
@ -26,35 +26,24 @@ $OpenBSD: patch-configure,v 1.32 2013/01/08 10:13:13 brad Exp $
|
||||
|
||||
enable_pic() {
|
||||
enable pic
|
||||
@@ -2931,7 +2931,7 @@ enabled libdirac && require_pkg_config dirac
|
||||
@@ -3138,7 +3138,7 @@ enabled libdirac && require_pkg_config dirac
|
||||
"dirac_decoder_init dirac_encoder_init"
|
||||
enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
|
||||
enabled libfreetype && require_pkg_config freetype2 "ft2build.h freetype/freetype.h" FT_Init_FreeType
|
||||
-enabled libgsm && require libgsm gsm/gsm.h gsm_create -lgsm
|
||||
+enabled libgsm && require libgsm gsm.h gsm_create -lgsm
|
||||
enabled libmodplug && require libmodplug libmodplug/modplug.h ModPlug_Load -lmodplug
|
||||
enabled libmp3lame && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame
|
||||
enabled libnut && require libnut libnut.h nut_demuxer_init -lnut
|
||||
enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb
|
||||
@@ -3075,10 +3075,6 @@ fi
|
||||
|
||||
if enabled small; then
|
||||
add_cflags $size_cflags
|
||||
-elif enabled optimizations; then
|
||||
- add_cflags $speed_cflags
|
||||
-else
|
||||
- add_cflags $noopt_cflags
|
||||
fi
|
||||
check_cflags -fno-math-errno
|
||||
check_cflags -fno-signed-zeros
|
||||
@@ -3506,6 +3502,7 @@ comment=$2
|
||||
@@ -3714,6 +3714,7 @@ comment=$2
|
||||
version=$3
|
||||
libs=$4
|
||||
requires=$5
|
||||
+linkflags=$6
|
||||
enabled ${name#lib} || return 0
|
||||
mkdir -p $name
|
||||
cat <<EOF > $name/$name.pc
|
||||
prefix=$prefix
|
||||
@@ -3519,7 +3516,7 @@ Version: $version
|
||||
@@ -3728,7 +3729,7 @@ Version: $version
|
||||
Requires: $(enabled shared || echo $requires)
|
||||
Requires.private: $(enabled shared && echo $requires)
|
||||
Conflicts:
|
||||
@ -63,7 +52,7 @@ $OpenBSD: patch-configure,v 1.32 2013/01/08 10:13:13 brad Exp $
|
||||
Libs.private: $(enabled shared && echo $libs)
|
||||
Cflags: -I\${includedir}
|
||||
EOF
|
||||
@@ -3539,10 +3536,10 @@ Cflags: -I\${includedir}
|
||||
@@ -3748,11 +3749,11 @@ Cflags: -I\${includedir}
|
||||
EOF
|
||||
}
|
||||
|
||||
@ -72,8 +61,9 @@ $OpenBSD: patch-configure,v 1.32 2013/01/08 10:13:13 brad Exp $
|
||||
-pkgconfig_generate libavformat "FFmpeg container format library" "$LIBAVFORMAT_VERSION" "$extralibs" "libavcodec = $LIBAVCODEC_VERSION"
|
||||
-pkgconfig_generate libavdevice "FFmpeg device handling library" "$LIBAVDEVICE_VERSION" "$extralibs" "libavformat = $LIBAVFORMAT_VERSION"
|
||||
-pkgconfig_generate libavfilter "FFmpeg video filtering library" "$LIBAVFILTER_VERSION" "$extralibs"
|
||||
-pkgconfig_generate libpostproc "FFmpeg post processing library" "$LIBPOSTPROC_VERSION" "" "libavutil = $LIBAVUTIL_VERSION"
|
||||
-pkgconfig_generate libpostproc "FFmpeg postprocessing library" "$LIBPOSTPROC_VERSION" "" "libavutil = $LIBAVUTIL_VERSION"
|
||||
-pkgconfig_generate libswscale "FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "$LIBM" "libavutil = $LIBAVUTIL_VERSION"
|
||||
-pkgconfig_generate libswresample "FFmpeg audio rescaling library" "$LIBSWRESAMPLE_VERSION" "$LIBM" "libavutil = $LIBAVUTIL_VERSION"
|
||||
+pkgconfig_generate libavutil "FFmpeg utility library" "$LIBAVUTIL_VERSION" "$LIBavutil_EXTRALIBS" "$LIBavutil_REQUIRES" "$LIBavutil_LINKFLAGS"
|
||||
+pkgconfig_generate libavcodec "FFmpeg codec library" "$LIBAVCODEC_VERSION" "$LIBavcodec_EXTRALIBS" "$LIBavcodec_REQUIRES" "$LIBavcodec_LINKFLAGS"
|
||||
+pkgconfig_generate libavformat "FFmpeg container format library" "$LIBAVFORMAT_VERSION" "$LIBavformat_EXTRALIBS" "$LIBavformat_REQUIRES" "$LIBavformat_LINKFLAGS"
|
||||
@ -81,3 +71,4 @@ $OpenBSD: patch-configure,v 1.32 2013/01/08 10:13:13 brad Exp $
|
||||
+pkgconfig_generate libavfilter "FFmpeg video filtering library" "$LIBAVFILTER_VERSION" "$LIBavfilter_EXTRALIBS" "$LIBavfilter_REQUIRES" "$LIBavfilter_LINKFLAGS"
|
||||
+pkgconfig_generate libpostproc "FFmpeg post processing library" "$LIBPOSTPROC_VERSION" "$LIBpostproc_EXTRALIBS" "$LIBpostproc_REQUIRES" "$LIBpostproc_LINKFLAGS"
|
||||
+pkgconfig_generate libswscale "FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "$LIBswscale_EXTRALIBS" "$LIBswscale_REQUIRES" "$LIBswscale_LINKFLAGS"
|
||||
+pkgconfig_generate libswresample "FFmpeg audio rescaling library" "$LIBSWRESAMPLE_VERSION" "$LIBswresample_EXTRALIBS" "$LIBswresample_REQUIRES" "$LIBswresample_LINKFLAGS"
|
||||
|
@ -1,12 +1,12 @@
|
||||
$OpenBSD: patch-libavcodec_libgsm_c,v 1.1 2010/05/26 21:38:52 jakemsr Exp $
|
||||
--- libavcodec/libgsm.c.orig Sun May 16 11:06:29 2010
|
||||
+++ libavcodec/libgsm.c Sun May 16 11:06:38 2010
|
||||
@@ -28,7 +28,7 @@
|
||||
$OpenBSD: patch-libavcodec_libgsm_c,v 1.2 2013/01/14 02:14:41 brad Exp $
|
||||
--- libavcodec/libgsm.c.orig Mon Jun 11 07:25:10 2012
|
||||
+++ libavcodec/libgsm.c Thu Sep 13 23:18:57 2012
|
||||
@@ -27,7 +27,7 @@
|
||||
|
||||
// The idiosyncrasies of GSM-in-WAV are explained at http://kbs.cs.tu-berlin.de/~jutta/toast.html
|
||||
|
||||
#include "avcodec.h"
|
||||
-#include <gsm/gsm.h>
|
||||
+#include <gsm.h>
|
||||
|
||||
// gsm.h misses some essential constants
|
||||
#define GSM_BLOCK_SIZE 33
|
||||
#include "avcodec.h"
|
||||
#include "gsm.h"
|
||||
|
21
graphics/ffmpeg/patches/patch-library_mak
Normal file
21
graphics/ffmpeg/patches/patch-library_mak
Normal file
@ -0,0 +1,21 @@
|
||||
$OpenBSD: patch-library_mak,v 1.1 2013/01/14 02:14:41 brad Exp $
|
||||
--- library.mak.orig Thu Sep 13 23:19:10 2012
|
||||
+++ library.mak Thu Sep 13 23:23:29 2012
|
||||
@@ -42,7 +42,7 @@ $(SUBDIR)$(SLIBNAME): $(SUBDIR)$(SLIBNAME_WITH_MAJOR)
|
||||
|
||||
$(SUBDIR)$(SLIBNAME_WITH_MAJOR): $(OBJS) $(SUBDIR)lib$(NAME).ver
|
||||
$(SLIB_CREATE_DEF_CMD)
|
||||
- $$(LD) $(SHFLAGS) $(LDFLAGS) -o $$@ $$(filter %.o,$$^) $(FFEXTRALIBS) $(EXTRAOBJS)
|
||||
+ $$(LD) $(SHFLAGS) $(LDFLAGS) -o $$@ $$(filter %.o,$$^) $(LIB$(NAME)_EXTRALIBS) $(EXTRAOBJS)
|
||||
$(SLIB_EXTRA_CMD)
|
||||
|
||||
ifdef SUBDIR
|
||||
@@ -61,8 +61,6 @@ distclean:: clean
|
||||
install-lib$(NAME)-shared: $(SUBDIR)$(SLIBNAME)
|
||||
$(Q)mkdir -p "$(SHLIBDIR)"
|
||||
$$(INSTALL) -m 755 $$< "$(SHLIBDIR)/$(SLIB_INSTALL_NAME)"
|
||||
- $$(STRIP) "$(SHLIBDIR)/$(SLIB_INSTALL_NAME)"
|
||||
- $(Q)$(foreach F,$(SLIB_INSTALL_LINKS),cd "$(SHLIBDIR)" && $(LN_S) $(SLIB_INSTALL_NAME) $(F);)
|
||||
$(if $(SLIB_INSTALL_EXTRA_SHLIB),$$(INSTALL) -m 644 $(SLIB_INSTALL_EXTRA_SHLIB:%=$(SUBDIR)%) "$(SHLIBDIR)")
|
||||
$(if $(SLIB_INSTALL_EXTRA_LIB),$(Q)mkdir -p "$(LIBDIR)")
|
||||
$(if $(SLIB_INSTALL_EXTRA_LIB),$$(INSTALL) -m 644 $(SLIB_INSTALL_EXTRA_LIB:%=$(SUBDIR)%) "$(LIBDIR)")
|
@ -1,24 +0,0 @@
|
||||
$OpenBSD: patch-subdir_mak,v 1.5 2012/04/28 08:41:32 ajacoutot Exp $
|
||||
--- subdir.mak.orig Sat Apr 21 23:53:40 2012
|
||||
+++ subdir.mak Sun Apr 22 00:47:52 2012
|
||||
@@ -41,7 +41,7 @@ $(SUBDIR)$(SLIBNAME): $(SUBDIR)$(SLIBNAME_WITH_MAJOR)
|
||||
|
||||
$(SUBDIR)$(SLIBNAME_WITH_MAJOR): $(OBJS) $(SUBDIR)lib$(NAME).ver
|
||||
$(SLIB_CREATE_DEF_CMD)
|
||||
- $$(LD) $(SHFLAGS) $(FFLDFLAGS) -o $$@ $$(filter %.o,$$^) $(FFEXTRALIBS) $(EXTRAOBJS)
|
||||
+ $$(LD) $(SHFLAGS) $(FFLDFLAGS) -o $$@ $$(filter %.o,$$^) $(LIB$(NAME)_EXTRALIBS) $(EXTRAOBJS)
|
||||
$(SLIB_EXTRA_CMD)
|
||||
|
||||
ifdef SUBDIR
|
||||
@@ -60,11 +60,6 @@ distclean:: clean
|
||||
install-lib$(NAME)-shared: $(SUBDIR)$(SLIBNAME)
|
||||
$(Q)mkdir -p "$(SHLIBDIR)"
|
||||
$$(INSTALL) -m 755 $$< "$(SHLIBDIR)/$(SLIBNAME_WITH_VERSION)"
|
||||
- $$(STRIP) "$(SHLIBDIR)/$(SLIBNAME_WITH_VERSION)"
|
||||
- $(Q)cd "$(SHLIBDIR)" && \
|
||||
- $(LN_S) $(SLIBNAME_WITH_VERSION) $(SLIBNAME_WITH_MAJOR)
|
||||
- $(Q)cd "$(SHLIBDIR)" && \
|
||||
- $(LN_S) $(SLIBNAME_WITH_VERSION) $(SLIBNAME)
|
||||
$(SLIB_INSTALL_EXTRA_CMD)
|
||||
|
||||
install-lib$(NAME)-static: $(SUBDIR)$(LIBNAME)
|
@ -1,8 +1,9 @@
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.19 2010/05/26 21:38:52 jakemsr Exp $
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.20 2013/01/14 02:14:41 brad Exp $
|
||||
@lib lib/libavcodec.so.${LIBavcodec_VERSION}
|
||||
@lib lib/libavdevice.so.${LIBavdevice_VERSION}
|
||||
@lib lib/libavfilter.so.${LIBavfilter_VERSION}
|
||||
@lib lib/libavformat.so.${LIBavformat_VERSION}
|
||||
@lib lib/libavutil.so.${LIBavutil_VERSION}
|
||||
@lib lib/libpostproc.so.${LIBpostproc_VERSION}
|
||||
@lib lib/libswresample.so.${LIBswresample_VERSION}
|
||||
@lib lib/libswscale.so.${LIBswscale_VERSION}
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.22 2012/04/28 08:41:32 ajacoutot Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.23 2013/01/14 02:14:41 brad Exp $
|
||||
%%SHARED%%
|
||||
@bin bin/ffmpeg
|
||||
@bin bin/ffplay
|
||||
@ -11,6 +11,7 @@ include/libavcodec/avfft.h
|
||||
include/libavcodec/dxva2.h
|
||||
include/libavcodec/opt.h
|
||||
include/libavcodec/vaapi.h
|
||||
include/libavcodec/vda.h
|
||||
include/libavcodec/vdpau.h
|
||||
include/libavcodec/version.h
|
||||
include/libavcodec/xvmc.h
|
||||
@ -20,7 +21,8 @@ include/libavfilter/
|
||||
include/libavfilter/avcodec.h
|
||||
include/libavfilter/avfilter.h
|
||||
include/libavfilter/avfiltergraph.h
|
||||
include/libavfilter/vsink_buffer.h
|
||||
include/libavfilter/buffersink.h
|
||||
include/libavfilter/version.h
|
||||
include/libavfilter/vsrc_buffer.h
|
||||
include/libavformat/
|
||||
include/libavformat/avformat.h
|
||||
@ -46,6 +48,7 @@ include/libavutil/eval.h
|
||||
include/libavutil/fifo.h
|
||||
include/libavutil/file.h
|
||||
include/libavutil/imgutils.h
|
||||
include/libavutil/intfloat.h
|
||||
include/libavutil/intfloat_readwrite.h
|
||||
include/libavutil/intreadwrite.h
|
||||
include/libavutil/lfg.h
|
||||
@ -62,9 +65,10 @@ include/libavutil/random_seed.h
|
||||
include/libavutil/rational.h
|
||||
include/libavutil/samplefmt.h
|
||||
include/libavutil/sha.h
|
||||
include/libavutil/sha1.h
|
||||
include/libpostproc/
|
||||
include/libpostproc/postprocess.h
|
||||
include/libswresample/
|
||||
include/libswresample/swresample.h
|
||||
include/libswscale/
|
||||
include/libswscale/swscale.h
|
||||
lib/libavcodec.a
|
||||
@ -73,6 +77,7 @@ lib/libavfilter.a
|
||||
lib/libavformat.a
|
||||
lib/libavutil.a
|
||||
lib/libpostproc.a
|
||||
lib/libswresample.a
|
||||
lib/libswscale.a
|
||||
lib/pkgconfig/
|
||||
lib/pkgconfig/libavcodec.pc
|
||||
@ -81,6 +86,7 @@ lib/pkgconfig/libavfilter.pc
|
||||
lib/pkgconfig/libavformat.pc
|
||||
lib/pkgconfig/libavutil.pc
|
||||
lib/pkgconfig/libpostproc.pc
|
||||
lib/pkgconfig/libswresample.pc
|
||||
lib/pkgconfig/libswscale.pc
|
||||
@man man/man1/ffmpeg.1
|
||||
@man man/man1/ffplay.1
|
||||
@ -99,17 +105,11 @@ share/doc/pkg-readmes/${FULLPKGNAME}
|
||||
share/examples/ffmpeg/
|
||||
share/examples/ffmpeg/ffserver.conf
|
||||
share/ffmpeg/
|
||||
share/ffmpeg/ffprobe.xsd
|
||||
share/ffmpeg/libvpx-1080p.ffpreset
|
||||
share/ffmpeg/libvpx-1080p50_60.ffpreset
|
||||
share/ffmpeg/libvpx-360p.ffpreset
|
||||
share/ffmpeg/libvpx-720p.ffpreset
|
||||
share/ffmpeg/libvpx-720p50_60.ffpreset
|
||||
share/ffmpeg/libx264-baseline.ffpreset
|
||||
share/ffmpeg/libx264-ipod320.ffpreset
|
||||
share/ffmpeg/libx264-ipod640.ffpreset
|
||||
share/ffmpeg/libx264-lossless_fast.ffpreset
|
||||
share/ffmpeg/libx264-lossless_max.ffpreset
|
||||
share/ffmpeg/libx264-lossless_medium.ffpreset
|
||||
share/ffmpeg/libx264-lossless_slow.ffpreset
|
||||
share/ffmpeg/libx264-lossless_slower.ffpreset
|
||||
share/ffmpeg/libx264-lossless_ultrafast.ffpreset
|
||||
|
Loading…
Reference in New Issue
Block a user