From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1435309-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A7943158012 for <garchives@archives.gentoo.org>; Sat, 10 Sep 2022 14:30:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EC3F6E0874; Sat, 10 Sep 2022 14:30:00 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D4684E0874 for <gentoo-commits@lists.gentoo.org>; Sat, 10 Sep 2022 14:30:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5756733BE00 for <gentoo-commits@lists.gentoo.org>; Sat, 10 Sep 2022 14:29:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 48201560 for <gentoo-commits@lists.gentoo.org>; Sat, 10 Sep 2022 14:29:57 +0000 (UTC) From: "Efe İzbudak" <efe.izbudak@metu.edu.tr> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Efe İzbudak" <efe.izbudak@metu.edu.tr> Message-ID: <1662820158.a3e7d04222f16aab8946690efd595154b0851f91.efe.izbudak@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: www-client/vimb/ X-VCS-Repository: repo/proj/guru X-VCS-Files: www-client/vimb/vimb-3.6.0.ebuild X-VCS-Directories: www-client/vimb/ X-VCS-Committer: efe.izbudak X-VCS-Committer-Name: Efe İzbudak X-VCS-Revision: a3e7d04222f16aab8946690efd595154b0851f91 X-VCS-Branch: dev Date: Sat, 10 Sep 2022 14:29:57 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 22728aec-f0e0-474e-92f6-fc35c7121399 X-Archives-Hash: f62a41c0e386e3bda4874a1a2616c608 commit: a3e7d04222f16aab8946690efd595154b0851f91 Author: Efe İzbudak <efe.izbudak <AT> metu <DOT> edu <DOT> tr> AuthorDate: Sat Sep 10 14:28:28 2022 +0000 Commit: Efe İzbudak <efe.izbudak <AT> metu <DOT> edu <DOT> tr> CommitDate: Sat Sep 10 14:29:18 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a3e7d042 www-client/vimb: replace elog with optfeature Signed-off-by: Efe İzbudak <efe.izbudak <AT> metu.edu.tr> www-client/vimb/vimb-3.6.0.ebuild | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/www-client/vimb/vimb-3.6.0.ebuild b/www-client/vimb/vimb-3.6.0.ebuild index b822ec942..177a0dd03 100644 --- a/www-client/vimb/vimb-3.6.0.ebuild +++ b/www-client/vimb/vimb-3.6.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit savedconfig +inherit savedconfig optfeature DESCRIPTION="a fast, lightweight, vim-like browser based on webkit" HOMEPAGE="https://fanglingsu.github.io/vimb/" @@ -41,7 +41,5 @@ src_install() { } pkg_postinst() { - elog "For media decoding to work properly, you need to install:" - elog "media-plugins/gst-plugins-libav" - elog "media-libs/gst-plugins-good" + optfeature "media decoding support" media-plugins/gst-plugins-libav media-libs/gst-plugins-good }