From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B022813824A for ; Sun, 8 May 2016 16:28:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0093321C0AA; Sun, 8 May 2016 16:28:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4547121C0AA for ; Sun, 8 May 2016 16:28:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5C672340998 for ; Sun, 8 May 2016 16:28:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 753E795E for ; Sun, 8 May 2016 16:28:04 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1462724811.235cb0563c3bb04cab45b7182292594364c4b9c5.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/makemkv/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/makemkv/makemkv-1.9.10.ebuild X-VCS-Directories: media-video/makemkv/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 235cb0563c3bb04cab45b7182292594364c4b9c5 X-VCS-Branch: master Date: Sun, 8 May 2016 16:28:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 08b14c4b-063c-4985-a47c-fd070d3a03bd X-Archives-Hash: ffb99da3b9938d3d04e00e90526c92b1 commit: 235cb0563c3bb04cab45b7182292594364c4b9c5 Author: James Le Cuirot gentoo org> AuthorDate: Sun May 8 13:21:19 2016 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Sun May 8 16:26:51 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=235cb056 media-video/makemkv: Install everything to /usr, not some to /opt makemkvcon looks for files in ../share/MakeMKV. Installing them to /opt/share/MakeMKV is a bit weird and using /opt requires patching so it's not exactly supported by upstream. This means installing prebuilt binaries to /usr but we were previously having to install a freshly-built binary to /opt so we're screwing FHS either way. ;) Package-Manager: portage-2.2.28 media-video/makemkv/makemkv-1.9.10.ebuild | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/media-video/makemkv/makemkv-1.9.10.ebuild b/media-video/makemkv/makemkv-1.9.10.ebuild index 57fd31d..cb90134 100644 --- a/media-video/makemkv/makemkv-1.9.10.ebuild +++ b/media-video/makemkv/makemkv-1.9.10.ebuild @@ -20,7 +20,7 @@ KEYWORDS="~amd64 ~x86" IUSE="libav multilib qt4 qt5" REQUIRED_USE="?? ( qt4 qt5 )" -QA_PREBUILT="opt/bin/makemkvcon opt/bin/mmdtsdec" +QA_PREBUILT="usr/bin/makemkvcon usr/bin/mmdtsdec" DEPEND=" sys-libs/glibc[multilib?] @@ -116,7 +116,6 @@ src_install() { dosym libmakemkv.so.1 /usr/$(get_libdir)/libmakemkv.so dosym libmmbd.so.0 /usr/$(get_libdir)/libmmbd.so dosym libmmbd.so.0 /usr/$(get_libdir)/libmmbd.so.0.${PV} - into /opt if use qt4 || use qt5; then dobin out/makemkv @@ -165,9 +164,9 @@ pkg_postinst() { elog "Note that beta license may have an expiration date and you will" elog "need to check for newer licenses/releases. " elog "" - elog "If this is a new install, remember to copy the default profile" - elog "to the config directory:" - elog "cp /usr/share/MakeMKV/default.mmcp.xml ~/.MakeMKV/" + elog "We previously said to copy default.mmcp.xml to ~/.MakeMKV/. This" + elog "is no longer necessary and you should delete it from there to" + elog "avoid warning messages." elog "" elog "MakeMKV can also act as a drop-in replacement for libaacs and" elog "libbdplus, allowing transparent decryption of a wider range of"