Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/grip/
Date: Fri, 21 Aug 2020 07:57:26
Message-Id: 1597996635.4ad03854c0bba00955723fe69366343829103f4f.fordfrog@gentoo
1 commit: 4ad03854c0bba00955723fe69366343829103f4f
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 21 07:57:01 2020 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 21 07:57:15 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ad03854
7
8 media-sound/grip: bump to 4.2.0
9
10 Closes: https://bugs.gentoo.org/738254
11 Package-Manager: Portage-3.0.4, Repoman-3.0.1
12 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
13
14 media-sound/grip/Manifest | 1 +
15 media-sound/grip/grip-4.2.0.ebuild | 46 ++++++++++++++++++++++++++++++++++++++
16 2 files changed, 47 insertions(+)
17
18 diff --git a/media-sound/grip/Manifest b/media-sound/grip/Manifest
19 index b0ad66d4d2d..4e8c873b252 100644
20 --- a/media-sound/grip/Manifest
21 +++ b/media-sound/grip/Manifest
22 @@ -1 +1,2 @@
23 DIST grip-4.1.1.tar.gz 1211196 BLAKE2B 677ace9ef740db150a2cfc9b597b148b50015dda79cb41b53cd656451b038ff71d6efdf3e17bea65accc071ec0116c6025a7c9619cb09a3782eeb94904e431a9 SHA512 c6af48b0fa89fb342c73614c6193973811ccf72837a46eb1a3971ffcfa9a20bb4fb8705ba674b093e2c4f6f78f9ded323cf5453cdecf53c467238430f98ba267
24 +DIST grip-4.2.0.tar.gz 1209972 BLAKE2B 087118b0871b149745fa083f3eeaa79ac8c00c2b094a486cb9c5188e215dd7ce4cb06d13fb362914d7b688c89989e3b6b86ee889b4027e38b727876a06f06dd1 SHA512 26cb32064019da1d1683c44caa3c52ae513cec5b1fb435930e8e4c62433a70f14145d92f2215bf54a5bface96945d3e5e879302e2824029650d2a34218528e94
25
26 diff --git a/media-sound/grip/grip-4.2.0.ebuild b/media-sound/grip/grip-4.2.0.ebuild
27 new file mode 100644
28 index 00000000000..b6045a79ad7
29 --- /dev/null
30 +++ b/media-sound/grip/grip-4.2.0.ebuild
31 @@ -0,0 +1,46 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +inherit eutils flag-o-matic toolchain-funcs libtool xdg
37 +
38 +DESCRIPTION="GTK+ based Audio CD Player/Ripper"
39 +HOMEPAGE="https://sourceforge.net/projects/grip/"
40 +SRC_URI="mirror://sourceforge/grip/${P}.tar.gz"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
45 +IUSE="vorbis"
46 +
47 +# lame and vorbis-tools are no real RDEPENDs. But without them
48 +# grip cannot convert ripped files to any format. So use them as
49 +# a sane default.
50 +RDEPEND="
51 + dev-libs/glib:2
52 + media-libs/id3lib
53 + media-sound/cdparanoia
54 + media-sound/lame
55 + net-misc/curl
56 + x11-libs/gtk+:2
57 + x11-libs/libX11
58 + x11-libs/pango
59 + vorbis? ( media-sound/vorbis-tools )
60 +"
61 +# gnome-extra/yelp, see bug 416843
62 +DEPEND="
63 + ${RDEPEND}
64 + sys-devel/gettext
65 +"
66 +BDEPEND="
67 + virtual/pkgconfig
68 +"
69 +
70 +src_configure() {
71 + # Bug #69536
72 + [[ $(tc-arch) == "x86" ]] && append-flags "-mno-sse"
73 +
74 + strip-linguas be bg ca de en en_CA en_GB en_US es fi fr hu it ja nb nl pl_PL pt_BR ru sr vi zh_CN zh_HK zh_TW
75 +
76 + econf
77 +}