diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2015-08-28 04:27:26 +0200 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2015-08-28 04:27:26 +0200 |
commit | 9c00412eb610b364c9d061c6147b7866e697786c (patch) | |
tree | c8fe3425813cb9337feb076bccb48c821b46d932 /app-editors | |
parent | app-editors/nano: Remove old (diff) | |
download | gentoo-9c00412eb610b364c9d061c6147b7866e697786c.tar.gz gentoo-9c00412eb610b364c9d061c6147b7866e697786c.tar.bz2 gentoo-9c00412eb610b364c9d061c6147b7866e697786c.zip |
app-editors/qwriter: EAPI bump
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/qwriter/qwriter-0.1.9-r1.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/app-editors/qwriter/qwriter-0.1.9-r1.ebuild b/app-editors/qwriter/qwriter-0.1.9-r1.ebuild new file mode 100644 index 000000000000..e61d58819c1a --- /dev/null +++ b/app-editors/qwriter/qwriter-0.1.9-r1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +LANGS="ru" + +inherit eutils qt4-r2 + +MY_P="${P}-src" + +DESCRIPTION="Advanced text editor with syntax highlighting" +HOMEPAGE="http://qt-apps.org/content/show.php/QWriter?content=106377" +#upstream failed to provide a sane url +SRC_URI="https://qwriter.googlecode.com/files/${MY_P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-qt/qtgui:4 + x11-libs/qscintilla" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + sed -i "s:languages:/usr/share/${PN}/languages:" src/MainWindow.cpp \ + || die "failed to fix translation path" + # gcc-4.7. Bug #425252 + epatch "${FILESDIR}"/${P}-gcc47.patch + qt4-r2_src_prepare +} + +src_install() { + dobin bin/${PN} + newicon images/w.png ${PN}.png + make_desktop_entry ${PN} QWriter ${PN} + insinto /usr/share/${PN}/languages/ + for x in ${LANGS};do + for j in ${LINGUAS};do + if [[ $x == $j ]]; then + doins languages/${PN}_$x.qm + fi + done + done +} |