Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/vimpc/
Date: Wed, 17 Aug 2022 16:21:31
Message-Id: 1660753266.b7c99bf1f1e2a5b828cf94fef84177601d7a6837.mattst88@gentoo
1 commit: b7c99bf1f1e2a5b828cf94fef84177601d7a6837
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 17 13:48:45 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 17 16:21:06 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7c99bf1
7
8 media-sound/vimpc: Drop old versions
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 media-sound/vimpc/vimpc-0.09.2.ebuild | 42 -----------------------------------
13 1 file changed, 42 deletions(-)
14
15 diff --git a/media-sound/vimpc/vimpc-0.09.2.ebuild b/media-sound/vimpc/vimpc-0.09.2.ebuild
16 deleted file mode 100644
17 index e6968fffae96..000000000000
18 --- a/media-sound/vimpc/vimpc-0.09.2.ebuild
19 +++ /dev/null
20 @@ -1,42 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -inherit autotools
27 -
28 -DESCRIPTION="An ncurses based mpd client with vi-like key bindings"
29 -HOMEPAGE="https://github.com/boysetsfrog/vimpc"
30 -SRC_URI="https://github.com/boysetsfrog/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
31 -
32 -LICENSE="GPL-3"
33 -SLOT="0"
34 -KEYWORDS="amd64 x86"
35 -IUSE="boost taglib"
36 -
37 -RDEPEND="dev-libs/libpcre
38 - media-libs/libmpdclient
39 - boost? ( dev-libs/boost:= )
40 - taglib? ( media-libs/taglib )"
41 -DEPEND="${RDEPEND}"
42 -BDEPEND="virtual/pkgconfig"
43 -
44 -DOCS=( AUTHORS README.md doc/vimpcrc.example )
45 -
46 -src_prepare() {
47 - default
48 - eautoreconf
49 -}
50 -
51 -src_configure() {
52 - econf \
53 - $(use_enable boost) \
54 - $(use_enable taglib)
55 -}
56 -
57 -src_install() {
58 - default
59 -
60 - # vimpc will look for help.txt
61 - docompress -x /usr/share/doc/${PF}/help.txt
62 -}