84e727457f
Notable changes: - i386/amd64 now depend on NASM per https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/4f9297ac3b39 - NETCDF is now MYSOFA but the dependency doesn't exist in ports yet - SCHROEDINGER is gone per https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/220b24c7c9 - DRM, LIBRSVG2, LIBXML2 are new options - ABI isn't completely compatible: some structs have changed Minor cleanup: - Don't pass --disable-{in,out}dev when it's already blocked by disabled dependency - Drop redundant "Enable" from option descriptions - Switch CDIO_DESC to use Mk/bsd.options.desc.mk Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n3.4:/Changelog ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/ PR: 223057 Exp-run by: antoine
36 lines
818 B
Makefile
36 lines
818 B
Makefile
# Created by: Dave Grochowski <malus.x@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libdlna
|
|
PORTVERSION= 0.2.3
|
|
PORTREVISION= 9
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://libdlna.geexbox.org/releases/ \
|
|
LOCAL/ehaupt
|
|
|
|
MAINTAINER= malus.x@gmail.com
|
|
COMMENT= Reference DLNA open-source implementation
|
|
|
|
LICENSE= LGPL21+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg
|
|
|
|
HAS_CONFIGURE= yes
|
|
USES= gmake localbase pathfix pkgconfig tar:bzip2
|
|
PATHFIX_MAKEFILEIN= Makefile
|
|
USE_LDCONFIG= yes
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
CONFIGURE_ARGS= --prefix="${PREFIX}" --disable-optimize \
|
|
--includedir="${PREFIX}/include" \
|
|
--libdir="${PREFIX}/lib"
|
|
|
|
post-extract:
|
|
${REINPLACE_CMD} -e 's|CODEC_ID|AV_CODEC_ID|g' \
|
|
${WRKSRC}/src/*.c
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libdlna.so
|
|
|
|
.include <bsd.port.mk>
|