diff options
author | lioux <lioux@FreeBSD.org> | 2001-10-27 00:13:20 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2001-10-27 00:13:20 +0800 |
commit | 9fcd5364f0049302161cadbaecdd81c48bb140ac (patch) | |
tree | a2c5eda27ff0315e62f83437c3871a55a59edfab /graphics | |
parent | 686a916ad555e964c0a6267510b430dad481168e (diff) | |
download | freebsd-ports-graphics-9fcd5364f0049302161cadbaecdd81c48bb140ac.tar.gz freebsd-ports-graphics-9fcd5364f0049302161cadbaecdd81c48bb140ac.tar.zst freebsd-ports-graphics-9fcd5364f0049302161cadbaecdd81c48bb140ac.zip |
additional install of both libraries and headers in preparation to {,lib}xine 0.9.2 ports
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/ffmpeg/Makefile | 10 | ||||
-rw-r--r-- | graphics/ffmpeg/pkg-plist | 4 |
2 files changed, 14 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> diff --git a/graphics/ffmpeg/pkg-plist b/graphics/ffmpeg/pkg-plist index a282cf4e1db..dbd23aedd72 100644 --- a/graphics/ffmpeg/pkg-plist +++ b/graphics/ffmpeg/pkg-plist @@ -1,6 +1,10 @@ bin/ffmpeg bin/ffserver etc/ffserver.conf.sample +include/libavcodec/avcodec.h +include/libavcodec/dsputil.h +lib/libav.a +lib/libavcodec.a %%PORTDOCS%%share/doc/ffmpeg/FAQ %%PORTDOCS%%share/doc/ffmpeg/README %%PORTDOCS%%share/doc/ffmpeg/README.dev |