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.
media-gfx/symboleditor: version bump
Package-Manager: portage-2.2.26
- Loading branch information
1 parent
c874a5c
commit fe0082e
Showing
2 changed files
with
50 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 +1,2 @@ | ||
DIST SymbolEditor-1.5.0-1.tar.bz2 779158 SHA256 707da2874dcd08101b218b7a60f1ec3ed5ba056d6221a1dd472821737c545db0 SHA512 5fe18b649ed78e6ab3c61ce80a0b159941a65065801cdc6a44f1187aa40a2816cbc7888ea9e120cad8089e3e8e7831cedfd3242de5092cea58eb5cf898de022c WHIRLPOOL b3219bd30fbf993b7bd1c998e068e9f462ce312d0e6038b7706324b15810a9a1933ddedf39e6c33ac92deb2d38802807c1c3094fd1733321248b4362a22749e5 | ||
DIST SymbolEditor-2.0.0.tar.bz2 544789 SHA256 7cf3ea3acae9bcbe1291526e8e3819d0707a2f288d33cfe22913ec7f894d6e14 SHA512 8baee88fd8ff5f2b6334e80fe7c3fe8044ae521e5a8ffa2588f37dc4a8bf0495c902789bfaaed21a6eaf3c4f6380d18550aaed8046e84b396317104c8a49c993 WHIRLPOOL ac6ec72c1d27ff55774378a384cebe2c5477af8093508e619036309993ec810bc918f68c9cb9a892498ea5afc51e1e22229a8ab77ee3388f8d59755b464813cd |
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,49 @@ | ||
# Copyright 1999-2015 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
KDE_DOXYGEN="true" | ||
KDE_HANDBOOK="true" | ||
inherit kde5 | ||
|
||
DESCRIPTION="Application to create libraries of QPainterPath objects with redering hints" | ||
HOMEPAGE="https://userbase.kde.org/SymbolEditor" | ||
if [[ ${KDE_BUILD_TYPE} != live ]]; then | ||
MY_P=SymbolEditor-${PV} | ||
SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${MY_P}.tar.bz2" | ||
S="${WORKDIR}"/${MY_P} | ||
fi | ||
|
||
LICENSE="GPL-2" | ||
KEYWORDS="~amd64" | ||
IUSE="" | ||
|
||
COMMON_DEPEND=" | ||
$(add_frameworks_dep kconfig) | ||
$(add_frameworks_dep kconfigwidgets) | ||
$(add_frameworks_dep kcoreaddons) | ||
$(add_frameworks_dep ki18n) | ||
$(add_frameworks_dep kio) | ||
$(add_frameworks_dep kwidgetsaddons) | ||
$(add_frameworks_dep kxmlgui) | ||
dev-qt/qtgui:5 | ||
dev-qt/qtwidgets:5 | ||
" | ||
DEPEND="${COMMON_DEPEND} | ||
sys-devel/gettext | ||
x11-misc/shared-mime-info | ||
" | ||
RDEPEND="${COMMON_DEPEND} | ||
!media-gfx/symboleditor:4 | ||
" | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
$(cmake-utils_use_find_package doc Doxygen) | ||
$(cmake-utils_use_find_package handbook KF5DocTools) | ||
) | ||
|
||
kde5_src_configure | ||
} |