diff options
Diffstat (limited to 'graphics/ffmpeg/Makefile')
-rw-r--r-- | graphics/ffmpeg/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/graphics/ffmpeg/Makefile b/graphics/ffmpeg/Makefile index e630172144d..29bf340d3e9 100644 --- a/graphics/ffmpeg/Makefile +++ b/graphics/ffmpeg/Makefile @@ -7,6 +7,7 @@ PORTNAME= ffmpeg PORTVERSION= 0.4.5 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -30,6 +31,8 @@ DOC_FILES= README DOC_DOCFILES= FAQ README.dev README.tech \ TODO bench.txt ffmpeg.txt \ ffserver.txt +HEADER_FILES= libavcodec/avcodec.h libavcodec/dsputil.h +LIB_FILES= libav/libav.a libavcodec/libavcodec.a .ifdef(WITHOUT_MMX) CONFIGURE_ARGS+= --disable-mmx @@ -56,5 +59,12 @@ post-install: .endif @${INSTALL_DATA} ${WRKSRC}/doc/ffserver.conf \ ${PREFIX}/etc/ffserver.conf.sample +.for file in ${HEADER_FILES} + @${MKDIR} ${PREFIX}/include/${file:H} + @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/include/${file} +.endfor +.for file in ${LIB_FILES} + @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/lib/${file:T} +.endfor .include <bsd.port.mk> |