diff --git a/audio/musicpc/Makefile b/audio/musicpc/Makefile index 960b60930b97..d76c002af03d 100644 --- a/audio/musicpc/Makefile +++ b/audio/musicpc/Makefile @@ -1,35 +1,35 @@ # Created by: Mark Reidel PORTNAME= musicpc -DISTVERSION= 0.33 -PORTREVISION= 1 +DISTVERSION= 0.34 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 +BUILD_DEPENDS= rsync>0:net/rsync LIB_DEPENDS= libmpdclient.so:audio/libmpdclient USES= meson pkgconfig tar:xz MESON_ARGS= --mandir=${MANPREFIX} +PORTDOCS= * + OPTIONS_DEFINE= DOCS ICONV OPTIONS_DEFAULT= DOCS ICONV -DOCS_USES= python:env DOCS_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=0,1:textproc/py-sphinx@${PY_FLAVOR} +DOCS_USES= python:env DOCS_MESON_ENABLED= documentation ICONV_USES= iconv -ICONV_LDFLAGS= -L${ICONV_PREFIX}/lib ${ICONV_LIB} ICONV_MESON_ENABLED= iconv - -PORTDOCS= * +ICONV_LDFLAGS= -L${ICONV_PREFIX}/lib ${ICONV_LIB} .include diff --git a/audio/musicpc/distinfo b/audio/musicpc/distinfo index 2981d85ddbf2..a3a141a0e7db 100644 --- a/audio/musicpc/distinfo +++ b/audio/musicpc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1572698875 -SHA256 (mpc-0.33.tar.xz) = 4f40ccbe18f5095437283cfc525a97815e983cbfd3a29e48ff610fa4f1bf1296 -SIZE (mpc-0.33.tar.xz) = 45044 +TIMESTAMP = 1652348508 +SHA256 (mpc-0.34.tar.xz) = 691e3f3654bc10d022bb0310234d0bc2d8c075a698f09924d9ebed8f506fda20 +SIZE (mpc-0.34.tar.xz) = 47940 diff --git a/audio/musicpc/files/patch-meson.build b/audio/musicpc/files/patch-meson.build index affb303363ac..e3856b636402 100644 --- a/audio/musicpc/files/patch-meson.build +++ b/audio/musicpc/files/patch-meson.build @@ -1,24 +1,24 @@ ---- meson.build.orig 2019-10-31 15:01:59 UTC +--- meson.build.orig 2022-05-12 09:46:08 UTC +++ meson.build @@ -1,4 +1,4 @@ -project('mpc', 'c', +project('musicpc', 'c', - version: '0.33', + version: '0.34', meson_version: '>= 0.47', default_options: [ -@@ -111,13 +111,13 @@ executable('mpc', +@@ -124,13 +124,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')