diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2016-06-18 22:48:01 +0300 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2016-06-18 22:48:01 +0300 |
commit | e3659127f1d87ce2b45161c927857d3a09cb9410 (patch) | |
tree | 4793e4e84689b0953442142c99291dfd8f4d3e57 /x11-misc/outwiker/outwiker-2.0.0.794.ebuild | |
parent | net-misc/xrdp: Wipe invalid := deps (diff) | |
download | gentoo-e3659127f1d87ce2b45161c927857d3a09cb9410.tar.gz gentoo-e3659127f1d87ce2b45161c927857d3a09cb9410.tar.bz2 gentoo-e3659127f1d87ce2b45161c927857d3a09cb9410.zip |
x11-misc/outwiker: version bump
Unstable version, WIP, causes crashes inside wxwidgets stuff
Gentoo-Bug: 584170
Package-Manager: portage-2.3.0_rc1
Diffstat (limited to 'x11-misc/outwiker/outwiker-2.0.0.794.ebuild')
-rw-r--r-- | x11-misc/outwiker/outwiker-2.0.0.794.ebuild | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/x11-misc/outwiker/outwiker-2.0.0.794.ebuild b/x11-misc/outwiker/outwiker-2.0.0.794.ebuild new file mode 100644 index 000000000000..6c24160788b1 --- /dev/null +++ b/x11-misc/outwiker/outwiker-2.0.0.794.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 ) +inherit eutils python-r1 + +DESCRIPTION="The tree notes organizer" +HOMEPAGE="http://jenyay.net/Outwiker/English" +SRC_URI="https://github.com/Jenyay/${PN}/archive/unstable_${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="" # Keywords are dropped, cause this version cause a LOT of crashes + +DEPEND="${PYTHON_DEPS}" +RDEPEND="${DEPEND} + dev-python/pyenchant[${PYTHON_USEDEP}] + dev-python/pillow[${PYTHON_USEDEP}] + dev-python/wxpython:3.0[${PYTHON_USEDEP}] + x11-libs/wxGTK:3.0[webkit] + x11-misc/xdg-utils + x11-themes/hicolor-icon-theme +" + +S="${WORKDIR}/${PN}-unstable_${PV}" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +src_prepare() { + # fix desktop file + sed -i -e 's/Application;//' need_for_build/debian_debsource/outwiker.desktop || die 'sed on outwiker.desktop failed' + + eapply_user +} + +src_compile() { :; } + +src_install() { + # Do not install tests + rm -r src/test* + + insinto "/usr/share/${PN}" + doins -r src/* + dobin "need_for_build/debian_debsource/${PN}" + + domenu "need_for_build/debian_debsource/${PN}.desktop" + dodoc README README.md + + # Install mans + doman need_for_build/debian_debsource/man/man1/${PN}.1 + insinto /usr/share/man/ru/man1 + doins need_for_build/debian_debsource/man/ru/man1/${PN}.1 + + # Install icons + doicon "images/${PN}.xpm" + newicon -s scalable "images/${PN}.svg" "${PN}.svg" + for i in 16 22 24 32 48 64 128 256; do + newicon -s $i "images/${PN}_$i.png" "${PN}.png" + done +} |