additional install of both libraries and headers in preparation to {,lib}xine 0.9.2 ports
This commit is contained in:
parent
109111b8b3
commit
b3f9ad8523
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=49224
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= liba52
|
||||
PORTVERSION= 0.7.1.b
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://liba52.sourceforge.net/files/
|
||||
DISTNAME= a52dec-${PORTVERSION:S/.b/b/}
|
||||
@ -19,6 +20,8 @@ USE_LIBTOOL= yes
|
||||
|
||||
MAN1= a52dec.1 extract_a52.1
|
||||
|
||||
HEADER_FILES= liba52/a52_internal.h
|
||||
|
||||
.ifndef(WITH_OPTIMIZED_CFLAGS)
|
||||
USE_AUTOCONF= yes
|
||||
|
||||
@ -41,5 +44,8 @@ post-install:
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
@${INSTALL_DATA} ${WRKSRC}/doc/liba52.txt ${DOCSDIR}
|
||||
.endif
|
||||
.for file in ${HEADER_FILES}
|
||||
@${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/include/a52dec
|
||||
.endfor
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,6 +1,7 @@
|
||||
bin/a52dec
|
||||
bin/extract_a52
|
||||
include/a52dec/a52.h
|
||||
include/a52dec/a52_internal.h
|
||||
include/a52dec/audio_out.h
|
||||
include/a52dec/mm_accel.h
|
||||
lib/liba52.so.0
|
||||
|
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= liba52
|
||||
PORTVERSION= 0.7.1.b
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://liba52.sourceforge.net/files/
|
||||
DISTNAME= a52dec-${PORTVERSION:S/.b/b/}
|
||||
@ -19,6 +20,8 @@ USE_LIBTOOL= yes
|
||||
|
||||
MAN1= a52dec.1 extract_a52.1
|
||||
|
||||
HEADER_FILES= liba52/a52_internal.h
|
||||
|
||||
.ifndef(WITH_OPTIMIZED_CFLAGS)
|
||||
USE_AUTOCONF= yes
|
||||
|
||||
@ -41,5 +44,8 @@ post-install:
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
@${INSTALL_DATA} ${WRKSRC}/doc/liba52.txt ${DOCSDIR}
|
||||
.endif
|
||||
.for file in ${HEADER_FILES}
|
||||
@${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/include/a52dec
|
||||
.endfor
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,6 +1,7 @@
|
||||
bin/a52dec
|
||||
bin/extract_a52
|
||||
include/a52dec/a52.h
|
||||
include/a52dec/a52_internal.h
|
||||
include/a52dec/audio_out.h
|
||||
include/a52dec/mm_accel.h
|
||||
lib/liba52.so.0
|
||||
|
@ -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>
|
||||
|
@ -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
|
||||
|
@ -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>
|
||||
|
@ -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
|
||||
|
@ -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>
|
||||
|
@ -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
|
||||
|
@ -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>
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user