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, 26 May 2016 12:39:13
Message-Id: 1464266337.c129f63f3918d4067b4aff772c6d8c015f72ce69.kensington@gentoo
1 commit: c129f63f3918d4067b4aff772c6d8c015f72ce69
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 26 12:38:46 2016 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Thu May 26 12:38:57 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c129f63f
7
8 x11-themes/smplayer-themes: version bump
9
10 Package-Manager: portage-2.3.0_rc1
11
12 x11-themes/smplayer-themes/Manifest | 1 +
13 .../smplayer-themes/smplayer-themes-16.5.2.ebuild | 36 ++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/x11-themes/smplayer-themes/Manifest b/x11-themes/smplayer-themes/Manifest
17 index 38c8196..9285af0 100644
18 --- a/x11-themes/smplayer-themes/Manifest
19 +++ b/x11-themes/smplayer-themes/Manifest
20 @@ -1,2 +1,3 @@
21 DIST smplayer-themes-14.9.0.tar.bz2 2094596 SHA256 66164c0edc8698e174844ebbb7047a2444f249c569029cdc3c04833bbfb73238 SHA512 2c6b96c2fc5029ee3d4d6cd1204788c89c712d69ca230ba335f7a988fab181df9b700d8ceee446a7ccb852bdfdc82106fdcbf38ca199fb881088f9efc1ae1d7c WHIRLPOOL f68a511793a4f6fd270ce2708e4bfe5a25ef26493f18e9b18f49d5c19cb80fcab2a37c8494c9e9eac263a978ebce64e4bdfc4c0af32c6551a9f5dc7b4b2584d5
22 DIST smplayer-themes-15.12.0.tar.bz2 3229694 SHA256 bd30b4cee576c4b1e4e8b59c986f93f2c2d150554d3eedb6e1dd37aa2e0fd110 SHA512 27fa91ed878c5b69d6d80ea90be15360a1224ff14e3828d71a9dccb8fbea10158377b1149c80e3260033a7d99a02586881ba2a57dc0e2b07cdacf26ae9c03ba5 WHIRLPOOL 2e13c3f1f244cdac3e58edfe3e9bb228927b3e7b28ed64360b1cd66fd36a6444be922054c4d2e9f208c83a0c79899a94e2a64d9ab3b2972fa2b82a7aea417e2f
23 +DIST smplayer-themes-16.5.2.tar.bz2 3647376 SHA256 8e574b79559b2e6a6347fff496ac1f3a878e4fa23d47582b7f8d903f87ab3f86 SHA512 f86131e624409c285d8f374c332b326378ee608b398e58c1c6440876735130d78386f652f37909abd2d89c5c80ea68253d36b69cd1681e8afde0b47767a8bfb1 WHIRLPOOL 3aa24b896e7bd356a5ec00e40a68a1745780f3dfd7f22208be5121e9a61d9516ab141b8a8e4e8a125b77830611f5ad9e75eeeefbc2e4a3b977b65445d48ece2e
24
25 diff --git a/x11-themes/smplayer-themes/smplayer-themes-16.5.2.ebuild b/x11-themes/smplayer-themes/smplayer-themes-16.5.2.ebuild
26 new file mode 100644
27 index 0000000..06850d8
28 --- /dev/null
29 +++ b/x11-themes/smplayer-themes/smplayer-themes-16.5.2.ebuild
30 @@ -0,0 +1,36 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=6
36 +
37 +inherit qmake-utils
38 +
39 +DESCRIPTION="Icon themes for smplayer"
40 +HOMEPAGE="http://www.smplayer.eu/"
41 +SRC_URI="mirror://sourceforge/smplayer/${P}.tar.bz2"
42 +
43 +LICENSE="CC-BY-2.5 CC-BY-SA-2.5 CC-BY-SA-3.0 CC0-1.0 GPL-2 GPL-3+ LGPL-3"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd"
46 +IUSE=""
47 +
48 +DEPEND="dev-qt/qtcore:4"
49 +RDEPEND="media-video/smplayer"
50 +
51 +src_prepare() {
52 + default
53 +
54 + # bug 544108
55 + sed -i -e "s| rcc| \"$(qt4_get_bindir)\"/rcc|" themes/Makefile || die
56 +
57 + # bug 544160
58 + sed -i -e 's/make/$(MAKE)/' Makefile || die
59 +}
60 +
61 +src_install() {
62 + rm themes/Makefile themes/H2O/Makefile || die
63 + insinto /usr/share/smplayer
64 + doins -r themes
65 + dodoc Changelog README.txt
66 +}