diff options
author | 2012-02-20 22:06:18 +0000 | |
---|---|---|
committer | 2012-02-20 22:06:18 +0000 | |
commit | d96fd230fcea52c74afd5ac610dfa7941ff8079d (patch) | |
tree | 1551a80e8c3b9790e6225eee1a4e772f67f0da9e /app-editors | |
parent | mask out bad nvidia-settings which installs things over the top of nvidia-dri... (diff) | |
download | gentoo-2-d96fd230fcea52c74afd5ac610dfa7941ff8079d.tar.gz gentoo-2-d96fd230fcea52c74afd5ac610dfa7941ff8079d.tar.bz2 gentoo-2-d96fd230fcea52c74afd5ac610dfa7941ff8079d.zip |
version bump
(Portage version: 2.2.0_alpha85/cvs/Linux x86_64)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/qxmledit/ChangeLog | 7 | ||||
-rw-r--r-- | app-editors/qxmledit/qxmledit-0.7.2.ebuild | 49 |
2 files changed, 55 insertions, 1 deletions
diff --git a/app-editors/qxmledit/ChangeLog b/app-editors/qxmledit/ChangeLog index b3f70b8c96be..8cd66fd84365 100644 --- a/app-editors/qxmledit/ChangeLog +++ b/app-editors/qxmledit/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-editors/qxmledit # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/qxmledit/ChangeLog,v 1.20 2012/02/17 11:15:23 johu Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/qxmledit/ChangeLog,v 1.21 2012/02/20 22:06:18 hwoarang Exp $ + +*qxmledit-0.7.2 (20 Feb 2012) + + 20 Feb 2012; Markos Chandras <hwoarang@gentoo.org> +qxmledit-0.7.2.ebuild: + version bump 17 Feb 2012; Johannes Huber <johu@gentoo.org> -qxmledit-0.4.3-r1.ebuild: Remove old. diff --git a/app-editors/qxmledit/qxmledit-0.7.2.ebuild b/app-editors/qxmledit/qxmledit-0.7.2.ebuild new file mode 100644 index 000000000000..3da7bba2a91f --- /dev/null +++ b/app-editors/qxmledit/qxmledit-0.7.2.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/qxmledit/qxmledit-0.7.2.ebuild,v 1.1 2012/02/20 22:06:18 hwoarang Exp $ + +EAPI=4 + +inherit multilib qt4-r2 + +MY_P="qxmledit-${PV}-src" + +DESCRIPTION="Qt4 XML Editor" +HOMEPAGE="http://code.google.com/p/qxmledit/" +SRC_URI="http://${PN}.googlecode.com/files/${MY_P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +DEPEND="x11-libs/qt-core:4 + x11-libs/qt-gui:4 + x11-libs/qt-svg:4 + x11-libs/qt-xmlpatterns:4" +RDEPEND="${DEPEND}" + +DOCS="AUTHORS NEWS README TODO" +DOCSDIR="${WORKDIR}/${P}/" + +src_prepare() { + # fix doc dir + sed -i "/^INST_DOC_DIR/ s|/opt/${PN}|/usr/share/doc/${PF}|" src/QXmlEdit.pro || \ + die "failed to fix installation path" + # fix installation path + sed -i "/^INST_DIR/ s|/opt/${PN}|/usr/bin|" src/QXmlEdit.pro || \ + die "failed to fix installation path" + # fix widget library + sed -i "/^INST_DIR/ s|/opt/${PN}|/usr/$(get_libdir)|" \ + src/QXmlEditWidget.pro || die "failed to fix library installation path" + # fix translations + sed -i "/^INST_DATA_DIR/ s|/opt|/usr/share|" src/QXmlEdit{,Widget}.pro || \ + die "failed to fix translations" + qt4-r2_src_prepare +} + +src_install() { + qt4-r2_src_install + newicon src/images/icon.png ${PN}.png + make_desktop_entry QXmlEdit QXmlEdit ${PN} "Qt;Utility;TextEditor" +} |