Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/smplayer-themes/
Date: Thu, 29 Oct 2015 17:48:08
Message-Id: 1446140871.8e93d8def981b18e27be7714f197947e36fd2810.kensington@gentoo
1 commit: 8e93d8def981b18e27be7714f197947e36fd2810
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 29 17:46:42 2015 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 29 17:47:51 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e93d8de
7
8 x11-themes/smplayer-themes: version bump
9
10 Also ensure that rcc is called from the correct directory (bug #544108) and fix
11 parallel build (bug #544160).
12
13 Package-Manager: portage-2.2.20.1
14
15 x11-themes/smplayer-themes/Manifest | 1 +
16 .../smplayer-themes/smplayer-themes-15.6.0.ebuild | 33 ++++++++++++++++++++++
17 2 files changed, 34 insertions(+)
18
19 diff --git a/x11-themes/smplayer-themes/Manifest b/x11-themes/smplayer-themes/Manifest
20 index 6995fb4..0d39aec 100644
21 --- a/x11-themes/smplayer-themes/Manifest
22 +++ b/x11-themes/smplayer-themes/Manifest
23 @@ -1,2 +1,3 @@
24 DIST smplayer-themes-14.12.0.tar.bz2 2660621 SHA256 2c520a678bfcfa8c9a6881d4612ce8fb5216abdf072d27fb3da362af316ae333 SHA512 b97c097c7bbbcc60878e9cf4306c08fb87b83da67763a965e9e21517fb02568e902cbc1c8739be3f54b7a5b398c49dc8ab81964b97140a64f34bcf8af9c39765 WHIRLPOOL bab1009ab6dfe693177a905a583454fd5614830c90c09f1a93832129342583efd8f6c4bce6c355e340e43062b06119fde1c5532136dd38cdadc72fe280603312
25 DIST smplayer-themes-14.9.0.tar.bz2 2094596 SHA256 66164c0edc8698e174844ebbb7047a2444f249c569029cdc3c04833bbfb73238 SHA512 2c6b96c2fc5029ee3d4d6cd1204788c89c712d69ca230ba335f7a988fab181df9b700d8ceee446a7ccb852bdfdc82106fdcbf38ca199fb881088f9efc1ae1d7c WHIRLPOOL f68a511793a4f6fd270ce2708e4bfe5a25ef26493f18e9b18f49d5c19cb80fcab2a37c8494c9e9eac263a978ebce64e4bdfc4c0af32c6551a9f5dc7b4b2584d5
26 +DIST smplayer-themes-15.6.0.tar.bz2 2903294 SHA256 3d64f4db3d5465230b995ef5140ca6716206b4479f15d7a4b52c5fd939b60138 SHA512 2381254851894386722e832c56b0b65d94465413c5ca49690d59f499e95a64cfb5067d705c1b27e0c27eefcab01863c945c3c619804a298a9e96fc3e23b2855e WHIRLPOOL a17a43bcede39441e47feedb66df417daa3db1c18b380dab9f941fbb15cfe2cc0754ce26eec0b469f15d6f49e5ab75372b55202fdefd4746f8429eb69cba983c
27
28 diff --git a/x11-themes/smplayer-themes/smplayer-themes-15.6.0.ebuild b/x11-themes/smplayer-themes/smplayer-themes-15.6.0.ebuild
29 new file mode 100644
30 index 0000000..01065b0
31 --- /dev/null
32 +++ b/x11-themes/smplayer-themes/smplayer-themes-15.6.0.ebuild
33 @@ -0,0 +1,33 @@
34 +# Copyright 1999-2015 Gentoo Foundation
35 +# Distributed under the terms of the GNU General Public License v2
36 +# $Id$
37 +
38 +EAPI=5
39 +
40 +inherit qmake-utils
41 +
42 +DESCRIPTION="Icon themes for smplayer"
43 +HOMEPAGE="http://smplayer.sourceforge.net/"
44 +SRC_URI="mirror://sourceforge/smplayer/${P}.tar.bz2"
45 +
46 +LICENSE="CC-BY-2.5 CC-BY-SA-2.5 CC-BY-SA-3.0 GPL-2 LGPL-3"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd"
49 +IUSE=""
50 +
51 +DEPEND="dev-qt/qtcore:4"
52 +RDEPEND="media-video/smplayer"
53 +
54 +src_prepare() {
55 + # bug 544108
56 + sed -i -e "s| rcc| \"$(qt4_get_bindir)\"/rcc|" themes/Makefile || die
57 +
58 + # bug 544160
59 + sed -i -e 's/make/$(MAKE)/' Makefile || die
60 +}
61 +
62 +src_install() {
63 + insinto /usr/share/smplayer
64 + doins -r themes
65 + dodoc Changelog README.txt
66 +}