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: Tue, 29 Nov 2022 09:06:03
Message-Id: 1669712757.96f50bf8816769fb030dd94ade19de5a2b216a95.fordfrog@gentoo
1 commit: 96f50bf8816769fb030dd94ade19de5a2b216a95
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 29 09:05:42 2022 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 29 09:05:57 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96f50bf8
7
8 media-sound/grip: bump to 4.2.4
9
10 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
11
12 media-sound/grip/Manifest | 1 +
13 media-sound/grip/grip-4.2.4.ebuild | 47 ++++++++++++++++++++++++++++++++++++++
14 2 files changed, 48 insertions(+)
15
16 diff --git a/media-sound/grip/Manifest b/media-sound/grip/Manifest
17 index c254c90a85fd..6b643ff86859 100644
18 --- a/media-sound/grip/Manifest
19 +++ b/media-sound/grip/Manifest
20 @@ -1 +1,2 @@
21 DIST grip-4.2.3.tar.gz 1210695 BLAKE2B d4b5cde336fd9db3a68d6ded2375d12c0ac42af86b34067d5eb4b3356bead13e3c5fe967a7932ae9f4be418dbf5136a889fecc0362bf453f4b1d92193013f739 SHA512 05b66c363af31835e534547ae5dcb21340a7b3a824e46b337b511a8ddd0bbd161ab16470b658eb1df3887838b391d71702069da9207160a692e1a8ebae0d52e0
22 +DIST grip-4.2.4.tar.gz 1212479 BLAKE2B 58203a4faca90e8662347a5f67b7e026c2235ed53c5dbfe351faf4027608eb9e9c7b106907f2abb0dfffd4d01da33eeb334d2500c7f359314c003dc881e1a863 SHA512 fdc2808b91df617f4d2447114037c31bd5fa0657aa4ea2453e644b155468971c65a364bb0a3c6ed8ff2ba0e44e7117a51bec3081c7defd590f9fbc802a216bf5
23
24 diff --git a/media-sound/grip/grip-4.2.4.ebuild b/media-sound/grip/grip-4.2.4.ebuild
25 new file mode 100644
26 index 000000000000..09c22db206c4
27 --- /dev/null
28 +++ b/media-sound/grip/grip-4.2.4.ebuild
29 @@ -0,0 +1,47 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +inherit flag-o-matic toolchain-funcs xdg strip-linguas
35 +
36 +DESCRIPTION="GTK+ based Audio CD Player/Ripper"
37 +HOMEPAGE="https://sourceforge.net/projects/grip/"
38 +SRC_URI="mirror://sourceforge/grip/${P}.tar.gz"
39 +
40 +LICENSE="GPL-2"
41 +SLOT="0"
42 +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
43 +IUSE="vorbis"
44 +
45 +# lame and vorbis-tools are no real RDEPENDs. But without them
46 +# grip cannot convert ripped files to any format. So use them as
47 +# a sane default.
48 +RDEPEND="
49 + !app-text/grip
50 + dev-libs/glib:2
51 + media-libs/id3lib
52 + media-sound/cdparanoia
53 + media-sound/lame
54 + net-misc/curl
55 + x11-libs/gtk+:2
56 + x11-libs/libX11
57 + x11-libs/pango
58 + vorbis? ( media-sound/vorbis-tools )
59 +"
60 +# gnome-extra/yelp, see bug 416843
61 +DEPEND="
62 + ${RDEPEND}
63 + sys-devel/gettext
64 +"
65 +BDEPEND="
66 + virtual/pkgconfig
67 +"
68 +
69 +src_configure() {
70 + # Bug #69536
71 + [[ $(tc-arch) == "x86" ]] && append-flags "-mno-sse"
72 +
73 + 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
74 +
75 + econf
76 +}