diff options
author | Davide Pesavento <pesa@gentoo.org> | 2012-08-02 20:11:26 +0000 |
---|---|---|
committer | Davide Pesavento <pesa@gentoo.org> | 2012-08-02 20:11:26 +0000 |
commit | 92687e7d660f62c6e59a21e4fa0369a14d868f60 (patch) | |
tree | a7b714e707adee8cd7d474f939d99fed4b874697 /app-editors | |
parent | Enable verbose build (bug #429312). (diff) | |
download | gentoo-2-92687e7d660f62c6e59a21e4fa0369a14d868f60.tar.gz gentoo-2-92687e7d660f62c6e59a21e4fa0369a14d868f60.tar.bz2 gentoo-2-92687e7d660f62c6e59a21e4fa0369a14d868f60.zip |
amd64/x86 stable wrt bug 428860. Update longdescription in metadata. Remove old.
(Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/qxmledit/ChangeLog | 8 | ||||
-rw-r--r-- | app-editors/qxmledit/metadata.xml | 9 | ||||
-rw-r--r-- | app-editors/qxmledit/qxmledit-0.8.1.ebuild | 59 | ||||
-rw-r--r-- | app-editors/qxmledit/qxmledit-0.8.2.ebuild | 4 |
4 files changed, 15 insertions, 65 deletions
diff --git a/app-editors/qxmledit/ChangeLog b/app-editors/qxmledit/ChangeLog index 1fc33231f5b2..578683062d00 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.32 2012/06/09 16:17:00 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/qxmledit/ChangeLog,v 1.33 2012/08/02 20:11:26 pesa Exp $ + + 02 Aug 2012; Davide Pesavento <pesa@gentoo.org> -qxmledit-0.8.1.ebuild, + metadata.xml, qxmledit-0.8.2.ebuild: + amd64/x86 stable wrt bug 428860. Update longdescription in metadata. Remove + old. *qxmledit-0.8.2 (09 Jun 2012) @@ -128,4 +133,3 @@ 09 Jun 2009; Markos Chandras <hwoarang@gentoo.org> +qxmledit-0.3.0.ebuild, +metadata.xml: Initial commit of qxmledit application - diff --git a/app-editors/qxmledit/metadata.xml b/app-editors/qxmledit/metadata.xml index 239f089a5697..64f2a9e844c3 100644 --- a/app-editors/qxmledit/metadata.xml +++ b/app-editors/qxmledit/metadata.xml @@ -6,8 +6,13 @@ <email>hwoarang@gentoo.org</email> <name>Markos Chandras</name> </maintainer> - <longdescription lang="en">QXmlEdit is a simple XML editor written in Qt4, it is not a complete and - full featured editor.</longdescription> + <longdescription lang="en"> + QXmlEdit is a simple XML editor written in Qt4. Its main + features are unusual data visualization modes, it has some + nice XML manipulation and presentation features and it is + multi-platform. This is one of the few graphical Open Source + XSD viewer. + </longdescription> <upstream> <remote-id type="google-code">qxmledit</remote-id> </upstream> diff --git a/app-editors/qxmledit/qxmledit-0.8.1.ebuild b/app-editors/qxmledit/qxmledit-0.8.1.ebuild deleted file mode 100644 index ef2de7188f2b..000000000000 --- a/app-editors/qxmledit/qxmledit-0.8.1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# 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.8.1.ebuild,v 1.2 2012/05/25 17:07:16 ago Exp $ - -EAPI=4 - -inherit multilib eutils 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="LGPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="debug" - -DEPEND=">=x11-libs/qt-core-4.7:4 - >=x11-libs/qt-gui-4.7:4 - >=x11-libs/qt-sql-4.7:4 - >=x11-libs/qt-svg-4.7:4 - >=x11-libs/qt-xmlpatterns-4.7:4" -RDEPEND="${DEPEND}" - -DOCS="AUTHORS NEWS README ROADMAP TODO" - -src_prepare() { - # fix doc dir - sed -i "/INST_DOC_DIR = / s|/opt/${PN}|/usr/share/doc/${PF}|" \ - src/QXmlEdit{,Widget}.pro src/sessions/QXmlEditSessions.pro || \ - die "failed to fix doc installation path" - # fix binary installation path - sed -i "/INST_DIR = / s|/opt/${PN}|/usr/bin|" \ - src/QXmlEdit{,Widget}.pro src/sessions/QXmlEditSessions.pro || \ - die "failed to fix binary installation path" - # fix helper libraries installation path - sed -i "/INST_LIB_DIR = / s|/opt/${PN}|/usr/$(get_libdir)|" \ - src/QXmlEdit{,Widget}.pro \ - src/sessions/QXmlEditSessions.pro || \ - die "failed to fix library installation path" - # fix translations - sed -i "/INST_DATA_DIR = / s|/opt|/usr/share|" src/QXmlEdit{,Widget}.pro \ - src/sessions/QXmlEditSessions.pro || \ - die "failed to fix translations" - # fix include - sed -i "/INST_INCLUDE_DIR = / s|/opt|/usr/share|" src/QXmlEditWidget.pro \ - || die "failed to fix include directory" - - 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" -} diff --git a/app-editors/qxmledit/qxmledit-0.8.2.ebuild b/app-editors/qxmledit/qxmledit-0.8.2.ebuild index b9bcc656d77f..18a26e19bead 100644 --- a/app-editors/qxmledit/qxmledit-0.8.2.ebuild +++ b/app-editors/qxmledit/qxmledit-0.8.2.ebuild @@ -1,6 +1,6 @@ # 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.8.2.ebuild,v 1.1 2012/06/09 16:17:00 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/qxmledit/qxmledit-0.8.2.ebuild,v 1.2 2012/08/02 20:11:26 pesa Exp $ EAPI=4 @@ -14,7 +14,7 @@ SRC_URI="http://${PN}.googlecode.com/files/${MY_P}.tgz" LICENSE="LGPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="debug" DEPEND=">=x11-libs/qt-core-4.7:4 |