Index: head/audio/musicpc/Makefile =================================================================== --- head/audio/musicpc/Makefile (revision 516319) +++ head/audio/musicpc/Makefile (revision 516320) @@ -1,35 +1,35 @@ # Created by: Mark Reidel # $FreeBSD$ PORTNAME= musicpc -DISTVERSION= 0.32 +DISTVERSION= 0.33 CATEGORIES= audio MASTER_SITES= http://www.musicpd.org/download/mpc/0/ DISTNAME= mpc-${PORTVERSION} MAINTAINER= uzsolt@uzsolt.hu COMMENT= Command line client for the musicpd LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libmpdclient.so:audio/libmpdclient USES= meson pkgconfig tar:xz MESON_ARGS= --mandir=${MANPREFIX} OPTIONS_DEFINE= DOCS ICONV OPTIONS_DEFAULT= DOCS ICONV DOCS_USES= python:env DOCS_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>0:textproc/py-sphinx@${PY_FLAVOR} DOCS_MESON_ENABLED= documentation ICONV_USES= iconv ICONV_LDFLAGS= -L${ICONV_PREFIX}/lib ${ICONV_LIB} ICONV_MESON_ENABLED= iconv PORTDOCS= AUTHORS README.rst NEWS .include Index: head/audio/musicpc/distinfo =================================================================== --- head/audio/musicpc/distinfo (revision 516319) +++ head/audio/musicpc/distinfo (revision 516320) @@ -1,3 +1,3 @@ -TIMESTAMP = 1561089858 -SHA256 (mpc-0.32.tar.xz) = 7961d95b7ce019996beab281cf957e905667c989c53fffd13ade5e62fea331c7 -SIZE (mpc-0.32.tar.xz) = 44716 +TIMESTAMP = 1572698875 +SHA256 (mpc-0.33.tar.xz) = 4f40ccbe18f5095437283cfc525a97815e983cbfd3a29e48ff610fa4f1bf1296 +SIZE (mpc-0.33.tar.xz) = 45044 Index: head/audio/musicpc/files/patch-doc_meson.build =================================================================== --- head/audio/musicpc/files/patch-doc_meson.build (revision 516319) +++ head/audio/musicpc/files/patch-doc_meson.build (revision 516320) @@ -1,9 +1,9 @@ ---- doc/meson.build.orig 2018-10-24 08:31:33 UTC +--- doc/meson.build.orig 2019-10-31 15:01:59 UTC +++ doc/meson.build @@ -15,5 +15,5 @@ custom_target( - command: [sphinx, '-q', '-b', 'man', '-d', '@OUTDIR@/doctrees', meson.current_source_dir(), '@OUTPUT@/man1'], + command: [sphinx, '-q', '-b', 'man', '-d', '@OUTDIR@/man_doctrees', meson.current_source_dir(), '@OUTPUT@/man1'], build_by_default: true, install: true, - install_dir: get_option('datadir'), + install_dir: get_option('mandir'), ) Index: head/audio/musicpc/files/patch-meson.build =================================================================== --- head/audio/musicpc/files/patch-meson.build (revision 516319) +++ head/audio/musicpc/files/patch-meson.build (revision 516320) @@ -1,24 +1,24 @@ ---- meson.build.orig 2019-06-21 04:19:37 UTC +--- meson.build.orig 2019-10-31 15:01:59 UTC +++ meson.build @@ -1,4 +1,4 @@ -project('mpc', 'c', +project('musicpc', 'c', - version: '0.32', + version: '0.33', meson_version: '>= 0.47', default_options: [ @@ -111,13 +111,13 @@ executable('mpc', install: true ) -install_data('AUTHORS', 'COPYING', 'NEWS', 'README.rst', +install_data('AUTHORS', 'NEWS', 'README.rst', install_dir : join_paths(get_option('datadir'), 'doc', meson.project_name())) install_data( 'contrib/mpd-m3u-handler.sh', 'contrib/mpd-pls-handler.sh', 'contrib/mpc-completion.bash', - install_dir: join_paths(get_option('datadir'), 'doc', meson.project_name(), 'contrib')) + install_dir: join_paths(get_option('datadir'), 'examples', meson.project_name(), 'contrib')) if get_option('test') check_dep = dependency('check')