From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 76D5B138335 for ; Fri, 15 Feb 2019 23:07:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2A02DE089B; Fri, 15 Feb 2019 23:07:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 08013E088B for ; Fri, 15 Feb 2019 23:07:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D8FBD335CF4 for ; Fri, 15 Feb 2019 23:07:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CD381549 for ; Fri, 15 Feb 2019 23:07:51 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1550272053.dabf1489915c1df22bde8d55f4f6262404611505.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/vimpc/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/vimpc/metadata.xml media-sound/vimpc/vimpc-9999.ebuild X-VCS-Directories: media-sound/vimpc/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: dabf1489915c1df22bde8d55f4f6262404611505 X-VCS-Branch: master Date: Fri, 15 Feb 2019 23:07:51 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2ea35609-cbc5-41ad-8441-8a1e1ace25ec X-Archives-Hash: 3096a8b3b0a4087f9e581e82d1ef2588 commit: dabf1489915c1df22bde8d55f4f6262404611505 Author: Stefan Strogin gmail com> AuthorDate: Tue Jan 8 13:09:10 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Feb 15 23:07:33 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dabf1489 media-sound/vimpc: add live ebuild Package-Manager: Portage-2.3.54, Repoman-2.3.12 Signed-off-by: Stefan Strogin gmail.com> Closes: https://github.com/gentoo/gentoo/pull/10776 Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/vimpc/metadata.xml | 2 +- media-sound/vimpc/vimpc-9999.ebuild | 42 +++++++++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+), 1 deletion(-) diff --git a/media-sound/vimpc/metadata.xml b/media-sound/vimpc/metadata.xml index 936e40a0e75..ffbeaf1f8a3 100644 --- a/media-sound/vimpc/metadata.xml +++ b/media-sound/vimpc/metadata.xml @@ -9,6 +9,6 @@ Use boost instead of C++11 libraries - vimpc + boysetsfrog/vimpc diff --git a/media-sound/vimpc/vimpc-9999.ebuild b/media-sound/vimpc/vimpc-9999.ebuild new file mode 100644 index 00000000000..c019bc10618 --- /dev/null +++ b/media-sound/vimpc/vimpc-9999.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools git-r3 + +DESCRIPTION="An ncurses based mpd client with vi like key bindings" +HOMEPAGE="https://github.com/boysetsfrog/vimpc" +EGIT_REPO_URI="https://github.com/boysetsfrog/${PN}.git" + +LICENSE="GPL-3" +SLOT="0" +IUSE="boost taglib" + +RDEPEND="dev-libs/libpcre + media-libs/libmpdclient + boost? ( dev-libs/boost:= ) + taglib? ( media-libs/taglib )" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +DOCS=( AUTHORS README.md doc/vimpcrc.example ) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + $(use_enable boost) \ + $(use_enable taglib) \ + --docdir="${EPREFIX}"/usr/share/doc/${PF} +} + +src_install() { + default + + # vimpc will look for help.txt + docompress -x /usr/share/doc/${PF}/help.txt +}