Skip to content

Commit

Permalink
FL-2128: change default theme to Light for LXQT, should resolve broke…
Browse files Browse the repository at this point in the history
…n UI.
  • Loading branch information
Oleg Vinichenko committed Mar 5, 2015
1 parent 77cfadc commit 5e577e6
Show file tree
Hide file tree
Showing 6 changed files with 123 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lxqt-base/lxqt-common/Manifest
@@ -0,0 +1,4 @@
DIST lxqt-common-0.7.0.tar.xz 5145600 SHA256 ca4b4ea0d8d6c34e7f42621c23d180ed8abdf834c944309917a09bf950123c51 SHA512 7cec49d8ad94ac1747e484f104b335fb159cd238452f395cb502a245015f7d15f8f6c9dbfd330d99078a873cc6d4b9b01a171cdc858815763499fb7d8863c87f WHIRLPOOL 51b9c5b0d33a112452fca0aa03b75b1393f04181c1e90d5f48ef9ee0195b5706dbe4e4b4b29369e47e0f33754e6d7d779f167f3563f00895d8647ea5c61cc206
DIST lxqt-common-0.8.0.tar.xz 8364588 SHA256 c1a4b38e296ee698186065a722fd11f02367d7a29ffe9cbc377a9157222d9019 SHA512 c7d5087917abb01c5a9038166ef6079e46b14586b74940470d47ecb026abaca1452ad0b2c8bc0cecd4c5ec5bcc604bac16a23372d0e3cff178fdeeebc829f9f5 WHIRLPOOL f65ccebb5e149db719a957485c5ce5dcf4405dd3e3d67aa6e9e6f6d0eb0034e428c2c73c11981576e9cd2f3a53d4db5836906cb20c66b90f707511d1f08e743c
DIST lxqt-common-0.9.0.tar.xz 4052144 SHA256 495e0015443c6e8564902059413d88e0c8cb632e2b7c0b2e519eb3cd77180b99 SHA512 6ba081e2dbbc2a111ce78276da0cdf09849255705bcbd30bb0b676e001c43126450626e4aee15700a046931bc4a7e5ef1aa31a44d26425e2d1d539e4c7d6a33d WHIRLPOOL 75d19225f6f530a1526a283e4ac7a93cfb54abae07bcc3ff55279a5d7446db7e98f657738c01f76652728f98a87e3b2c018c18c81bf05d4f6cabeb97e6e4ff83
DIST lxqt-common-0.9.1.tar.xz 3986904 SHA256 6e572cb10a1619dcfd51bdd33802a71d4556a55ece0bc781c1cb41d972e5734d SHA512 e59ef082e7a78d03c97e3316b2e4aad1e5a7db453cafaec143a0502adfdf0f183a0ff79e4c2e7448fd2b9c9b161a1df0ec849c51cb55a23ca970535aec0d6a1a WHIRLPOOL 1d2c10bfdca7bf95acc2c5af71b57dc5f60a81fa143cc9f83c2f429fa48c28842226aa593b24f870e6f312294d1ed937c05fe69e1e0b962e833bba3f6eaaaa77
10 changes: 10 additions & 0 deletions lxqt-base/lxqt-common/files/lxqt-common-0.9.1-theme.patch
@@ -0,0 +1,10 @@
diff -Nuar lxqt-common-0.9.1/config/lxqt.conf lxqt-common-0.9.1-fix/config/lxqt.conf
--- lxqt-common-0.9.1/config/lxqt.conf 2015-02-14 13:42:58.000000000 +0000
+++ lxqt-common-0.9.1-fix/config/lxqt.conf 2015-03-05 12:39:56.068137644 +0000
@@ -1,5 +1,5 @@
[General]
-theme=frost
+theme=light
icon_theme=oxygen
single_click_activate=false
tool_button_style=ToolButtonTextBesideIcon
33 changes: 33 additions & 0 deletions lxqt-base/lxqt-common/lxqt-common-0.7.0.ebuild
@@ -0,0 +1,33 @@
# Distributed under the terms of the GNU General Public License v2

EAPI=5
inherit cmake-utils

DESCRIPTION="LXQt common resources"
HOMEPAGE="http://lxqt.org/"

if [[ ${PV} = *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="git://git.lxde.org/git/lxde/${PN}.git"
else
SRC_URI="http://downloads.lxqt.org/lxqt/lxqt/${PV}/${P}.tar.xz"
KEYWORDS="~*"
fi

LICENSE="LGPL-2.1+"
SLOT="0"

S=${WORKDIR}

DEPEND="~lxqt-base/liblxqt-${PV}
dev-qt/qtcore:4
dev-qt/qtgui:4
dev-qt/qtsvg:4"
RDEPEND="${DEPEND}"
PDEPEND="~lxqt-base/lxqt-session-${PV}"

src_install() {
cmake-utils_src_install
dodir "/etc/X11/Sessions"
dosym "/usr/bin/startlxqt" "/etc/X11/Sessions/lxqt"
}
35 changes: 35 additions & 0 deletions lxqt-base/lxqt-common/lxqt-common-0.8.0.ebuild
@@ -0,0 +1,35 @@
# Distributed under the terms of the GNU General Public License v2

EAPI=5
inherit cmake-utils

DESCRIPTION="LXQt common resources"
HOMEPAGE="http://lxqt.org/"

if [[ ${PV} = *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="git://git.lxde.org/git/lxde/${PN}.git"
else
SRC_URI="http://downloads.lxqt.org/lxqt/lxqt/${PV}/${P}.tar.xz"
KEYWORDS="~*"
fi

LICENSE="LGPL-2.1+"
SLOT="0"

DEPEND="~lxqt-base/liblxqt-${PV}"
RDEPEND="${DEPEND}"
PDEPEND="~lxqt-base/lxqt-session-${PV}"

src_configure() {
local mycmakeargs=(
-DUSE_QT5=ON
)
cmake-utils_src_configure
}

src_install() {
cmake-utils_src_install
dodir "/etc/X11/Sessions"
dosym "/usr/bin/startlxqt" "/etc/X11/Sessions/lxqt"
}
32 changes: 32 additions & 0 deletions lxqt-base/lxqt-common/lxqt-common-0.9.1.ebuild
@@ -0,0 +1,32 @@
# Distributed under the terms of the GNU General Public License v2

EAPI=5
inherit eutils cmake-utils

DESCRIPTION="LXQt common resources"
HOMEPAGE="http://lxqt.org/"

if [[ ${PV} = *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="git://git.lxde.org/git/lxde/${PN}.git"
else
SRC_URI="http://downloads.lxqt.org/lxqt/${PV}/${P}.tar.xz"
KEYWORDS="~*"
fi

LICENSE="LGPL-2.1+"
SLOT="0"

DEPEND=">=lxqt-base/liblxqt-0.9.0"
RDEPEND="${DEPEND}"
PDEPEND=">=lxqt-base/lxqt-session-0.9.0"

src_prepare() {
epatch "${FILESDIR}"/${P}-theme.patch
}

src_install() {
cmake-utils_src_install
dodir "/etc/X11/Sessions"
dosym "/usr/bin/startlxqt" "/etc/X11/Sessions/lxqt"
}
9 changes: 9 additions & 0 deletions lxqt-base/lxqt-common/metadata.xml
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>lxqt</herd>
<maintainer>
<email>jauhien@gentoo.org</email>
<name>Jauhien Piatlicki</name>
</maintainer>
</pkgmetadata>

0 comments on commit 5e577e6

Please sign in to comment.