freebsd-ports/multimedia/emby-server/Makefile
Adam Weinberger c43741621c Update multimedia/emby-server to latest stable release 3.0.5607.2.
Changes this release:
 * Resolved Play To issue with Xbox One that would revert to the default Dlna profile if using a custom device name
 * Resolved transcoding failures with Sony Bravia's
 * Resolved missing images with Sony Bravia's
 * Resolved transcoding failures with Panasonic Viera
 * Significantly reduced network footprint when discovering devices on the network
 * New DLNA profiles added for VLC and Bubble UPnp, to direct stream all content (subject to bitrate setting)
 * Resolved issue of missing header when using the web client on Xbox One
 * Resolved incorrect aspect ratio when transcoding anamorphic content with Android TV & Fire TV
 * Resolved issue of file handles being left open in Linux when extracting chapter images. This was the primary cause of the Unbutu crashing being reported.
 * Resolved issue of backdrop images not being downloaded in certain situations
 * Reduced CPU usage caused by dynamically created images

PR:		200160
Submitted by:	Ben Woods (maintainer)
2015-05-15 15:38:35 +00:00

44 lines
1.3 KiB
Makefile

# $FreeBSD$
PORTNAME= emby-server
PORTVERSION= 3.0.5607.2
CATEGORIES= multimedia
MAINTAINER= woodsb02@gmail.com
COMMENT= Home media server built using mono and other open source technologies
LICENSE= GPLv2
LIB_DEPENDS= libavformat.so:${PORTSDIR}/multimedia/ffmpeg \
libmediainfo.so:${PORTSDIR}/multimedia/libmediainfo \
libsqlite3.so:${PORTSDIR}/databases/sqlite3 \
libMagickWand-6.so:${PORTSDIR}/graphics/ImageMagick-nox11
CONFLICTS_INSTALL= mediabrowser
USE_GITHUB= yes
GH_ACCOUNT= MediaBrowser
GH_PROJECT= MediaBrowser
USES= mono pkgconfig
USE_RC_SUBR= ${PORTNAME}
RC_NAME= emby_server
SUB_LIST= PORTNAME=${PORTNAME} USER=${USERS} GROUP=${GROUPS} RC_NAME=${RC_NAME}
USERS= emby
GROUPS= emby
do-build:
(cd ${WRKSRC} && \
${SETENV} ${MAKE_ENV} ${LOCALBASE}/bin/xbuild /t:build /p:Configuration="Release Mono" \
/p:Platform="Any CPU" MediaBrowser.Mono.sln)
do-install:
@${MKDIR} ${STAGEDIR}${PREFIX}/lib/emby-server
(cd ${WRKSRC}/MediaBrowser.Server.Mono/bin/Release\ Mono && \
${ECHO_MSG} "Deleting the following non-FreeBSD library files:" && \
${FIND} -E . -iregex '(.*\.dylib|.*libwebp.*|.*sqlite3.*|.*.dylib.*|MediaInfo\.dll)' -print -delete && \
${FIND} . -type d -empty -print -delete && \
${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/lib/emby-server)
.include <bsd.port.mk>