diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-05-29 03:22:09 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-05-29 03:22:09 +0100 |
commit | d4bd6695641f6d2ec7ff8681913d304e995902f5 (patch) | |
tree | 6ec8d4c38152bb4f2bb4b93277236ebd9fbbd21d /x11-themes/adwaita-qt | |
parent | 22910f5d14da606bd7f06e19a2f61c5d1a8fc94b (diff) |
gentoo resync : 29.05.2018
Diffstat (limited to 'x11-themes/adwaita-qt')
-rw-r--r-- | x11-themes/adwaita-qt/Manifest | 1 | ||||
-rw-r--r-- | x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild | 42 |
2 files changed, 43 insertions, 0 deletions
diff --git a/x11-themes/adwaita-qt/Manifest b/x11-themes/adwaita-qt/Manifest index 80c0bb2416ec..6de1c26e91b0 100644 --- a/x11-themes/adwaita-qt/Manifest +++ b/x11-themes/adwaita-qt/Manifest @@ -1,3 +1,4 @@ DIST adwaita-qt-1.0.tar.gz 565625 BLAKE2B 73dba06dd785131d8bb949b5dcb195994d415e295b196228fd6145687431a3fd4984489c81322cfd1437fa8de3a97e41b30b49bba35baa30b379e02770b52928 SHA512 35993a9f99f9d41812d448d679a9e7a8cb15e8ed9b23a2ea9a33c61c1bfc98a226f8bea2fce3ff0dab29420ff10c4e4a4a800c9b989475cc66c4042257fe154c +EBUILD adwaita-qt-1.0-r1.ebuild 867 BLAKE2B b0a9426ea390e40a0d62f98fc7b510dcd9a50fc952feb2c1e1b1eb9e5fe0635f5a7e523c4133f8b587e46a5f84a47fc4d1fcfa700ad37f4356fbb4db3967a6e4 SHA512 af150f0a96aec0fc3a6c09752557ef09274185d1bd768c2d9b34fd20b51944425a0e14434184e91196383a32c8504fbbe9b8383436c06d4c29734f92fdfe82e5 EBUILD adwaita-qt-1.0.ebuild 1110 BLAKE2B dce229a37aec7ad01ea16be35b7bb90b090769d552582862105593e293889617b9b248c277b0b71aec72053c4c59b39f2be95805680bf10d143d4d24deadac13 SHA512 4b40f9327ddc18ab4158524c13701e3f69306519c9bcf6f901fbcc370d8bcf764e2c663f1ba215227076ccc6a796c1e025155324dccbc80431cd1bb20a123a28 MISC metadata.xml 216 BLAKE2B 0fbfa16661345362ff89f87adc0bb42fc5f5c9145cdedb36f3f537b39af4023b91c4dfb0d8e83a4f9ac963141f594ba8ae678371c338d992a96e02c11fd84195 SHA512 628a69805356b7458edaa2297901224178b016477a937f77e692a78ce3e7a0b6d2d7b4c4b7e70d0185d7112e6a59a5131e07d8c950e90b9c8722471d7511afc6 diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild b/x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild new file mode 100644 index 000000000000..e01fc3aea41e --- /dev/null +++ b/x11-themes/adwaita-qt/adwaita-qt-1.0-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit cmake-utils + +DESCRIPTION="A style to bend Qt applications to look like they belong into GNOME Shell" +HOMEPAGE="https://github.com/MartinBriza/adwaita-qt" +SRC_URI="https://github.com/MartinBriza/${PN}/archive/${PV}/${P}.tar.gz" + +KEYWORDS="~amd64 ~x86" +LICENSE="GPL-2 LGPL-2" +SLOT="0" + +IUSE="gnome" + +RDEPEND=" + gnome? ( x11-themes/QGnomePlatform ) + dev-qt/qtwidgets:5 + dev-qt/qtdbus:5 +" +DEPEND="${RDEPEND}" + +src_configure() { + BUILD_DIR="${WORKDIR}/${PN}_qt5" + local mycmakeargs=( -DUSE_QT4=OFF ) + cmake-utils_src_configure +} + +src_compile() { + local _d + for _d in "${WORKDIR}"/${PN}_qt*; do + cmake-utils_src_compile -C "${_d}" + done +} + +src_install() { + local _d + for _d in "${WORKDIR}"/${PN}_qt*; do + cmake-utils_src_install -C "${_d}" + done +} |