Update to mpc 0.30.

Maintainer timeout.
ok rsadowski@
This commit is contained in:
landry 2018-07-04 09:02:21 +00:00
parent fcf4f6f1a4
commit 5fd710b425
3 changed files with 9 additions and 8 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.26 2018/04/23 17:11:49 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.27 2018/07/04 09:02:21 landry Exp $
COMMENT= command line client for mpd
VER= 0.29
VER= 0.30
DISTNAME= mpc-${VER}
CATEGORIES= audio
EXTRACT_SUFX= .tar.xz

View File

@ -1,2 +1,2 @@
SHA256 (mpc-0.29.tar.xz) = AvHa7JAstI+M2qb+Icchn2IxsJHd2+Q3o6T7EssHudM=
SIZE (mpc-0.29.tar.xz) = 41872
SHA256 (mpc-0.30.tar.xz) = ZfxbCoQw7+msvm4mESeWBoJ2SyCrmUZ2NxvceX2Gf84=
SIZE (mpc-0.30.tar.xz) = 41968

View File

@ -1,4 +1,4 @@
$OpenBSD: patch-doc_meson_build,v 1.1 2018/04/23 16:51:50 landry Exp $
$OpenBSD: patch-doc_meson_build,v 1.2 2018/07/04 09:02:21 landry Exp $
only build manpage, and install it in correct dir
@ -24,10 +24,11 @@ Index: doc/meson.build
- output: 'man',
+ output: 'man1',
input: ['index.rst', 'conf.py'],
command: [sphinx, '-q', '-b', 'man', '-d', '@OUTDIR@/doctrees', meson.current_source_dir(), '@OUTPUT@'],
- command: [sphinx, '-q', '-b', 'man', '-d', '@OUTDIR@/doctrees', meson.current_source_dir(), '@OUTPUT@/man1'],
+ command: [sphinx, '-q', '-b', 'man', '-d', '@OUTDIR@/doctrees', meson.current_source_dir(), '@OUTPUT@'],
build_by_default: true,
install: true,
- install_dir: join_paths(get_option('datadir'), 'man', 'man1'),
+ install_dir: get_option('mandir')
- install_dir: get_option('datadir'),
+ install_dir: get_option('mandir'),
)
endif