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.
kde-misc/plasma-active-window-control: New package
Package-Manager: Portage-2.3.24, Repoman-2.3.6 Closes: gentoo#7071
- Loading branch information
1 parent
dda931b
commit e6c30a6
Showing
3 changed files
with
47 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST plasma-active-window-control-1.7.3.tar.gz 53994 BLAKE2B 9aabc42cee71aab9010674e1527a04aac94af9f9fd7756244ec4d8067a3a79332b88b83a93ce8b3b68ae341376a45ff586eafc653dd429c2cc30d82145770870 SHA512 ee6992aa9f1313b79d37b2f75823d3f68443d0de2a5fb428634089cad104652ab6101aa3667d5011da7fc57fbdd8ab168ab3d292190e93ae3412a8fad24bc9fe |
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,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Petros S</name> | ||
</maintainer> | ||
<maintainer type="project"> | ||
<email>[email protected]</email> | ||
<name>Gentoo KDE Project</name> | ||
</maintainer> | ||
</pkgmetadata> |
34 changes: 34 additions & 0 deletions
34
kde-misc/plasma-active-window-control/plasma-active-window-control-1.7.3.ebuild
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,34 @@ | ||
# Copyright 1999-2018 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
inherit cmake-utils kde5-functions | ||
|
||
DESCRIPTION="Plasma 5 applet for controlling currently active window" | ||
HOMEPAGE="https://store.kde.org/p/998910/" | ||
SRC_URI="https://github.com/kotelnik/plasma-applet-active-window-control/archive/v${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
KEYWORDS="~amd64 ~x86" | ||
LICENSE="GPL-2" | ||
SLOT="5" | ||
IUSE="" | ||
|
||
RDEPEND=" | ||
$(add_frameworks_dep kconfig) | ||
$(add_frameworks_dep kcoreaddons) | ||
$(add_frameworks_dep kwindowsystem) | ||
$(add_frameworks_dep plasma X) | ||
$(add_qt_dep qtcore) | ||
$(add_qt_dep qtdbus) | ||
$(add_qt_dep qtdeclarative) | ||
$(add_qt_dep qtgui) | ||
$(add_qt_dep qtwidgets) | ||
$(add_qt_dep qtx11extras) | ||
" | ||
DEPEND="${RDEPEND} | ||
$(add_frameworks_dep extra-cmake-modules) | ||
" | ||
|
||
#ebuilds for releases > 1.7.3 will be copied from live ebuild | ||
S="${WORKDIR}/plasma-applet-active-window-control-${PV}" |