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.
x11-themes/smplayer-themes: version bump 17.3.0
Package-Manager: Portage-2.3.5, Repoman-2.3.2
- Loading branch information
Michael Palimaka
committed
Jun 4, 2017
1 parent
02d12d3
commit 8a1d61b
Showing
2 changed files
with
36 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 smplayer-themes-15.12.0.tar.bz2 3229694 SHA256 bd30b4cee576c4b1e4e8b59c986f93f2c2d150554d3eedb6e1dd37aa2e0fd110 SHA512 27fa91ed878c5b69d6d80ea90be15360a1224ff14e3828d71a9dccb8fbea10158377b1149c80e3260033a7d99a02586881ba2a57dc0e2b07cdacf26ae9c03ba5 WHIRLPOOL 2e13c3f1f244cdac3e58edfe3e9bb228927b3e7b28ed64360b1cd66fd36a6444be922054c4d2e9f208c83a0c79899a94e2a64d9ab3b2972fa2b82a7aea417e2f | ||
DIST smplayer-themes-16.8.0.tar.bz2 3938703 SHA256 cffd26e217596f55ea6ef1749597676cc3525daf19c60e47c29333ceeb23f174 SHA512 e15663cad1eb3028f3e278fc8253f3835879e7a5277ac847d46d646a7c5f848e0994f22ec421f158225a8d8d7d5a0c04bb686ac33d802e663e671277b304967f WHIRLPOOL a9948363f1b9945fc4f53cbedf9bf93a9617dd50c5abad22ba3b9a92792d6a7c93e9334f7cff6bb13f0f85fc165de38da8218e90481f4dbd6545e4cdead3cb61 | ||
DIST smplayer-themes-17.2.0.tar.bz2 3944177 SHA256 e7a54b1f165fdec8b46b3dae154e7e6b1a94296ad1acced2bd95567a2ff66e8c SHA512 c2ca64aed6feda30de2be62f1ced99122cc92506c086dbb2a8f9b8a5a6b0f9d6bb3c85dfa43be0dea848f8e2d094115de1acf75da3c23ecf8d46d3685d22e4ba WHIRLPOOL 3103957da5ee10a39097576853a833261147982e8835556a47f8828c556891417afc9c7dc1a1275781d94a7d43dd334b0d6142ed58494e9b0a83240fa771efa9 | ||
DIST smplayer-themes-17.3.0.tar.bz2 3480857 SHA256 d1b89be79eda5f13bab4cda3ff9fae1253de69bed4896910698d20170ff658cd SHA512 99f320fdd6934b377da7f39486489e8c5f6f2c76168b06a58ef4b019689da87fe7474ba59d0653e1ec8f2e2e075c1e9af06c09b6a3bc7a416f8c328a47e495fe WHIRLPOOL 3895cfb56d04ca8837171953618658ddec3936063fa4904abac925989e28195fb6fc3596bf62025fd974cb11d408a7d3d927f654f669ee57d69b973d47fd0497 |
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,35 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
inherit qmake-utils | ||
|
||
DESCRIPTION="Icon themes for smplayer" | ||
HOMEPAGE="http://www.smplayer.eu/" | ||
SRC_URI="mirror://sourceforge/smplayer/${P}.tar.bz2" | ||
|
||
LICENSE="CC-BY-2.5 CC-BY-SA-2.5 CC-BY-SA-3.0 CC0-1.0 GPL-2 GPL-3+ LGPL-3" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd" | ||
IUSE="" | ||
|
||
DEPEND="dev-qt/qtcore:5" | ||
RDEPEND="media-video/smplayer" | ||
|
||
src_prepare() { | ||
default | ||
|
||
# bug 544108 | ||
sed -i -e "s| rcc| \"$(qt5_get_bindir)\"/rcc|" themes/Makefile || die | ||
|
||
# bug 544160 | ||
sed -i -e 's/make/$(MAKE)/' Makefile || die | ||
} | ||
|
||
src_install() { | ||
rm themes/Makefile || die | ||
insinto /usr/share/smplayer | ||
doins -r themes | ||
dodoc Changelog README.txt | ||
} |