diff options
author | Don Seiler <rizzo@gentoo.org> | 2004-03-30 20:40:33 +0000 |
---|---|---|
committer | Don Seiler <rizzo@gentoo.org> | 2004-03-30 20:40:33 +0000 |
commit | 3a3cabebda6bb01183588de33c7e64805e93048d (patch) | |
tree | f3a8854e9609e54e1140752a67019a27579e4b70 /app-editors | |
parent | Version bump; fix for bug #45482 (diff) | |
download | historical-3a3cabebda6bb01183588de33c7e64805e93048d.tar.gz historical-3a3cabebda6bb01183588de33c7e64805e93048d.tar.bz2 historical-3a3cabebda6bb01183588de33c7e64805e93048d.zip |
Cosmetic changes and desktop file
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/xxe/ChangeLog | 5 | ||||
-rw-r--r-- | app-editors/xxe/Manifest | 5 | ||||
-rw-r--r-- | app-editors/xxe/files/xxe.desktop | 10 | ||||
-rw-r--r-- | app-editors/xxe/xxe-2.5_p4.ebuild | 19 |
4 files changed, 31 insertions, 8 deletions
diff --git a/app-editors/xxe/ChangeLog b/app-editors/xxe/ChangeLog index dca4e0a36500..f7790b0c8bc9 100644 --- a/app-editors/xxe/ChangeLog +++ b/app-editors/xxe/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-editors/xxe # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/xxe/ChangeLog,v 1.9 2004/03/26 10:30:32 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/xxe/ChangeLog,v 1.10 2004/03/30 20:40:33 rizzo Exp $ + + 30 Mar 2004; Don Seiler <rizzo@gentoo.org>; xxe-2.5_p4.ebuild: + Added xxe.desktop and some other cosmetic changes. Thanks to Keith Lea. 26 Mar 2004; David Holm <dholm@gentoo.org> xxe-2.5_p4.ebuild: Backed out of ~ppc while waiting for portage upgrade. diff --git a/app-editors/xxe/Manifest b/app-editors/xxe/Manifest index 76d522f3ed42..95dcb8a1e7ec 100644 --- a/app-editors/xxe/Manifest +++ b/app-editors/xxe/Manifest @@ -1,4 +1,5 @@ -MD5 6cbf3157ebfbe19ea7ab84dcccc6fdf6 ChangeLog 1566 -MD5 541dfc891f1c69480a13388db5479f43 xxe-2.5_p4.ebuild 849 +MD5 929a6db3ca19f98cce5b91c26178c764 xxe-2.5_p4.ebuild 1036 +MD5 760faf10dc0547366415bd9812c5c7c4 ChangeLog 1708 MD5 cba5f21f1e37c6fc886c08c621f8a636 metadata.xml 398 MD5 e3be91112b6b91abee45c6a63e8963f8 files/digest-xxe-2.5_p4 65 +MD5 b821128de3dfbcbf02b24d7fb13a0337 files/xxe.desktop 223 diff --git a/app-editors/xxe/files/xxe.desktop b/app-editors/xxe/files/xxe.desktop new file mode 100644 index 000000000000..70501dd81477 --- /dev/null +++ b/app-editors/xxe/files/xxe.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Encoding=UTF-8 +Version=1.0 +Type=Application +Exec=/opt/xxe/xxe +Icon=/opt/xxe/docs/help/icons/logo.gif +Name=XMLmind XML Editor +GenericName=XML Editor +Comment=XML file editor +Categories=Application;Development diff --git a/app-editors/xxe/xxe-2.5_p4.ebuild b/app-editors/xxe/xxe-2.5_p4.ebuild index 00a1eddd5811..14f810340012 100644 --- a/app-editors/xxe/xxe-2.5_p4.ebuild +++ b/app-editors/xxe/xxe-2.5_p4.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/xxe/xxe-2.5_p4.ebuild,v 1.2 2004/03/26 10:30:32 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/xxe/xxe-2.5_p4.ebuild,v 1.3 2004/03/30 20:40:33 rizzo Exp $ MY_PV="${PV/./}" MY_PV="${MY_PV/_/}" S="${WORKDIR}/${PN}-std-${MY_PV}" -DESCRIPTION="Java-based XML Editor" +DESCRIPTION="The XMLmind XML Editor" SRC_URI="http://www.xmlmind.net/xmleditor/_download/${PN}-std-${MY_PV}.tar.gz" HOMEPAGE="http://www.xmlmind.com/xmleditor/index.html" IUSE="" @@ -23,8 +23,17 @@ src_install() { dodir ${INSTALLDIR} cp -a ${S}/* ${D}/${INSTALLDIR} - #dynamic environment by T.Henderson@cs.ucl.ac.uk (Tristan Henderson) dodir /etc/env.d - echo -e "PATH=${INSTALLDIR}\nROOTPATH=${INSTALLDIR}" > \ - ${D}/etc/env.d/10xxe + echo -e "PATH=${INSTALLDIR}\nROOTPATH=${INSTALLDIR}" > ${D}/etc/env.d/10xxe + + insinto /usr/share/applications + doins ${FILESDIR}/xxe.desktop +} + +pkg_postinst() { + einfo + einfo "XXE has been installed in /opt/xxe, to include this" + einfo "in your path, run the following:" + eerror " /usr/sbin/env-update && source /etc/profile" + einfo } |