From owner-svn-ports-head@freebsd.org Tue Dec 10 17:20:06 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id F080F1DFF8F; Tue, 10 Dec 2019 17:20:06 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47XRdf6Bdfz41pp; Tue, 10 Dec 2019 17:20:06 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CF2832E019; Tue, 10 Dec 2019 17:20:06 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xBAHK6ua009411; Tue, 10 Dec 2019 17:20:06 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xBAHK6aw009410; Tue, 10 Dec 2019 17:20:06 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201912101720.xBAHK6aw009410@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Tue, 10 Dec 2019 17:20:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r519763 - head/audio/musicpd X-SVN-Group: ports-head X-SVN-Commit-Author: jhale X-SVN-Commit-Paths: head/audio/musicpd X-SVN-Commit-Revision: 519763 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2019 17:20:07 -0000 Author: jhale Date: Tue Dec 10 17:20:06 2019 New Revision: 519763 URL: https://svnweb.freebsd.org/changeset/ports/519763 Log: Fix configure when the CDPARANOIA option is enabled. It should depend on sysutils/libcdio-paranoia, not audio/cdparanoia. Run-time dependency libcdio_paranoia found: NO (tried pkgconfig) src/input/plugins/meson.build:9:0: ERROR: Dependency "libcdio_paranoia" not found, tried pkgconfig The ISO9660 option depends on sysutils/libcdio, not sysutils/libcdio-paranoia. Bump PORTREVISION for LIB_DEPENDS changes. Approved by: portmgr (build-fix blanket) MFH: 2019Q4 (build-fix blanket) Modified: head/audio/musicpd/Makefile Modified: head/audio/musicpd/Makefile ============================================================================== --- head/audio/musicpd/Makefile Tue Dec 10 17:16:31 2019 (r519762) +++ head/audio/musicpd/Makefile Tue Dec 10 17:20:06 2019 (r519763) @@ -2,7 +2,7 @@ PORTNAME= musicpd PORTVERSION= 0.21.16 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= https://www.musicpd.org/download/mpd/${PORTVERSION:R}/ DISTNAME= mpd-${PORTVERSION} @@ -159,7 +159,7 @@ SNDIO_LIB_DEPENDS= libsndio.so:audio/sndio # Input plugins CDPARANOIA_MESON_ENABLED= cdio_paranoia -CDPARANOIA_LIB_DEPENDS= libcdda_paranoia.so:audio/cdparanoia +CDPARANOIA_LIB_DEPENDS= libcdio_paranoia.so:sysutils/libcdio-paranoia CURL_MESON_ENABLED= curl CURL_LIB_DEPENDS= libcurl.so:ftp/curl MMS_MESON_ENABLED= mms @@ -171,7 +171,7 @@ SMB_USES= samba:lib ZZIP_MESON_ENABLED= zzip ZZIP_LIB_DEPENDS= libzzip.so:devel/zziplib ISO9660_MESON_ENABLED= iso9660 -ISO9660_LIB_DEPENDS= libcdio_paranoia.so:sysutils/libcdio-paranoia +ISO9660_LIB_DEPENDS= libiso9660.so:sysutils/libcdio # Database plugins SQLITE3_MESON_ENABLED= sqlite