File:  [cvs.NetBSD.org] / pkgsrc / multimedia / mpv / Makefile
Revision 1.170: download - view: text, annotated - select for diffs
Fri Nov 1 00:52:58 2024 UTC (6 months, 1 week ago) by wiz
Branches: MAIN
CVS tags: HEAD
*: recursive bump for icu 76.1 shlib bump

# $NetBSD: Makefile,v 1.170 2024/11/01 00:52:58 wiz Exp $

DISTNAME=	mpv-0.39.0
PKGREVISION=	1
CATEGORIES=	multimedia
MASTER_SITES=	${MASTER_SITE_GITHUB:=mpv-player/}
GITHUB_TAG=	v${PKGVERSION_NOREV}

MAINTAINER=	leot@NetBSD.org
HOMEPAGE=	https://mpv.io/
COMMENT=	Video player based on MPlayer and mplayer2
LICENSE=	gnu-gpl-v2 AND gnu-lgpl-v2.1

# needs sem_timedwait(3)
NOT_FOR_PLATFORM=	NetBSD-[1-6].*-*

# Requires support for c11 atomics.
USE_CC_FEATURES+=	c11

# Needed for rst2man
TOOL_DEPENDS+=	${PYPKGPREFIX}-docutils>=0.12:../../textproc/py-docutils

MESON_ARGS+=	-Ddvdnav=enabled
MESON_ARGS+=	-Dlibmpv=true

# Support Wayland via SDL2, wayland support in mpv is too fast-moving.
MESON_ARGS+=	-Dwayland=disabled

USE_TOOLS+=	perl pkg-config

MAKE_DIRS=		${PKG_SYSCONFDIR}/mpv
INSTALLATION_DIRS=	share/examples/mpv
CONF_FILES+=		share/examples/mpv/encoding-profiles.conf \
			${PKG_SYSCONFDIR}/mpv/encoding-profiles.conf
CONF_FILES+=		share/examples/mpv/mpv.conf \
			${PKG_SYSCONFDIR}/mpv/mpv.conf

PKGCONFIG_OVERRIDE+=	libmpv/mpv.pc.in

SUBST_CLASSES+=		python
SUBST_SED.python+=	-e "s,python3,python${PYVERSSUFFIX},"
SUBST_SED.python+=	-e "s,'rst2man','rst2man-${PYVERSSUFFIX}',"
SUBST_FILES.python+=	meson.build
SUBST_STAGE.python=	pre-configure
SUBST_MESSAGE.python=	Fix python and rst2man command names.

BUILDLINK_TRANSFORM.SunOS+=	rm:-Wl,-version-script rm:-Wl,mpv.def

CFLAGS.SunOS+=		-D__EXTENSIONS__
LDFLAGS.SunOS+=		-lsocket

.include "../../mk/bsd.prefs.mk"

#
# At some point this should be consolidated into mk/platform/Darwin.mk, it is
# here temporarily while any issues are ironed out and it can be made generic
# for Swift handling.
#
# On newer macOS releases there are a couple of swift compat static libraries
# that need to be added to the search path.
#
.if ${OPSYS} == "Darwin"
XCODE_DIR!=			xcode-select -p 2>/dev/null || ${TRUE}
.  if exists(${XCODE_DIR}/usr/lib/swift/macosx)
BUILDLINK_PASSTHRU_DIRS+=	${XCODE_DIR}/usr/lib/swift/macosx
.  elif exists(${XCODE_DIR}/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx)
BUILDLINK_PASSTHRU_DIRS+=	${XCODE_DIR}/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx
.  endif
.endif

post-install:
	${MV} ${DESTDIR}${PREFIX}/share/doc/mpv/mpv.conf \
	    ${DESTDIR}${PREFIX}/share/examples/mpv/mpv.conf

.include "options.mk"

.include "../../devel/meson/build.mk"

.include "../../archivers/libarchive/buildlink3.mk"
.include "../../converters/libiconv/buildlink3.mk"
.include "../../devel/zlib/buildlink3.mk"
.include "../../graphics/lcms2/buildlink3.mk"
.include "../../lang/python/tool.mk"
.include "../../multimedia/libass/buildlink3.mk"
.include "../../multimedia/libdvdnav/buildlink3.mk"
BUILDLINK_API_DEPENDS.libplacebo+=	libplacebo>=6.338.2
.include "../../multimedia/libplacebo/buildlink3.mk"
BUILDLINK_API_DEPENDS.ffmpeg6+=	ffmpeg6>=6.1
.include "../../multimedia/ffmpeg6/buildlink3.mk"
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
.include "../../mk/jpeg.buildlink3.mk"
.include "../../mk/atomic64.mk"
.include "../../mk/bsd.pkg.mk"

CVSweb <webmaster@jp.NetBSD.org>