forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-sound/grip: Bump to version 3.4.2
Package-Manager: Portage-2.3.6, Repoman-2.3.2
- Loading branch information
Lars Wendler
committed
Jun 9, 2017
1 parent
63b9d30
commit 296bb98
Showing
2 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST grip-3.3.1.tar.gz 812562 SHA256 d46394a1062ed066f9c633b010fd1059e63d9ed791bbb7a85bc6567cf0fd66fd SHA512 380e36cb4e58180e543e1d293d38108f4879842ed63106da875e00747e98c2c06da1e706cfaf4ff26f481bba0ca941eb1201f430de04b0f313b1307ddd7e88d3 WHIRLPOOL 7e085bf45cf1031e5dce295c8d34682937c9abe1b74119103f418e598e1b835c9ce22533e603384099512e139c15963ab31b3eb73aa088bd698281cf507bf3de | ||
DIST grip-3.4.0.tar.gz 721897 SHA256 8433f9adce7bee19d446af81054e0cd149a0aba413026a78f890413e36c5e784 SHA512 2e8ace9e61a2504cedc3de9dc3739c225717d928bdbdb6375310306cbb73ba1e8aebb9867fcea298405114105cd4ad23bf4716c855707bd26dc0e12420da31c3 WHIRLPOOL 863d14a9428206457c21b565494e22b87a595f2fc4397725b1a6966e31e053818467ace0723986f58d565a392af3d757309f62e5adf8bc947fb7863cbe0f297b | ||
DIST grip-3.4.1.tar.gz 739667 SHA256 cb929b19298e4bf8bab6fd6ea79ee31aa61ca54946ec1c60b2349fa1dd935e4b SHA512 e51541dba5461bdd59d2a9a046342454ea75f9150146b11bb343e0cffb80c05dda29df3cb326e68821e3505b69d2edbe9448ec6d15306d98b4707d180f00a52f WHIRLPOOL d7431bab88a85cd39c75689d728b9af22a88708564eeeaca635262380f818376c41466b45f4508c14c94e9eb60b81b9b1401f5bf22a9369742e73448c54d3945 | ||
DIST grip-3.4.2.tar.gz 740771 SHA256 037db9da84d4794f69fc4d76b147b71b32e6f427c80fa42668beb17c5d0213da SHA512 b6b1679b1011d5c081c7918ac8dc32b31f6fb6f2c5aff9f176e155583fa7e8a4eaffeaa31306d69d23bc5436dc5a49eba31537f399c7c7630fbaede1d5916df8 WHIRLPOOL fe6e2f9f92835bf406e04883d7183eff463aedbb5882f0410218bbcd40edb878bf6c2176b88ac1c9640206404c0b8d1e7dfb3b224d700f295911b5542c82f0cc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
inherit eutils flag-o-matic toolchain-funcs libtool | ||
|
||
DESCRIPTION="GTK+ based Audio CD Player/Ripper" | ||
HOMEPAGE="https://sourceforge.net/projects/grip/" | ||
SRC_URI="mirror://sourceforge/grip/${P}.tar.gz" | ||
|
||
LICENSE="GPL-2" | ||
SLOT="0" | ||
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" | ||
IUSE="vorbis" | ||
|
||
# lame and vorbis-tools are no real RDEPENDs. But without them | ||
# grip cannot convert ripped files to any format. So use them as | ||
# a sane default. | ||
RDEPEND=" | ||
gnome-base/libgnome | ||
>=gnome-base/libgnomeui-2.2.0 | ||
>=media-libs/id3lib-3.8.3 | ||
media-sound/cdparanoia | ||
media-sound/lame | ||
net-misc/curl | ||
>=x11-libs/gtk+-2.2:2 | ||
x11-libs/libX11 | ||
x11-libs/pango | ||
x11-libs/vte:0 | ||
vorbis? ( media-sound/vorbis-tools ) | ||
" | ||
# gnome-extra/yelp, see bug 416843 | ||
DEPEND=" | ||
${RDEPEND} | ||
sys-devel/gettext | ||
virtual/pkgconfig | ||
" | ||
|
||
src_prepare() { | ||
default | ||
|
||
sed '/^Icon/s@grip\b@gripicon@' -i grip.desktop || die | ||
} | ||
|
||
src_configure() { | ||
# Bug #69536 | ||
[[ $(tc-arch) == "x86" ]] && append-flags "-mno-sse" | ||
|
||
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 | ||
|
||
econf | ||
} |