SHA256
1
0
forked from pool/breeze
Hrvoje Senjan 2014-10-10 00:52:15 +00:00 committed by Git OBS Bridge
parent 39d6423717
commit 149ed1e0ea
3 changed files with 21 additions and 0 deletions

View File

@ -5,6 +5,9 @@ Thu Oct 9 21:24:26 UTC 2014 - hrvoje.senjan@gmail.com
* Bugfixes since RC1 * Bugfixes since RC1
* For more details please see: * For more details please see:
https://www.kde.org/announcements/plasma-5.1.0.php https://www.kde.org/announcements/plasma-5.1.0.php
- Added dark colorscheme and icontheme
- Added colorscheme.diff, renames filename of the dark colorscheme,
it causes issues when applying to kde4 settings
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Sep 25 22:45:25 UTC 2014 - hrvoje.senjan@gmail.com Thu Sep 25 22:45:25 UTC 2014 - hrvoje.senjan@gmail.com

View File

@ -45,6 +45,8 @@ Url: http://www.kde.org
#Source: http://download.kde.org/stable/plasma/%{version}/%{name}-%{version}.tar.xz #Source: http://download.kde.org/stable/plasma/%{version}/%{name}-%{version}.tar.xz
Source: %{name}-%{version}.tar.xz Source: %{name}-%{version}.tar.xz
Source99: %{name}-rpmlintrc Source99: %{name}-rpmlintrc
# PATCH-FIX-UPSTREAM colorscheme.diff -- rename filename of the dark colorscheme, it causes issues when applying to kde4 settings
Patch0: colorscheme.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description %description
@ -100,6 +102,7 @@ This package provides Breeze KWin decoration.
%lang_package -n breeze5-style %lang_package -n breeze5-style
%prep %prep
%setup -q %setup -q
%patch0 -p1
%build %build
%cmake_kf5 -d build -- -DBUILD_po=OFF -DCMAKE_INSTALL_LOCALEDIR=share/locale/kf5 %cmake_kf5 -d build -- -DBUILD_po=OFF -DCMAKE_INSTALL_LOCALEDIR=share/locale/kf5
@ -117,6 +120,7 @@ This package provides Breeze KWin decoration.
%defattr(-,root,root) %defattr(-,root,root)
%doc COPYING* %doc COPYING*
%{_kf5_sharedir}/icons/breeze/ %{_kf5_sharedir}/icons/breeze/
%{_kf5_sharedir}/icons/breeze-dark/
%files -n breeze5-cursors %files -n breeze5-cursors
%defattr(-,root,root) %defattr(-,root,root)

14
colorscheme.diff Normal file
View File

@ -0,0 +1,14 @@
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e2ec52a..e748958 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -25,7 +25,8 @@ else()
add_subdirectory(windec)
INSTALL(FILES colors/Breeze.colors DESTINATION ${DATA_INSTALL_DIR}/color-schemes/)
- INSTALL(FILES colors/Breeze-Dark.colors DESTINATION ${DATA_INSTALL_DIR}/color-schemes/)
+ INSTALL(FILES colors/Breeze-Dark.colors DESTINATION ${DATA_INSTALL_DIR}/color-schemes/ RENAME BreezeDark.colors)
+ INSTALL(FILES colors/BreezeLight.colors DESTINATION ${DATA_INSTALL_DIR}/color-schemes/)
endif()
feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES)